### YamlMime:ManagedReference items: - uid: TinyLife.Goals.AutoGoalInfo commentId: T:TinyLife.Goals.AutoGoalInfo id: AutoGoalInfo parent: TinyLife.Goals children: - TinyLife.Goals.AutoGoalInfo.#ctor(System.String,TinyLife.Goals.GoalTrigger[],System.Func{System.Object,System.Boolean},System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal}) - TinyLife.Goals.AutoGoalInfo.Amount``1(System.String,System.Single,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) - TinyLife.Goals.AutoGoalInfo.Condition - TinyLife.Goals.AutoGoalInfo.Conditioned``1(System.String,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) - TinyLife.Goals.AutoGoalInfo.Distinct``1(System.String,System.Collections.Generic.IEnumerable{System.String},System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) - TinyLife.Goals.AutoGoalInfo.Distinct``1(System.String,System.Int32,System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) - TinyLife.Goals.AutoGoalInfo.Timed``1(System.String,System.TimeSpan,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) - TinyLife.Goals.AutoGoalInfo.Triggers langs: - csharp - vb name: AutoGoalInfo nameWithType: AutoGoalInfo fullName: TinyLife.Goals.AutoGoalInfo type: Class source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: AutoGoalInfo path: ../TinyLife/Goals/GoalInfo.cs startLine: 45 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nA for an auto-triggered goal, specifically a , or .\nTo construct a new auto goal info, use the provided static methods in this class.\n" example: [] syntax: content: 'public class AutoGoalInfo : GoalInfo, IGenericDataHolder' content.vb: Public Class AutoGoalInfo Inherits GoalInfo Implements IGenericDataHolder inheritance: - System.Object - MLEM.Misc.GenericDataHolder - TinyLife.Goals.GoalInfo implements: - MLEM.Misc.IGenericDataHolder inheritedMembers: - TinyLife.Goals.GoalInfo.Name - TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet) - MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object) - 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.AutoGoalInfo.TinyLife.Utilities.Extensions.JsonCopy``1 - uid: TinyLife.Goals.AutoGoalInfo.Triggers commentId: F:TinyLife.Goals.AutoGoalInfo.Triggers id: Triggers parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Triggers nameWithType: AutoGoalInfo.Triggers fullName: TinyLife.Goals.AutoGoalInfo.Triggers type: Field source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Triggers path: ../TinyLife/Goals/GoalInfo.cs startLine: 51 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nA set of instances that trigger this auto goal.\nThis value is used in .\n" example: [] syntax: content: public readonly GoalTrigger[] Triggers return: type: TinyLife.Goals.GoalTrigger[] content.vb: Public ReadOnly Triggers As GoalTrigger() - uid: TinyLife.Goals.AutoGoalInfo.Condition commentId: F:TinyLife.Goals.AutoGoalInfo.Condition id: Condition parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Condition nameWithType: AutoGoalInfo.Condition fullName: TinyLife.Goals.AutoGoalInfo.Condition type: Field source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Condition path: ../TinyLife/Goals/GoalInfo.cs startLine: 56 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nA condition, which takes in an object and returns whether this auto goal can be triggered.\nThis value is used in .\n" example: [] syntax: content: public readonly Func Condition return: type: System.Func{System.Object,System.Boolean} content.vb: Public ReadOnly Condition As Func(Of Object, Boolean) - uid: TinyLife.Goals.AutoGoalInfo.#ctor(System.String,TinyLife.Goals.GoalTrigger[],System.Func{System.Object,System.Boolean},System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal}) commentId: M:TinyLife.Goals.AutoGoalInfo.#ctor(System.String,TinyLife.Goals.GoalTrigger[],System.Func{System.Object,System.Boolean},System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal}) id: '#ctor(System.String,TinyLife.Goals.GoalTrigger[],System.Func{System.Object,System.Boolean},System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal})' parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: AutoGoalInfo(string, GoalTrigger[], Func, Func) nameWithType: AutoGoalInfo.AutoGoalInfo(string, GoalTrigger[], Func, Func) fullName: TinyLife.Goals.AutoGoalInfo.AutoGoalInfo(string, TinyLife.Goals.GoalTrigger[], System.Func, System.Func) type: Constructor source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: .ctor path: ../TinyLife/Goals/GoalInfo.cs startLine: 71 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new auto goal info with the given settings.\nTo create a new auto goal info of an API-provided type, use any of the static methods in this class.\n" example: [] syntax: content: protected AutoGoalInfo(string name, GoalTrigger[] triggers, Func condition, Func constructor) parameters: - id: name type: System.String description: The name of the goal - id: triggers type: TinyLife.Goals.GoalTrigger[] description: A set of instances which represents the triggers that this goal should react to - id: condition type: System.Func{System.Object,System.Boolean} description: A condition that determines whether the goal should be triggered or advanced - id: constructor type: System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal} description: The function that should be called to construct a goal instance content.vb: Protected Sub New(name As String, triggers As GoalTrigger(), condition As Func(Of Object, Boolean), constructor As Func(Of GoalSet, AutoGoalInfo, Goal)) overload: TinyLife.Goals.AutoGoalInfo.#ctor* nameWithType.vb: AutoGoalInfo.New(String, GoalTrigger(), Func(Of Object, Boolean), Func(Of GoalSet, AutoGoalInfo, Goal)) fullName.vb: TinyLife.Goals.AutoGoalInfo.New(String, TinyLife.Goals.GoalTrigger(), System.Func(Of Object, Boolean), System.Func(Of TinyLife.Goals.GoalSet, TinyLife.Goals.AutoGoalInfo, TinyLife.Goals.Goal)) name.vb: New(String, GoalTrigger(), Func(Of Object, Boolean), Func(Of GoalSet, AutoGoalInfo, Goal)) - uid: TinyLife.Goals.AutoGoalInfo.Timed``1(System.String,System.TimeSpan,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) commentId: M:TinyLife.Goals.AutoGoalInfo.Timed``1(System.String,System.TimeSpan,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) id: Timed``1(System.String,System.TimeSpan,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Timed(string, TimeSpan, Func, params GoalTrigger[]) nameWithType: AutoGoalInfo.Timed(string, TimeSpan, Func, params GoalTrigger[]) fullName: TinyLife.Goals.AutoGoalInfo.Timed(string, System.TimeSpan, System.Func, params TinyLife.Goals.GoalTrigger[]) type: Method source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Timed path: ../TinyLife/Goals/GoalInfo.cs startLine: 89 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new timed auto goal info which will construct a \nCheck documentation to see if the given triggers are compatible with the type parameter T and this type of goal.\n" example: [] syntax: content: public static AutoGoalInfo Timed(string name, TimeSpan goalTime, Func condition = null, params GoalTrigger[] triggers) parameters: - id: name type: System.String description: The name of the goal - id: goalTime type: System.TimeSpan description: The total time until this goal is considered completed - id: condition type: System.Func{{T},System.Boolean} description: A condition that determines whether the goal should be triggered or advanced - id: triggers type: TinyLife.Goals.GoalTrigger[] description: A set of instances which represents the triggers that this goal should react to typeParameters: - id: T description: The type of object that this goal is related to. See the documentation for the chosen triggers for compatibility between goal objects and goal triggers return: type: TinyLife.Goals.AutoGoalInfo description: An auto goal info with the given settings content.vb: Public Shared Function Timed(Of T)(name As String, goalTime As TimeSpan, condition As Func(Of T, Boolean) = Nothing, ParamArray triggers As GoalTrigger()) As AutoGoalInfo overload: TinyLife.Goals.AutoGoalInfo.Timed* nameWithType.vb: AutoGoalInfo.Timed(Of T)(String, TimeSpan, Func(Of T, Boolean), ParamArray GoalTrigger()) fullName.vb: TinyLife.Goals.AutoGoalInfo.Timed(Of T)(String, System.TimeSpan, System.Func(Of T, Boolean), ParamArray TinyLife.Goals.GoalTrigger()) name.vb: Timed(Of T)(String, TimeSpan, Func(Of T, Boolean), ParamArray GoalTrigger()) - uid: TinyLife.Goals.AutoGoalInfo.Amount``1(System.String,System.Single,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) commentId: M:TinyLife.Goals.AutoGoalInfo.Amount``1(System.String,System.Single,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) id: Amount``1(System.String,System.Single,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Amount(string, float, Func, params GoalTrigger[]) nameWithType: AutoGoalInfo.Amount(string, float, Func, params GoalTrigger[]) fullName: TinyLife.Goals.AutoGoalInfo.Amount(string, float, System.Func, params TinyLife.Goals.GoalTrigger[]) type: Method source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Amount path: ../TinyLife/Goals/GoalInfo.cs startLine: 104 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new amount-based auto goal info which will construct an \nCheck documentation to see if the given triggers are compatible with the type parameter T and this type of goal.\n" example: [] syntax: content: public static AutoGoalInfo Amount(string name, float goalAmount, Func condition = null, params GoalTrigger[] triggers) parameters: - id: name type: System.String description: The name of the goal - id: goalAmount type: System.Single description: The total amount that needs to be reached until this goal is completed - id: condition type: System.Func{{T},System.Boolean} description: A condition that determines whether the goal should be triggered or advanced - id: triggers type: TinyLife.Goals.GoalTrigger[] description: A set of instances which represents the triggers that this goal should react to typeParameters: - id: T description: The type of object that this goal is related to. See the documentation for the chosen triggers for compatibility between goal objects and goal triggers return: type: TinyLife.Goals.AutoGoalInfo description: An auto goal info with the given settings content.vb: Public Shared Function Amount(Of T)(name As String, goalAmount As Single, condition As Func(Of T, Boolean) = Nothing, ParamArray triggers As GoalTrigger()) As AutoGoalInfo overload: TinyLife.Goals.AutoGoalInfo.Amount* nameWithType.vb: AutoGoalInfo.Amount(Of T)(String, Single, Func(Of T, Boolean), ParamArray GoalTrigger()) fullName.vb: TinyLife.Goals.AutoGoalInfo.Amount(Of T)(String, Single, System.Func(Of T, Boolean), ParamArray TinyLife.Goals.GoalTrigger()) name.vb: Amount(Of T)(String, Single, Func(Of T, Boolean), ParamArray GoalTrigger()) - uid: TinyLife.Goals.AutoGoalInfo.Distinct``1(System.String,System.Int32,System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) commentId: M:TinyLife.Goals.AutoGoalInfo.Distinct``1(System.String,System.Int32,System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) id: Distinct``1(System.String,System.Int32,System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Distinct(string, int, Func, Func, params GoalTrigger[]) nameWithType: AutoGoalInfo.Distinct(string, int, Func, Func, params GoalTrigger[]) fullName: TinyLife.Goals.AutoGoalInfo.Distinct(string, int, System.Func, System.Func, params TinyLife.Goals.GoalTrigger[]) type: Method source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Distinct path: ../TinyLife/Goals/GoalInfo.cs startLine: 121 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new auto goal info which will construct a .\nThis method creates a distinct goal that requires a set of distinctly named objects and that is completed when the goalItemAmount is reached.\nCheck documentation to see if the given triggers are compatible with the type parameter T and this type of goal.\n" example: [] syntax: content: public static AutoGoalInfo Distinct(string name, int goalItemAmount, Func goalItemNameSelector, Func condition = null, params GoalTrigger[] triggers) parameters: - id: name type: System.String description: The name of the goal - id: goalItemAmount type: System.Int32 description: The amount of distinct items that need to be triggered for this goal to be completed - id: goalItemNameSelector type: System.Func{{T},System.String} description: A function that determines the distinct name of an object that this goal has been triggered for - id: condition type: System.Func{{T},System.Boolean} description: A condition that determines whether the goal should be triggered or advanced - id: triggers type: TinyLife.Goals.GoalTrigger[] description: A set of instances which represents the triggers that this goal should react to typeParameters: - id: T description: The type of object that this goal is related to. See the documentation for the chosen triggers for compatibility between goal objects and goal triggers return: type: TinyLife.Goals.AutoGoalInfo description: An auto goal info with the given settings content.vb: Public Shared Function Distinct(Of T)(name As String, goalItemAmount As Integer, goalItemNameSelector As Func(Of T, String), condition As Func(Of T, Boolean) = Nothing, ParamArray triggers As GoalTrigger()) As AutoGoalInfo overload: TinyLife.Goals.AutoGoalInfo.Distinct* nameWithType.vb: AutoGoalInfo.Distinct(Of T)(String, Integer, Func(Of T, String), Func(Of T, Boolean), ParamArray GoalTrigger()) fullName.vb: TinyLife.Goals.AutoGoalInfo.Distinct(Of T)(String, Integer, System.Func(Of T, String), System.Func(Of T, Boolean), ParamArray TinyLife.Goals.GoalTrigger()) name.vb: Distinct(Of T)(String, Integer, Func(Of T, String), Func(Of T, Boolean), ParamArray GoalTrigger()) - uid: TinyLife.Goals.AutoGoalInfo.Distinct``1(System.String,System.Collections.Generic.IEnumerable{System.String},System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) commentId: M:TinyLife.Goals.AutoGoalInfo.Distinct``1(System.String,System.Collections.Generic.IEnumerable{System.String},System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) id: Distinct``1(System.String,System.Collections.Generic.IEnumerable{System.String},System.Func{``0,System.String},System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Distinct(string, IEnumerable, Func, Func, params GoalTrigger[]) nameWithType: AutoGoalInfo.Distinct(string, IEnumerable, Func, Func, params GoalTrigger[]) fullName: TinyLife.Goals.AutoGoalInfo.Distinct(string, System.Collections.Generic.IEnumerable, System.Func, System.Func, params TinyLife.Goals.GoalTrigger[]) type: Method source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Distinct path: ../TinyLife/Goals/GoalInfo.cs startLine: 141 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new auto goal info which will construct a .\nThis method creates a distinct goal that requires a set of distinctly named objects and that is completed when the set of objects matches the goalItems exactly.\nCheck documentation to see if the given triggers are compatible with the type parameter T and this type of goal.\n" example: [] syntax: content: public static AutoGoalInfo Distinct(string name, IEnumerable goalItems, Func goalItemNameSelector, Func condition = null, params GoalTrigger[] triggers) parameters: - id: name type: System.String description: The name of the goal - id: goalItems type: System.Collections.Generic.IEnumerable{System.String} description: A set of items that this goal has to be triggered for for the goal to be completed - id: goalItemNameSelector type: System.Func{{T},System.String} description: A function that determines the distinct name of an object that this goal has been triggered for - id: condition type: System.Func{{T},System.Boolean} description: A condition that determines whether the goal should be triggered or advanced - id: triggers type: TinyLife.Goals.GoalTrigger[] description: A set of instances which represents the triggers that this goal should react to typeParameters: - id: T description: The type of object that this goal is related to. See the documentation for the chosen triggers for compatibility between goal objects and goal triggers return: type: TinyLife.Goals.AutoGoalInfo description: An auto goal info with the given settings content.vb: Public Shared Function Distinct(Of T)(name As String, goalItems As IEnumerable(Of String), goalItemNameSelector As Func(Of T, String), condition As Func(Of T, Boolean) = Nothing, ParamArray triggers As GoalTrigger()) As AutoGoalInfo overload: TinyLife.Goals.AutoGoalInfo.Distinct* nameWithType.vb: AutoGoalInfo.Distinct(Of T)(String, IEnumerable(Of String), Func(Of T, String), Func(Of T, Boolean), ParamArray GoalTrigger()) fullName.vb: TinyLife.Goals.AutoGoalInfo.Distinct(Of T)(String, System.Collections.Generic.IEnumerable(Of String), System.Func(Of T, String), System.Func(Of T, Boolean), ParamArray TinyLife.Goals.GoalTrigger()) name.vb: Distinct(Of T)(String, IEnumerable(Of String), Func(Of T, String), Func(Of T, Boolean), ParamArray GoalTrigger()) - uid: TinyLife.Goals.AutoGoalInfo.Conditioned``1(System.String,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) commentId: M:TinyLife.Goals.AutoGoalInfo.Conditioned``1(System.String,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) id: Conditioned``1(System.String,System.Func{``0,System.Boolean},TinyLife.Goals.GoalTrigger[]) parent: TinyLife.Goals.AutoGoalInfo langs: - csharp - vb name: Conditioned(string, Func, params GoalTrigger[]) nameWithType: AutoGoalInfo.Conditioned(string, Func, params GoalTrigger[]) fullName: TinyLife.Goals.AutoGoalInfo.Conditioned(string, System.Func, params TinyLife.Goals.GoalTrigger[]) type: Method source: remote: path: TinyLife/Goals/GoalInfo.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Conditioned path: ../TinyLife/Goals/GoalInfo.cs startLine: 158 assemblies: - Tiny Life namespace: TinyLife.Goals summary: "\nCreates a new auto goal info which will construct a .\nCheck documentation to see if the given triggers are compatible with the type parameter T and this type of goal.\n" example: [] syntax: content: public static AutoGoalInfo Conditioned(string name, Func condition = null, params GoalTrigger[] triggers) parameters: - id: name type: System.String description: The name of the goal - id: condition type: System.Func{{T},System.Boolean} description: A condition that determines whether the goal should be triggered or advanced - id: triggers type: TinyLife.Goals.GoalTrigger[] description: A set of instances which represents the triggers that this goal should react to typeParameters: - id: T description: The type of object that this goal is related to. See the documentation for the chosen triggers for compatibility between goal objects and goal triggers return: type: TinyLife.Goals.AutoGoalInfo description: An auto goal info with the given settings content.vb: Public Shared Function Conditioned(Of T)(name As String, condition As Func(Of T, Boolean) = Nothing, ParamArray triggers As GoalTrigger()) As AutoGoalInfo overload: TinyLife.Goals.AutoGoalInfo.Conditioned* nameWithType.vb: AutoGoalInfo.Conditioned(Of T)(String, Func(Of T, Boolean), ParamArray GoalTrigger()) fullName.vb: TinyLife.Goals.AutoGoalInfo.Conditioned(Of T)(String, System.Func(Of T, Boolean), ParamArray TinyLife.Goals.GoalTrigger()) name.vb: Conditioned(Of T)(String, Func(Of T, Boolean), ParamArray GoalTrigger()) references: - uid: TinyLife.Goals.GoalInfo commentId: T:TinyLife.Goals.GoalInfo parent: TinyLife.Goals name: GoalInfo nameWithType: GoalInfo fullName: TinyLife.Goals.GoalInfo - uid: TinyLife.Goals.AmountGoal commentId: T:TinyLife.Goals.AmountGoal name: AmountGoal nameWithType: AmountGoal fullName: TinyLife.Goals.AmountGoal - uid: TinyLife.Goals.ConditionedGoal commentId: T:TinyLife.Goals.ConditionedGoal name: ConditionedGoal nameWithType: ConditionedGoal fullName: TinyLife.Goals.ConditionedGoal - uid: TinyLife.Goals.DistinctGoal commentId: T:TinyLife.Goals.DistinctGoal name: DistinctGoal nameWithType: DistinctGoal fullName: TinyLife.Goals.DistinctGoal - uid: TinyLife.Goals commentId: N:TinyLife.Goals name: TinyLife.Goals nameWithType: TinyLife.Goals fullName: TinyLife.Goals spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Goals name: Goals spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Goals name: Goals - 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: TinyLife.Goals.GoalInfo.Name commentId: F:TinyLife.Goals.GoalInfo.Name parent: TinyLife.Goals.GoalInfo name: Name nameWithType: GoalInfo.Name fullName: TinyLife.Goals.GoalInfo.Name - uid: TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet) commentId: M:TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet) parent: TinyLife.Goals.GoalInfo name: Construct(GoalSet) nameWithType: GoalInfo.Construct(GoalSet) fullName: TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet) spec.csharp: - uid: TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet) name: Construct - name: ( - uid: TinyLife.Goals.GoalSet name: GoalSet - name: ) spec.vb: - uid: TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet) name: Construct - name: ( - uid: TinyLife.Goals.GoalSet name: GoalSet - name: ) - uid: MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object) commentId: M:MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object) parent: MLEM.Misc.GenericDataHolder isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: SetData(string, object) nameWithType: GenericDataHolder.SetData(string, object) fullName: MLEM.Misc.GenericDataHolder.SetData(string, object) nameWithType.vb: GenericDataHolder.SetData(String, Object) fullName.vb: MLEM.Misc.GenericDataHolder.SetData(String, Object) name.vb: SetData(String, Object) spec.csharp: - uid: MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object) name: SetData isExternal: true - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object) name: SetData isExternal: true - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - 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(string, T) nameWithType: GenericDataHolder.SetData(string, T) fullName: MLEM.Misc.GenericDataHolder.SetData(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(string) nameWithType: GenericDataHolder.GetData(string) fullName: MLEM.Misc.GenericDataHolder.GetData(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.AutoGoalInfo.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(AutoGoalInfo) nameWithType: Extensions.JsonCopy(AutoGoalInfo) fullName: TinyLife.Utilities.Extensions.JsonCopy(TinyLife.Goals.AutoGoalInfo) nameWithType.vb: Extensions.JsonCopy(Of AutoGoalInfo)(AutoGoalInfo) fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.AutoGoalInfo)(TinyLife.Goals.AutoGoalInfo) name.vb: JsonCopy(Of AutoGoalInfo)(AutoGoalInfo) spec.csharp: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.AutoGoalInfo) name: JsonCopy - name: < - uid: TinyLife.Goals.AutoGoalInfo name: AutoGoalInfo - name: '>' - name: ( - uid: TinyLife.Goals.AutoGoalInfo name: AutoGoalInfo - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.AutoGoalInfo) name: JsonCopy - name: ( - name: Of - name: " " - uid: TinyLife.Goals.AutoGoalInfo name: AutoGoalInfo - name: ) - name: ( - uid: TinyLife.Goals.AutoGoalInfo name: AutoGoalInfo - 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(string, T) nameWithType: GenericDataHolder.SetData(string, T) fullName: MLEM.Misc.GenericDataHolder.SetData(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) 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 - name: < - name: T - name: '>' - name: ( - name: T - name: ) spec.vb: - uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0) name: JsonCopy - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - name: T - name: ) - 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 spec.csharp: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities spec.vb: - uid: TinyLife name: TinyLife - name: . - uid: TinyLife.Utilities name: Utilities - uid: TinyLife.Goals.GoalTrigger commentId: T:TinyLife.Goals.GoalTrigger parent: TinyLife.Goals name: GoalTrigger nameWithType: GoalTrigger fullName: TinyLife.Goals.GoalTrigger - uid: TinyLife.Goals.IGoalTriggerable.Trigger(TinyLife.Goals.IGoalTriggerable,System.Object,TinyLife.Goals.GoalTrigger,System.Object[]) commentId: M:TinyLife.Goals.IGoalTriggerable.Trigger(TinyLife.Goals.IGoalTriggerable,System.Object,TinyLife.Goals.GoalTrigger,System.Object[]) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: Trigger(IGoalTriggerable, object, GoalTrigger, params object[]) nameWithType: IGoalTriggerable.Trigger(IGoalTriggerable, object, GoalTrigger, params object[]) fullName: TinyLife.Goals.IGoalTriggerable.Trigger(TinyLife.Goals.IGoalTriggerable, object, TinyLife.Goals.GoalTrigger, params object[]) nameWithType.vb: IGoalTriggerable.Trigger(IGoalTriggerable, Object, GoalTrigger, ParamArray Object()) fullName.vb: TinyLife.Goals.IGoalTriggerable.Trigger(TinyLife.Goals.IGoalTriggerable, Object, TinyLife.Goals.GoalTrigger, ParamArray Object()) name.vb: Trigger(IGoalTriggerable, Object, GoalTrigger, ParamArray Object()) spec.csharp: - uid: TinyLife.Goals.IGoalTriggerable.Trigger(TinyLife.Goals.IGoalTriggerable,System.Object,TinyLife.Goals.GoalTrigger,System.Object[]) name: Trigger - name: ( - uid: TinyLife.Goals.IGoalTriggerable name: IGoalTriggerable - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: TinyLife.Goals.GoalTrigger name: GoalTrigger - name: ',' - name: " " - name: params - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: '[' - name: ']' - name: ) spec.vb: - uid: TinyLife.Goals.IGoalTriggerable.Trigger(TinyLife.Goals.IGoalTriggerable,System.Object,TinyLife.Goals.GoalTrigger,System.Object[]) name: Trigger - name: ( - uid: TinyLife.Goals.IGoalTriggerable name: IGoalTriggerable - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: TinyLife.Goals.GoalTrigger name: GoalTrigger - name: ',' - name: " " - name: ParamArray - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ( - name: ) - name: ) - uid: TinyLife.Goals.GoalTrigger[] isExternal: true name: GoalTrigger[] nameWithType: GoalTrigger[] fullName: TinyLife.Goals.GoalTrigger[] nameWithType.vb: GoalTrigger() fullName.vb: TinyLife.Goals.GoalTrigger() name.vb: GoalTrigger() spec.csharp: - uid: TinyLife.Goals.GoalTrigger name: GoalTrigger - name: '[' - name: ']' spec.vb: - uid: TinyLife.Goals.GoalTrigger name: GoalTrigger - name: ( - name: ) - uid: System.Func{System.Object,System.Boolean} commentId: T:System.Func{System.Object,System.Boolean} parent: System definition: System.Func`2 href: https://learn.microsoft.com/dotnet/api/system.func-2 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of Object, Boolean) fullName.vb: System.Func(Of Object, Boolean) name.vb: Func(Of Object, Boolean) spec.csharp: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: < - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: '>' spec.vb: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: ( - name: Of - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: System.Func`2 commentId: T:System.Func`2 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of T, TResult) fullName.vb: System.Func(Of T, TResult) name.vb: Func(Of T, TResult) spec.csharp: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: < - name: T - name: ',' - name: " " - name: TResult - name: '>' spec.vb: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: ( - name: Of - name: " " - name: T - name: ',' - name: " " - name: TResult - name: ) - uid: TinyLife.Goals.AutoGoalInfo.#ctor* commentId: Overload:TinyLife.Goals.AutoGoalInfo.#ctor name: AutoGoalInfo nameWithType: AutoGoalInfo.AutoGoalInfo fullName: TinyLife.Goals.AutoGoalInfo.AutoGoalInfo nameWithType.vb: AutoGoalInfo.New fullName.vb: TinyLife.Goals.AutoGoalInfo.New name.vb: New - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal} commentId: T:System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo,TinyLife.Goals.Goal} parent: System definition: System.Func`3 href: https://learn.microsoft.com/dotnet/api/system.func-3 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of GoalSet, AutoGoalInfo, Goal) fullName.vb: System.Func(Of TinyLife.Goals.GoalSet, TinyLife.Goals.AutoGoalInfo, TinyLife.Goals.Goal) name.vb: Func(Of GoalSet, AutoGoalInfo, Goal) spec.csharp: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: < - uid: TinyLife.Goals.GoalSet name: GoalSet - name: ',' - name: " " - uid: TinyLife.Goals.AutoGoalInfo name: AutoGoalInfo - name: ',' - name: " " - uid: TinyLife.Goals.Goal name: Goal - name: '>' spec.vb: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: ( - name: Of - name: " " - uid: TinyLife.Goals.GoalSet name: GoalSet - name: ',' - name: " " - uid: TinyLife.Goals.AutoGoalInfo name: AutoGoalInfo - name: ',' - name: " " - uid: TinyLife.Goals.Goal name: Goal - name: ) - uid: System.Func`3 commentId: T:System.Func`3 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of T1, T2, TResult) fullName.vb: System.Func(Of T1, T2, TResult) name.vb: Func(Of T1, T2, TResult) spec.csharp: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: < - name: T1 - name: ',' - name: " " - name: T2 - name: ',' - name: " " - name: TResult - name: '>' spec.vb: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: ( - name: Of - name: " " - name: T1 - name: ',' - name: " " - name: T2 - name: ',' - name: " " - name: TResult - name: ) - uid: TinyLife.Goals.TimedGoal commentId: T:TinyLife.Goals.TimedGoal name: TimedGoal nameWithType: TimedGoal fullName: TinyLife.Goals.TimedGoal - uid: TinyLife.Goals.AutoGoalInfo.Timed* commentId: Overload:TinyLife.Goals.AutoGoalInfo.Timed name: Timed nameWithType: AutoGoalInfo.Timed fullName: TinyLife.Goals.AutoGoalInfo.Timed - uid: System.TimeSpan commentId: T:System.TimeSpan parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timespan name: TimeSpan nameWithType: TimeSpan fullName: System.TimeSpan - uid: System.Func{{T},System.Boolean} commentId: T:System.Func{``0,System.Boolean} parent: System definition: System.Func`2 href: https://learn.microsoft.com/dotnet/api/system.func-2 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of T, Boolean) fullName.vb: System.Func(Of T, Boolean) name.vb: Func(Of T, Boolean) spec.csharp: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: < - name: T - name: ',' - name: " " - uid: System.Boolean name: bool isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: '>' spec.vb: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - name: ( - name: Of - name: " " - name: T - name: ',' - name: " " - uid: System.Boolean name: Boolean isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean - name: ) - uid: TinyLife.Goals.AutoGoalInfo commentId: T:TinyLife.Goals.AutoGoalInfo parent: TinyLife.Goals name: AutoGoalInfo nameWithType: AutoGoalInfo fullName: TinyLife.Goals.AutoGoalInfo - uid: TinyLife.Goals.AutoGoalInfo.Amount* commentId: Overload:TinyLife.Goals.AutoGoalInfo.Amount name: Amount nameWithType: AutoGoalInfo.Amount fullName: TinyLife.Goals.AutoGoalInfo.Amount - uid: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: TinyLife.Goals.AutoGoalInfo.Distinct* commentId: Overload:TinyLife.Goals.AutoGoalInfo.Distinct name: Distinct nameWithType: AutoGoalInfo.Distinct fullName: TinyLife.Goals.AutoGoalInfo.Distinct - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer - uid: System.Func{{T},System.String} commentId: T:System.Func{``0,System.String} parent: System definition: System.Func`2 href: https://learn.microsoft.com/dotnet/api/system.func-2 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of T, String) fullName.vb: System.Func(Of T, String) name.vb: Func(Of T, String) spec.csharp: - uid: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - 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: System.Func`2 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-2 - 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: TinyLife.Goals.DistinctGoal`1 commentId: T:TinyLife.Goals.DistinctGoal`1 name: DistinctGoal nameWithType: DistinctGoal fullName: TinyLife.Goals.DistinctGoal nameWithType.vb: DistinctGoal(Of T) fullName.vb: TinyLife.Goals.DistinctGoal(Of T) name.vb: DistinctGoal(Of T) spec.csharp: - uid: TinyLife.Goals.DistinctGoal`1 name: DistinctGoal - name: < - name: T - name: '>' spec.vb: - uid: TinyLife.Goals.DistinctGoal`1 name: DistinctGoal - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic.IEnumerable{System.String} commentId: T:System.Collections.Generic.IEnumerable{System.String} parent: System.Collections.Generic definition: System.Collections.Generic.IEnumerable`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable nameWithType.vb: IEnumerable(Of String) fullName.vb: System.Collections.Generic.IEnumerable(Of String) name.vb: IEnumerable(Of String) spec.csharp: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: '>' spec.vb: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Collections.Generic.IEnumerable`1 commentId: T:System.Collections.Generic.IEnumerable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable nameWithType.vb: IEnumerable(Of T) fullName.vb: System.Collections.Generic.IEnumerable(Of T) name.vb: IEnumerable(Of T) spec.csharp: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - name: T - 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.AutoGoalInfo.Conditioned* commentId: Overload:TinyLife.Goals.AutoGoalInfo.Conditioned name: Conditioned nameWithType: AutoGoalInfo.Conditioned fullName: TinyLife.Goals.AutoGoalInfo.Conditioned