mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-01 03:10:49 +01:00
849 lines
27 KiB
YAML
Generated
849 lines
27 KiB
YAML
Generated
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: TinyLife.Goals.GoalSetInfo
|
|
commentId: T:TinyLife.Goals.GoalSetInfo
|
|
id: GoalSetInfo
|
|
parent: TinyLife.Goals
|
|
children:
|
|
- TinyLife.Goals.GoalSetInfo.#ctor(TinyLife.Goals.GoalInfo[])
|
|
- TinyLife.Goals.GoalSetInfo.Configurations
|
|
- TinyLife.Goals.GoalSetInfo.Construct
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GoalSetInfo
|
|
nameWithType: GoalSetInfo
|
|
fullName: TinyLife.Goals.GoalSetInfo
|
|
type: Class
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Goals
|
|
summary: A goal set info is the information required to construct a <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> instance
|
|
example: []
|
|
syntax:
|
|
content: 'public class GoalSetInfo : GenericDataHolder, IGenericDataHolder'
|
|
content.vb: Public Class GoalSetInfo Inherits GenericDataHolder Implements IGenericDataHolder
|
|
inheritance:
|
|
- System.Object
|
|
- MLEM.Misc.GenericDataHolder
|
|
implements:
|
|
- MLEM.Misc.IGenericDataHolder
|
|
inheritedMembers:
|
|
- MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
|
|
- MLEM.Misc.GenericDataHolder.GetData``1(System.String)
|
|
- MLEM.Misc.GenericDataHolder.GetDataKeys
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
extensionMethods:
|
|
- TinyLife.Goals.GoalSetInfo.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
- uid: TinyLife.Goals.GoalSetInfo.Configurations
|
|
commentId: F:TinyLife.Goals.GoalSetInfo.Configurations
|
|
id: Configurations
|
|
parent: TinyLife.Goals.GoalSetInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Configurations
|
|
nameWithType: GoalSetInfo.Configurations
|
|
fullName: TinyLife.Goals.GoalSetInfo.Configurations
|
|
type: Field
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Goals
|
|
summary: The <xref href="TinyLife.Goals.GoalInfo" data-throw-if-not-resolved="false"></xref> configurations that determine which <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instances will be constructed in <xref href="TinyLife.Goals.GoalSetInfo.Construct" data-throw-if-not-resolved="false"></xref>
|
|
example: []
|
|
syntax:
|
|
content: public readonly Dictionary<string, GoalInfo> Configurations
|
|
return:
|
|
type: System.Collections.Generic.Dictionary{System.String,TinyLife.Goals.GoalInfo}
|
|
content.vb: Public ReadOnly Configurations As Dictionary(Of String, GoalInfo)
|
|
- uid: TinyLife.Goals.GoalSetInfo.#ctor(TinyLife.Goals.GoalInfo[])
|
|
commentId: M:TinyLife.Goals.GoalSetInfo.#ctor(TinyLife.Goals.GoalInfo[])
|
|
id: '#ctor(TinyLife.Goals.GoalInfo[])'
|
|
parent: TinyLife.Goals.GoalSetInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: GoalSetInfo(params GoalInfo[])
|
|
nameWithType: GoalSetInfo.GoalSetInfo(params GoalInfo[])
|
|
fullName: TinyLife.Goals.GoalSetInfo.GoalSetInfo(params TinyLife.Goals.GoalInfo[])
|
|
type: Constructor
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Goals
|
|
summary: Creates a new goal set info with the given goal informations
|
|
example: []
|
|
syntax:
|
|
content: public GoalSetInfo(params GoalInfo[] configurations)
|
|
parameters:
|
|
- id: configurations
|
|
type: TinyLife.Goals.GoalInfo[]
|
|
description: The goal information
|
|
content.vb: Public Sub New(ParamArray configurations As GoalInfo())
|
|
overload: TinyLife.Goals.GoalSetInfo.#ctor*
|
|
nameWithType.vb: GoalSetInfo.New(ParamArray GoalInfo())
|
|
fullName.vb: TinyLife.Goals.GoalSetInfo.New(ParamArray TinyLife.Goals.GoalInfo())
|
|
name.vb: New(ParamArray GoalInfo())
|
|
- uid: TinyLife.Goals.GoalSetInfo.Construct
|
|
commentId: M:TinyLife.Goals.GoalSetInfo.Construct
|
|
id: Construct
|
|
parent: TinyLife.Goals.GoalSetInfo
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Construct()
|
|
nameWithType: GoalSetInfo.Construct()
|
|
fullName: TinyLife.Goals.GoalSetInfo.Construct()
|
|
type: Method
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife.Goals
|
|
summary: Constructs a new goal set from this goal set information
|
|
example: []
|
|
syntax:
|
|
content: public GoalSet Construct()
|
|
return:
|
|
type: TinyLife.Goals.GoalSet
|
|
description: The goal set
|
|
content.vb: Public Function Construct() As GoalSet
|
|
overload: TinyLife.Goals.GoalSetInfo.Construct*
|
|
references:
|
|
- uid: TinyLife.Goals.GoalSet
|
|
commentId: T:TinyLife.Goals.GoalSet
|
|
parent: TinyLife.Goals
|
|
href: TinyLife.Goals.GoalSet.html
|
|
name: GoalSet
|
|
nameWithType: GoalSet
|
|
fullName: TinyLife.Goals.GoalSet
|
|
- uid: TinyLife.Goals
|
|
commentId: N:TinyLife.Goals
|
|
href: TinyLife.html
|
|
name: TinyLife.Goals
|
|
nameWithType: TinyLife.Goals
|
|
fullName: TinyLife.Goals
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Goals
|
|
name: Goals
|
|
href: TinyLife.Goals.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Goals
|
|
name: Goals
|
|
href: TinyLife.Goals.html
|
|
- uid: System.Object
|
|
commentId: T:System.Object
|
|
parent: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
name: object
|
|
nameWithType: object
|
|
fullName: object
|
|
nameWithType.vb: Object
|
|
fullName.vb: Object
|
|
name.vb: Object
|
|
- uid: MLEM.Misc.GenericDataHolder
|
|
commentId: T:MLEM.Misc.GenericDataHolder
|
|
parent: MLEM.Misc
|
|
isExternal: true
|
|
name: GenericDataHolder
|
|
nameWithType: GenericDataHolder
|
|
fullName: MLEM.Misc.GenericDataHolder
|
|
- uid: MLEM.Misc.IGenericDataHolder
|
|
commentId: T:MLEM.Misc.IGenericDataHolder
|
|
parent: MLEM.Misc
|
|
isExternal: true
|
|
name: IGenericDataHolder
|
|
nameWithType: IGenericDataHolder
|
|
fullName: MLEM.Misc.IGenericDataHolder
|
|
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
|
|
commentId: M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
parent: MLEM.Misc.GenericDataHolder
|
|
definition: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: SetData<T>(string, T)
|
|
nameWithType: GenericDataHolder.SetData<T>(string, T)
|
|
fullName: MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
|
|
nameWithType.vb: GenericDataHolder.SetData(Of T)(String, T)
|
|
fullName.vb: MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
|
|
name.vb: SetData(Of T)(String, T)
|
|
spec.csharp:
|
|
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
name: SetData
|
|
isExternal: true
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
spec.vb:
|
|
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
name: SetData
|
|
isExternal: true
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
|
|
commentId: M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
|
|
parent: MLEM.Misc.GenericDataHolder
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: GetData<T>(string)
|
|
nameWithType: GenericDataHolder.GetData<T>(string)
|
|
fullName: MLEM.Misc.GenericDataHolder.GetData<T>(string)
|
|
nameWithType.vb: GenericDataHolder.GetData(Of T)(String)
|
|
fullName.vb: MLEM.Misc.GenericDataHolder.GetData(Of T)(String)
|
|
name.vb: GetData(Of T)(String)
|
|
spec.csharp:
|
|
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
|
|
name: GetData
|
|
isExternal: true
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
spec.vb:
|
|
- uid: MLEM.Misc.GenericDataHolder.GetData``1(System.String)
|
|
name: GetData
|
|
isExternal: true
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
|
|
commentId: M:MLEM.Misc.GenericDataHolder.GetDataKeys
|
|
parent: MLEM.Misc.GenericDataHolder
|
|
isExternal: true
|
|
name: GetDataKeys()
|
|
nameWithType: GenericDataHolder.GetDataKeys()
|
|
fullName: MLEM.Misc.GenericDataHolder.GetDataKeys()
|
|
spec.csharp:
|
|
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
|
|
name: GetDataKeys
|
|
isExternal: true
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: MLEM.Misc.GenericDataHolder.GetDataKeys
|
|
name: GetDataKeys
|
|
isExternal: true
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object)
|
|
commentId: M:System.Object.Equals(System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
name: Equals(object)
|
|
nameWithType: object.Equals(object)
|
|
fullName: object.Equals(object)
|
|
nameWithType.vb: Object.Equals(Object)
|
|
fullName.vb: Object.Equals(Object)
|
|
name.vb: Equals(Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
name: Equals(object, object)
|
|
nameWithType: object.Equals(object, object)
|
|
fullName: object.Equals(object, object)
|
|
nameWithType.vb: Object.Equals(Object, Object)
|
|
fullName.vb: Object.Equals(Object, Object)
|
|
name.vb: Equals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.GetHashCode
|
|
commentId: M:System.Object.GetHashCode
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
name: GetHashCode()
|
|
nameWithType: object.GetHashCode()
|
|
fullName: object.GetHashCode()
|
|
nameWithType.vb: Object.GetHashCode()
|
|
fullName.vb: Object.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
name: GetType()
|
|
nameWithType: object.GetType()
|
|
fullName: object.GetType()
|
|
nameWithType.vb: Object.GetType()
|
|
fullName.vb: Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.MemberwiseClone
|
|
commentId: M:System.Object.MemberwiseClone
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
name: MemberwiseClone()
|
|
nameWithType: object.MemberwiseClone()
|
|
fullName: object.MemberwiseClone()
|
|
nameWithType.vb: Object.MemberwiseClone()
|
|
fullName.vb: Object.MemberwiseClone()
|
|
spec.csharp:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
name: ReferenceEquals(object, object)
|
|
nameWithType: object.ReferenceEquals(object, object)
|
|
fullName: object.ReferenceEquals(object, object)
|
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
|
name.vb: ReferenceEquals(Object, Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
|
- name: (
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Object.ToString
|
|
commentId: M:System.Object.ToString
|
|
parent: System.Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
name: ToString()
|
|
nameWithType: object.ToString()
|
|
fullName: object.ToString()
|
|
nameWithType.vb: Object.ToString()
|
|
fullName.vb: Object.ToString()
|
|
spec.csharp:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Goals.GoalSetInfo.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
parent: TinyLife.Utilities.Extensions
|
|
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
name: JsonCopy<GoalSetInfo>(GoalSetInfo)
|
|
nameWithType: Extensions.JsonCopy<GoalSetInfo>(GoalSetInfo)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.GoalSetInfo>(TinyLife.Goals.GoalSetInfo)
|
|
nameWithType.vb: Extensions.JsonCopy(Of GoalSetInfo)(GoalSetInfo)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.GoalSetInfo)(TinyLife.Goals.GoalSetInfo)
|
|
name.vb: JsonCopy(Of GoalSetInfo)(GoalSetInfo)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.GoalSetInfo)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- uid: TinyLife.Goals.GoalSetInfo
|
|
name: GoalSetInfo
|
|
href: TinyLife.Goals.GoalSetInfo.html
|
|
- name: '>'
|
|
- name: (
|
|
- uid: TinyLife.Goals.GoalSetInfo
|
|
name: GoalSetInfo
|
|
href: TinyLife.Goals.GoalSetInfo.html
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.GoalSetInfo)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: TinyLife.Goals.GoalSetInfo
|
|
name: GoalSetInfo
|
|
href: TinyLife.Goals.GoalSetInfo.html
|
|
- name: )
|
|
- name: (
|
|
- uid: TinyLife.Goals.GoalSetInfo
|
|
name: GoalSetInfo
|
|
href: TinyLife.Goals.GoalSetInfo.html
|
|
- name: )
|
|
- uid: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: MLEM.Misc
|
|
commentId: N:MLEM.Misc
|
|
isExternal: true
|
|
name: MLEM.Misc
|
|
nameWithType: MLEM.Misc
|
|
fullName: MLEM.Misc
|
|
spec.csharp:
|
|
- uid: MLEM
|
|
name: MLEM
|
|
isExternal: true
|
|
- name: .
|
|
- uid: MLEM.Misc
|
|
name: Misc
|
|
isExternal: true
|
|
spec.vb:
|
|
- uid: MLEM
|
|
name: MLEM
|
|
isExternal: true
|
|
- name: .
|
|
- uid: MLEM.Misc
|
|
name: Misc
|
|
isExternal: true
|
|
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
commentId: M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
name: SetData<T>(string, T)
|
|
nameWithType: GenericDataHolder.SetData<T>(string, T)
|
|
fullName: MLEM.Misc.GenericDataHolder.SetData<T>(string, T)
|
|
nameWithType.vb: GenericDataHolder.SetData(Of T)(String, T)
|
|
fullName.vb: MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
|
|
name.vb: SetData(Of T)(String, T)
|
|
spec.csharp:
|
|
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
name: SetData
|
|
isExternal: true
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
spec.vb:
|
|
- uid: MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
|
|
name: SetData
|
|
isExternal: true
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
name: JsonCopy<T>(T)
|
|
nameWithType: Extensions.JsonCopy<T>(T)
|
|
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
|
|
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
|
|
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
|
|
name.vb: JsonCopy(Of T)(T)
|
|
spec.csharp:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: <
|
|
- name: T
|
|
- name: '>'
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
|
|
name: JsonCopy
|
|
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: T
|
|
- name: )
|
|
- name: (
|
|
- name: T
|
|
- name: )
|
|
- uid: TinyLife.Utilities.Extensions
|
|
commentId: T:TinyLife.Utilities.Extensions
|
|
parent: TinyLife.Utilities
|
|
href: TinyLife.Utilities.Extensions.html
|
|
name: Extensions
|
|
nameWithType: Extensions
|
|
fullName: TinyLife.Utilities.Extensions
|
|
- uid: TinyLife.Utilities
|
|
commentId: N:TinyLife.Utilities
|
|
href: TinyLife.html
|
|
name: TinyLife.Utilities
|
|
nameWithType: TinyLife.Utilities
|
|
fullName: TinyLife.Utilities
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Utilities
|
|
name: Utilities
|
|
href: TinyLife.Utilities.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Utilities
|
|
name: Utilities
|
|
href: TinyLife.Utilities.html
|
|
- uid: TinyLife.Goals.GoalInfo
|
|
commentId: T:TinyLife.Goals.GoalInfo
|
|
parent: TinyLife.Goals
|
|
href: TinyLife.Goals.GoalInfo.html
|
|
name: GoalInfo
|
|
nameWithType: GoalInfo
|
|
fullName: TinyLife.Goals.GoalInfo
|
|
- uid: TinyLife.Goals.Goal
|
|
commentId: T:TinyLife.Goals.Goal
|
|
parent: TinyLife.Goals
|
|
href: TinyLife.Goals.Goal.html
|
|
name: Goal
|
|
nameWithType: Goal
|
|
fullName: TinyLife.Goals.Goal
|
|
- uid: TinyLife.Goals.GoalSetInfo.Construct
|
|
commentId: M:TinyLife.Goals.GoalSetInfo.Construct
|
|
href: TinyLife.Goals.GoalSetInfo.html#TinyLife_Goals_GoalSetInfo_Construct
|
|
name: Construct()
|
|
nameWithType: GoalSetInfo.Construct()
|
|
fullName: TinyLife.Goals.GoalSetInfo.Construct()
|
|
spec.csharp:
|
|
- uid: TinyLife.Goals.GoalSetInfo.Construct
|
|
name: Construct
|
|
href: TinyLife.Goals.GoalSetInfo.html#TinyLife_Goals_GoalSetInfo_Construct
|
|
- name: (
|
|
- name: )
|
|
spec.vb:
|
|
- uid: TinyLife.Goals.GoalSetInfo.Construct
|
|
name: Construct
|
|
href: TinyLife.Goals.GoalSetInfo.html#TinyLife_Goals_GoalSetInfo_Construct
|
|
- name: (
|
|
- name: )
|
|
- uid: System.Collections.Generic.Dictionary{System.String,TinyLife.Goals.GoalInfo}
|
|
commentId: T:System.Collections.Generic.Dictionary{System.String,TinyLife.Goals.GoalInfo}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.Dictionary`2
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
name: Dictionary<string, GoalInfo>
|
|
nameWithType: Dictionary<string, GoalInfo>
|
|
fullName: System.Collections.Generic.Dictionary<string, TinyLife.Goals.GoalInfo>
|
|
nameWithType.vb: Dictionary(Of String, GoalInfo)
|
|
fullName.vb: System.Collections.Generic.Dictionary(Of String, TinyLife.Goals.GoalInfo)
|
|
name.vb: Dictionary(Of String, GoalInfo)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: <
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: TinyLife.Goals.GoalInfo
|
|
name: GoalInfo
|
|
href: TinyLife.Goals.GoalInfo.html
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: TinyLife.Goals.GoalInfo
|
|
name: GoalInfo
|
|
href: TinyLife.Goals.GoalInfo.html
|
|
- name: )
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
commentId: T:System.Collections.Generic.Dictionary`2
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
name: Dictionary<TKey, TValue>
|
|
nameWithType: Dictionary<TKey, TValue>
|
|
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
|
|
nameWithType.vb: Dictionary(Of TKey, TValue)
|
|
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
|
|
name.vb: Dictionary(Of TKey, TValue)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: <
|
|
- name: TKey
|
|
- name: ','
|
|
- name: " "
|
|
- name: TValue
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TKey
|
|
- name: ','
|
|
- name: " "
|
|
- name: TValue
|
|
- name: )
|
|
- uid: System.Collections.Generic
|
|
commentId: N:System.Collections.Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Collections.Generic
|
|
nameWithType: System.Collections.Generic
|
|
fullName: System.Collections.Generic
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
- uid: TinyLife.Goals.GoalSetInfo.#ctor*
|
|
commentId: Overload:TinyLife.Goals.GoalSetInfo.#ctor
|
|
href: TinyLife.Goals.GoalSetInfo.html#TinyLife_Goals_GoalSetInfo__ctor_TinyLife_Goals_GoalInfo___
|
|
name: GoalSetInfo
|
|
nameWithType: GoalSetInfo.GoalSetInfo
|
|
fullName: TinyLife.Goals.GoalSetInfo.GoalSetInfo
|
|
nameWithType.vb: GoalSetInfo.New
|
|
fullName.vb: TinyLife.Goals.GoalSetInfo.New
|
|
name.vb: New
|
|
- uid: TinyLife.Goals.GoalInfo[]
|
|
isExternal: true
|
|
href: TinyLife.Goals.GoalInfo.html
|
|
name: GoalInfo[]
|
|
nameWithType: GoalInfo[]
|
|
fullName: TinyLife.Goals.GoalInfo[]
|
|
nameWithType.vb: GoalInfo()
|
|
fullName.vb: TinyLife.Goals.GoalInfo()
|
|
name.vb: GoalInfo()
|
|
spec.csharp:
|
|
- uid: TinyLife.Goals.GoalInfo
|
|
name: GoalInfo
|
|
href: TinyLife.Goals.GoalInfo.html
|
|
- name: '['
|
|
- name: ']'
|
|
spec.vb:
|
|
- uid: TinyLife.Goals.GoalInfo
|
|
name: GoalInfo
|
|
href: TinyLife.Goals.GoalInfo.html
|
|
- name: (
|
|
- name: )
|
|
- uid: TinyLife.Goals.GoalSetInfo.Construct*
|
|
commentId: Overload:TinyLife.Goals.GoalSetInfo.Construct
|
|
href: TinyLife.Goals.GoalSetInfo.html#TinyLife_Goals_GoalSetInfo_Construct
|
|
name: Construct
|
|
nameWithType: GoalSetInfo.Construct
|
|
fullName: TinyLife.Goals.GoalSetInfo.Construct
|