2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.GoalInfo
commentId : T:TinyLife.Goals.GoalInfo
id : GoalInfo
parent : TinyLife.Goals
children :
- TinyLife.Goals.GoalInfo.#ctor(System.String,System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal})
- TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet)
- TinyLife.Goals.GoalInfo.Name
langs :
- csharp
- vb
name : GoalInfo
nameWithType : GoalInfo
fullName : TinyLife.Goals.GoalInfo
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A goal info is the underlying goal information for a <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> that constructs an instance when a new <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> is constructed.
For auto-triggered goals, <xref href="TinyLife.Goals.AutoGoalInfo" data-throw-if-not-resolved="false"></xref> should be used.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content: 'public class GoalInfo : GenericDataHolder, IGenericDataHolder'
2023-03-30 18:07:55 +02:00
content.vb : Public Class GoalInfo Inherits GenericDataHolder Implements IGenericDataHolder
2021-10-14 20:30:40 +02:00
inheritance :
- System.Object
- MLEM.Misc.GenericDataHolder
derivedClasses :
- TinyLife.Goals.AutoGoalInfo
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
2022-12-20 13:25:03 +01:00
- MLEM.Misc.GenericDataHolder.SetData``1(System.String,{T})
2021-10-14 20:30:40 +02:00
- 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.GoalInfo.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Goals.GoalInfo.Name
commentId : F:TinyLife.Goals.GoalInfo.Name
id : Name
parent : TinyLife.Goals.GoalInfo
langs :
- csharp
- vb
name : Name
nameWithType : GoalInfo.Name
fullName : TinyLife.Goals.GoalInfo.Name
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The name of this goal info, which will be passed to the underlying <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public readonly string Name
return :
type : System.String
content.vb : Public ReadOnly Name As String
- uid : TinyLife.Goals.GoalInfo.#ctor(System.String,System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal})
commentId : M:TinyLife.Goals.GoalInfo.#ctor(System.String,System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal})
id : '#ctor(System.String,System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal})'
parent : TinyLife.Goals.GoalInfo
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GoalInfo(string, Func<GoalSet, GoalInfo, Goal>)
nameWithType : GoalInfo.GoalInfo(string, Func<GoalSet, GoalInfo, Goal>)
fullName : TinyLife.Goals.GoalInfo.GoalInfo(string, System.Func<TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo, TinyLife.Goals.Goal>)
2021-10-14 20:30:40 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Creates a new goal info with the given settings
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public GoalInfo(string name, Func<GoalSet, GoalInfo, Goal> constructor)
parameters :
- id : name
type : System.String
description : The name of this goal
- id : constructor
type : System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal}
description : The function that should be called to construct a goal instance
content.vb : Public Sub New(name As String, constructor As Func(Of GoalSet, GoalInfo, Goal))
overload : TinyLife.Goals.GoalInfo.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : GoalInfo.New(String, Func(Of GoalSet, GoalInfo, Goal))
fullName.vb : TinyLife.Goals.GoalInfo.New(String, System.Func(Of TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo, TinyLife.Goals.Goal))
name.vb : New(String, Func(Of GoalSet, GoalInfo, Goal))
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet)
commentId : M:TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet)
id : Construct(TinyLife.Goals.GoalSet)
parent : TinyLife.Goals.GoalInfo
langs :
- csharp
- vb
name : Construct(GoalSet)
nameWithType : GoalInfo.Construct(GoalSet)
fullName : TinyLife.Goals.GoalInfo.Construct(TinyLife.Goals.GoalSet)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Constructs a new goal from this goal info.
By default, this simply calls the construction function that has been passed in the constructor.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public virtual Goal Construct(GoalSet set)
parameters :
- id : set
type : TinyLife.Goals.GoalSet
description : The goal set
return :
type : TinyLife.Goals.Goal
description : The goal instance
2023-03-30 18:07:55 +02:00
content.vb : Public Overridable Function Construct([set] As GoalSet) As Goal
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalInfo.Construct*
references :
- uid : TinyLife.Goals.Goal
commentId : T:TinyLife.Goals.Goal
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html
2021-10-14 20:30:40 +02:00
name : Goal
nameWithType : Goal
fullName : TinyLife.Goals.Goal
- uid : TinyLife.Goals.GoalSet
commentId : T:TinyLife.Goals.GoalSet
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2021-10-14 20:30:40 +02:00
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- uid : TinyLife.Goals.AutoGoalInfo
commentId : T:TinyLife.Goals.AutoGoalInfo
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.AutoGoalInfo.html
2021-10-14 20:30:40 +02:00
name : AutoGoalInfo
nameWithType : AutoGoalInfo
fullName : TinyLife.Goals.AutoGoalInfo
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Goals
nameWithType : TinyLife.Goals
fullName : TinyLife.Goals
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2021-10-14 20:30:40 +02:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2021-10-14 20:30:40 +02:00
- 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
2022-12-20 13:25:03 +01:00
- 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)
2023-03-30 18:07:55 +02:00
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)
2022-12-20 13:25:03 +01:00
nameWithType.vb : GenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
parent : MLEM.Misc.GenericDataHolder
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-10-14 20:30:40 +02:00
nameWithType.vb : GenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.GetData(Of T)(String)
2021-10-14 20:30:40 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2021-10-14 20:30:40 +02:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2021-10-14 20:30:40 +02:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2021-10-14 20:30:40 +02:00
- 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
2023-03-30 18:07:55 +02:00
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)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2021-10-14 20:30:40 +02:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.GoalInfo.TinyLife.Utilities.Extensions.JsonCopy``1
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name : JsonCopy<GoalInfo>(GoalInfo)
nameWithType : Extensions.JsonCopy<GoalInfo>(GoalInfo)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.GoalInfo>(TinyLife.Goals.GoalInfo)
nameWithType.vb : Extensions.JsonCopy(Of GoalInfo)(GoalInfo)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.GoalInfo)(TinyLife.Goals.GoalInfo)
name.vb : JsonCopy(Of GoalInfo)(GoalInfo)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.GoalInfo)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- uid : TinyLife.Goals.GoalInfo
name : GoalInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.GoalInfo
name : GoalInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.GoalInfo)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Goals.GoalInfo
name : GoalInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Goals.GoalInfo
name : GoalInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2021-10-14 20:30:40 +02:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2021-10-14 20:30:40 +02:00
name : System
nameWithType : System
fullName : System
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
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
2022-12-20 13:25:03 +01:00
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2022-12-20 13:25:03 +01:00
nameWithType.vb : GenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Misc.GenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-10-14 20:30:40 +02:00
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)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-10-14 20:30:40 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2021-10-14 20:30:40 +02:00
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : string
nameWithType : string
fullName : string
nameWithType.vb : String
fullName.vb : String
name.vb : String
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalInfo.#ctor*
commentId : Overload:TinyLife.Goals.GoalInfo.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html#TinyLife_Goals_GoalInfo__ctor_System_String_System_Func_TinyLife_Goals_GoalSet_TinyLife_Goals_GoalInfo_TinyLife_Goals_Goal__
2021-10-14 20:30:40 +02:00
name : GoalInfo
nameWithType : GoalInfo.GoalInfo
fullName : TinyLife.Goals.GoalInfo.GoalInfo
2023-03-30 18:07:55 +02:00
nameWithType.vb : GoalInfo.New
fullName.vb : TinyLife.Goals.GoalInfo.New
name.vb : New
2021-10-14 20:30:40 +02:00
- uid : System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal}
commentId : T:System.Func{TinyLife.Goals.GoalSet,TinyLife.Goals.GoalInfo,TinyLife.Goals.Goal}
parent : System
definition : System.Func`3
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2021-10-14 20:30:40 +02:00
name : Func<GoalSet, GoalInfo, Goal>
nameWithType : Func<GoalSet, GoalInfo, Goal>
fullName : System.Func<TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo, TinyLife.Goals.Goal>
nameWithType.vb : Func(Of GoalSet, GoalInfo, Goal)
fullName.vb : System.Func(Of TinyLife.Goals.GoalSet, TinyLife.Goals.GoalInfo, TinyLife.Goals.Goal)
name.vb : Func(Of GoalSet, GoalInfo, Goal)
spec.csharp :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2021-10-14 20:30:40 +02:00
- name : <
- uid : TinyLife.Goals.GoalSet
name : GoalSet
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalInfo
name : GoalInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.Goal
name : Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html
2021-10-14 20:30:40 +02:00
- name : '>'
spec.vb :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet
name : GoalSet
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalInfo
name : GoalInfo
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.Goal
name : Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html
2021-10-14 20:30:40 +02:00
- name : )
- uid : System.Func`3
commentId : T:System.Func`3
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2021-10-14 20:30:40 +02:00
name : Func<T1, T2, TResult>
nameWithType : Func<T1, T2, TResult>
fullName : System.Func<T1, T2, TResult>
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
2021-10-14 20:30:40 +02:00
- name : <
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- name : TResult
- name : '>'
spec.vb :
- uid : System.Func`3
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-3
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : T1
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- name : T2
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- name : TResult
- name : )
- uid : TinyLife.Goals.GoalInfo.Construct*
commentId : Overload:TinyLife.Goals.GoalInfo.Construct
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalInfo.html#TinyLife_Goals_GoalInfo_Construct_TinyLife_Goals_GoalSet_
2021-10-14 20:30:40 +02:00
name : Construct
nameWithType : GoalInfo.Construct
fullName : TinyLife.Goals.GoalInfo.Construct