### YamlMime:ManagedReference items: - uid: TinyLife.Goals.Goal commentId: T:TinyLife.Goals.Goal id: Goal parent: TinyLife.Goals children: - TinyLife.Goals.Goal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo) - TinyLife.Goals.Goal.GetDisplayedProgress - TinyLife.Goals.Goal.GetProgress - TinyLife.Goals.Goal.Info - TinyLife.Goals.Goal.Name - TinyLife.Goals.Goal.Reset - TinyLife.Goals.Goal.Set - TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) langs: - csharp - vb name: Goal nameWithType: Goal fullName: TinyLife.Goals.Goal type: Class source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Goal path: ../TinyLife/Goals/Goal.cs startLine: 9 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nA goal is a component of a which can be completed.\nA goal has an underlying that it is constructed from.\n" example: [] syntax: content: >- [DataContract] public abstract class Goal : JsonTypeSafeGenericDataHolder, IGenericDataHolder content.vb: >- Public MustInherit Class Goal Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder inheritance: - System.Object - MLEM.Data.Json.JsonTypeSafeGenericDataHolder derivedClasses: - TinyLife.Goals.Goal`1 - TinyLife.Goals.ManualProgressGoal implements: - MLEM.Misc.IGenericDataHolder inheritedMembers: - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T}) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) - MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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.Goal.TinyLife.Utilities.Extensions.JsonCopy``1 attributes: - type: System.Runtime.Serialization.DataContractAttribute ctor: System.Runtime.Serialization.DataContractAttribute.#ctor arguments: [] modifiers.csharp: - public - abstract - class modifiers.vb: - Public - MustInherit - Class - uid: TinyLife.Goals.Goal.Name commentId: F:TinyLife.Goals.Goal.Name id: Name parent: TinyLife.Goals.Goal langs: - csharp - vb name: Name nameWithType: Goal.Name fullName: TinyLife.Goals.Goal.Name type: Field source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Name path: ../TinyLife/Goals/Goal.cs startLine: 16 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nThe name of this goal, based on the underlying \n" example: [] syntax: content: >- [DataMember] public readonly string Name return: type: System.String content.vb: >- Public ReadOnly Name As String attributes: - type: System.Runtime.Serialization.DataMemberAttribute ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor arguments: [] modifiers.csharp: - public - readonly modifiers.vb: - Public - ReadOnly - uid: TinyLife.Goals.Goal.Set commentId: P:TinyLife.Goals.Goal.Set id: Set parent: TinyLife.Goals.Goal langs: - csharp - vb name: Set nameWithType: Goal.Set fullName: TinyLife.Goals.Goal.Set type: Property source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Set path: ../TinyLife/Goals/Goal.cs startLine: 20 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nThe goal set that this goal is a part of\n" example: [] syntax: content: public GoalSet Set { get; } parameters: [] return: type: TinyLife.Goals.GoalSet content.vb: Public ReadOnly Property Set As GoalSet overload: TinyLife.Goals.Goal.Set* modifiers.csharp: - public - get modifiers.vb: - Public - ReadOnly - uid: TinyLife.Goals.Goal.Info commentId: P:TinyLife.Goals.Goal.Info id: Info parent: TinyLife.Goals.Goal langs: - csharp - vb name: Info nameWithType: Goal.Info fullName: TinyLife.Goals.Goal.Info type: Property source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Info path: ../TinyLife/Goals/Goal.cs startLine: 24 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nThe underlying goal info that this goal has been constructed from\n" example: [] syntax: content: public GoalInfo Info { get; } parameters: [] return: type: TinyLife.Goals.GoalInfo content.vb: Public ReadOnly Property Info As GoalInfo overload: TinyLife.Goals.Goal.Info* modifiers.csharp: - public - get modifiers.vb: - Public - ReadOnly - uid: TinyLife.Goals.Goal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo) commentId: M:TinyLife.Goals.Goal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo) id: '#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo)' parent: TinyLife.Goals.Goal langs: - csharp - vb name: Goal(GoalSet, GoalInfo) nameWithType: Goal.Goal(GoalSet, GoalInfo) fullName: TinyLife.Goals.Goal.Goal(TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo) type: Constructor source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/Goal.cs startLine: 31 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new goal with the given settings\n" example: [] syntax: content: protected Goal(GoalSet set, GoalInfo info) parameters: - id: set type: TinyLife.Goals.GoalSet description: The goal set that this goal is a part of - id: info type: TinyLife.Goals.GoalInfo description: The underlying goal info that this goal has been constructed from content.vb: Protected Sub New(set As GoalSet, info As GoalInfo) overload: TinyLife.Goals.Goal.#ctor* modifiers.csharp: - protected modifiers.vb: - Protected - uid: TinyLife.Goals.Goal.GetProgress commentId: M:TinyLife.Goals.Goal.GetProgress id: GetProgress parent: TinyLife.Goals.Goal langs: - csharp - vb name: GetProgress() nameWithType: Goal.GetProgress() fullName: TinyLife.Goals.Goal.GetProgress() type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetProgress path: ../TinyLife/Goals/Goal.cs startLine: 41 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nReturns the progress percentage (between 0 and 1) that this goal has\n" example: [] syntax: content: public abstract float GetProgress() return: type: System.Single description: The progress percentage content.vb: Public MustOverride Function GetProgress As Single overload: TinyLife.Goals.Goal.GetProgress* modifiers.csharp: - public - abstract modifiers.vb: - Public - MustOverride - uid: TinyLife.Goals.Goal.Reset commentId: M:TinyLife.Goals.Goal.Reset id: Reset parent: TinyLife.Goals.Goal langs: - csharp - vb name: Reset() nameWithType: Goal.Reset() fullName: TinyLife.Goals.Goal.Reset() type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reset path: ../TinyLife/Goals/Goal.cs startLine: 46 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nResets this goal to the default values, which should cause 0 to be returned on \n" example: [] syntax: content: public abstract void Reset() content.vb: Public MustOverride Sub Reset overload: TinyLife.Goals.Goal.Reset* modifiers.csharp: - public - abstract modifiers.vb: - Public - MustOverride - uid: TinyLife.Goals.Goal.GetDisplayedProgress commentId: M:TinyLife.Goals.Goal.GetDisplayedProgress id: GetDisplayedProgress parent: TinyLife.Goals.Goal langs: - csharp - vb name: GetDisplayedProgress() nameWithType: Goal.GetDisplayedProgress() fullName: TinyLife.Goals.Goal.GetDisplayedProgress() type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetDisplayedProgress path: ../TinyLife/Goals/Goal.cs startLine: 53 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nReturns a string that is used in a goal set's displayed ui information that determines the progress of this goal.\nBy default, the percentage is displayed as a percentage between 0 and 100.\n" example: [] syntax: content: public virtual string GetDisplayedProgress() return: type: System.String description: The displayed goal progress content.vb: Public Overridable Function GetDisplayedProgress As String overload: TinyLife.Goals.Goal.GetDisplayedProgress* modifiers.csharp: - public - virtual modifiers.vb: - Public - Overridable - uid: TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) commentId: M:TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) id: Validate(TinyLife.Goals.GoalSet) parent: TinyLife.Goals.Goal langs: - csharp - vb name: Validate(GoalSet) nameWithType: Goal.Validate(GoalSet) fullName: TinyLife.Goals.Goal.Validate(TinyLife.Goals.GoalSet) type: Method source: remote: path: TinyLife/Goals/Goal.cs branch: 0.29.3-dev repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Validate path: ../TinyLife/Goals/Goal.cs startLine: 62 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nValidates this goal when loading the underlying from disk\n" example: [] syntax: content: public virtual bool Validate(GoalSet set) parameters: - id: set type: TinyLife.Goals.GoalSet description: The underlying goal set return: type: System.Boolean description: Whether this goal is considered to be valid content.vb: Public Overridable Function Validate(set As GoalSet) As Boolean overload: TinyLife.Goals.Goal.Validate* modifiers.csharp: - public - virtual modifiers.vb: - Public - Overridable references: - uid: TinyLife.Goals.GoalSet commentId: T:TinyLife.Goals.GoalSet parent: TinyLife.Goals name: GoalSet nameWithType: GoalSet fullName: TinyLife.Goals.GoalSet - uid: TinyLife.Goals.GoalInfo commentId: T:TinyLife.Goals.GoalInfo parent: TinyLife.Goals name: GoalInfo nameWithType: GoalInfo fullName: TinyLife.Goals.GoalInfo - uid: TinyLife.Goals commentId: N:TinyLife.Goals name: TinyLife.Goals nameWithType: TinyLife.Goals fullName: TinyLife.Goals - uid: System.Object commentId: T:System.Object parent: System isExternal: true name: Object nameWithType: Object fullName: System.Object - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder commentId: T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder parent: MLEM.Data.Json isExternal: true name: JsonTypeSafeGenericDataHolder nameWithType: JsonTypeSafeGenericDataHolder fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder - uid: MLEM.Misc.IGenericDataHolder commentId: T:MLEM.Misc.IGenericDataHolder parent: MLEM.Misc isExternal: true name: IGenericDataHolder nameWithType: IGenericDataHolder fullName: MLEM.Misc.IGenericDataHolder - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true name: SetData(String, Object) nameWithType: JsonTypeSafeGenericDataHolder.SetData(String, Object) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String, System.Object) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) name: SetData nameWithType: JsonTypeSafeGenericDataHolder.SetData fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object) name: SetData nameWithType: JsonTypeSafeGenericDataHolder.SetData fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T}) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder definition: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData(String, T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(String, T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String, T) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(System.String, T) name.vb: SetData(Of T)(String, T) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData nameWithType: JsonTypeSafeGenericDataHolder.SetData fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData(Of T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(Of T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T) isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true name: GetData(String) nameWithType: JsonTypeSafeGenericDataHolder.GetData(String) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(System.String) nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(System.String) name.vb: GetData(Of T)(String) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) name: GetData nameWithType: JsonTypeSafeGenericDataHolder.GetData fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String) name: GetData(Of T) nameWithType: JsonTypeSafeGenericDataHolder.GetData(Of T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T) isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ) nameWithType: ) fullName: ) - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder isExternal: true name: GetDataKeys() nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys() fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys() spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys name: GetDataKeys nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys name: GetDataKeys nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true name: Equals(Object) nameWithType: Object.Equals(Object) fullName: System.Object.Equals(System.Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true name: Equals(Object, Object) nameWithType: Object.Equals(Object, Object) fullName: System.Object.Equals(System.Object, System.Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true name: GetHashCode() nameWithType: Object.GetHashCode() fullName: System.Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true name: GetType() nameWithType: Object.GetType() fullName: System.Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true name: MemberwiseClone() nameWithType: Object.MemberwiseClone() fullName: System.Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true name: ReferenceEquals(Object, Object) nameWithType: Object.ReferenceEquals(Object, Object) fullName: System.Object.ReferenceEquals(System.Object, System.Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true name: ToString() nameWithType: Object.ToString() fullName: System.Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Goals.Goal.TinyLife.Utilities.Extensions.JsonCopy``1 commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) parent: TinyLife.Utilities.Extensions definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy() nameWithType: Extensions.JsonCopy() fullName: TinyLife.Utilities.Extensions.JsonCopy() nameWithType.vb: Extensions.JsonCopy(Of Goal)() fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.Goal)() name.vb: JsonCopy(Of Goal)() spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1 name: JsonCopy nameWithType: Extensions.JsonCopy fullName: TinyLife.Utilities.Extensions.JsonCopy - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1 name: JsonCopy(Of Goal) nameWithType: Extensions.JsonCopy(Of Goal) fullName: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.Goal) - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System commentId: N:System isExternal: true name: System nameWithType: System fullName: System - uid: MLEM.Data.Json commentId: N:MLEM.Data.Json isExternal: true name: MLEM.Data.Json nameWithType: MLEM.Data.Json fullName: MLEM.Data.Json - uid: MLEM.Misc commentId: N:MLEM.Misc isExternal: true name: MLEM.Misc nameWithType: MLEM.Misc fullName: MLEM.Misc - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) isExternal: true name: SetData(String, T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(String, T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String, T) nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T) fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(System.String, T) name.vb: SetData(Of T)(String, T) spec.csharp: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData nameWithType: JsonTypeSafeGenericDataHolder.SetData fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) spec.vb: - uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0) name: SetData(Of T) nameWithType: JsonTypeSafeGenericDataHolder.SetData(Of T) fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T) isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.String name: String nameWithType: String fullName: System.String isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(T) nameWithType: Extensions.JsonCopy(T) fullName: TinyLife.Utilities.Extensions.JsonCopy(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 nameWithType: Extensions.JsonCopy fullName: TinyLife.Utilities.Extensions.JsonCopy - name: ( nameWithType: ( fullName: ( - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy(Of T) nameWithType: Extensions.JsonCopy(Of T) fullName: TinyLife.Utilities.Extensions.JsonCopy(Of T) - name: ( nameWithType: ( fullName: ( - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Utilities.Extensions commentId: T:TinyLife.Utilities.Extensions parent: TinyLife.Utilities name: Extensions nameWithType: Extensions fullName: TinyLife.Utilities.Extensions - uid: TinyLife.Utilities commentId: N:TinyLife.Utilities name: TinyLife.Utilities nameWithType: TinyLife.Utilities fullName: TinyLife.Utilities - uid: System.String commentId: T:System.String parent: System isExternal: true name: String nameWithType: String fullName: System.String - uid: TinyLife.Goals.Goal.Set* commentId: Overload:TinyLife.Goals.Goal.Set name: Set nameWithType: Goal.Set fullName: TinyLife.Goals.Goal.Set - uid: TinyLife.Goals.Goal.Info* commentId: Overload:TinyLife.Goals.Goal.Info name: Info nameWithType: Goal.Info fullName: TinyLife.Goals.Goal.Info - uid: TinyLife.Goals.Goal.#ctor* commentId: Overload:TinyLife.Goals.Goal.#ctor name: Goal nameWithType: Goal.Goal fullName: TinyLife.Goals.Goal.Goal - uid: TinyLife.Goals.Goal.GetProgress* commentId: Overload:TinyLife.Goals.Goal.GetProgress name: GetProgress nameWithType: Goal.GetProgress fullName: TinyLife.Goals.Goal.GetProgress - uid: System.Single commentId: T:System.Single parent: System isExternal: true name: Single nameWithType: Single fullName: System.Single - uid: TinyLife.Goals.Goal.GetProgress commentId: M:TinyLife.Goals.Goal.GetProgress parent: TinyLife.Goals.Goal name: GetProgress() nameWithType: Goal.GetProgress() fullName: TinyLife.Goals.Goal.GetProgress() spec.csharp: - uid: TinyLife.Goals.Goal.GetProgress name: GetProgress nameWithType: Goal.GetProgress fullName: TinyLife.Goals.Goal.GetProgress - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: TinyLife.Goals.Goal.GetProgress name: GetProgress nameWithType: Goal.GetProgress fullName: TinyLife.Goals.Goal.GetProgress - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: TinyLife.Goals.Goal.Reset* commentId: Overload:TinyLife.Goals.Goal.Reset name: Reset nameWithType: Goal.Reset fullName: TinyLife.Goals.Goal.Reset - uid: TinyLife.Goals.Goal commentId: T:TinyLife.Goals.Goal parent: TinyLife.Goals name: Goal nameWithType: Goal fullName: TinyLife.Goals.Goal - uid: TinyLife.Goals.Goal.GetDisplayedProgress* commentId: Overload:TinyLife.Goals.Goal.GetDisplayedProgress name: GetDisplayedProgress nameWithType: Goal.GetDisplayedProgress fullName: TinyLife.Goals.Goal.GetDisplayedProgress - uid: TinyLife.Goals.Goal.Validate* commentId: Overload:TinyLife.Goals.Goal.Validate name: Validate nameWithType: Goal.Validate fullName: TinyLife.Goals.Goal.Validate - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true name: Boolean nameWithType: Boolean fullName: System.Boolean