2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.GoalSet
commentId : T:TinyLife.Goals.GoalSet
id : GoalSet
parent : TinyLife.Goals
children :
2022-07-28 14:58:38 +02:00
- TinyLife.Goals.GoalSet.#ctor(TinyLife.Goals.GoalSetInfo)
2022-07-04 16:50:43 +02:00
- TinyLife.Goals.GoalSet.GetDisplay(MLEM.Ui.Anchor,System.Boolean)
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.GoalSet.GetGoal``1
- TinyLife.Goals.GoalSet.GetGoal``1(System.String)
- TinyLife.Goals.GoalSet.GetGoals``1
- TinyLife.Goals.GoalSet.GetProgress
2024-03-09 19:49:55 +01:00
- TinyLife.Goals.GoalSet.Goals
2021-10-14 20:30:40 +02:00
- TinyLife.Goals.GoalSet.Info
- TinyLife.Goals.GoalSet.IsCompleted
- TinyLife.Goals.GoalSet.Reset
2022-07-28 14:58:38 +02:00
- TinyLife.Goals.GoalSet.Validate(TinyLife.Goals.GoalSetInfo)
2021-10-14 20:30:40 +02:00
langs :
- csharp
- vb
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
A goal set is a set of <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instances that manages them.
Goal sets are used by a <xref href="TinyLife.Goals.Job" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.Goals.Job.DailyTasks" data-throw-if-not-resolved="false"></xref> as well as by the <xref href="TinyLife.Goals.LifeGoal" data-throw-if-not-resolved="false"></xref> system.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
2022-12-28 18:09:03 +01:00
public class GoalSet : JsonTypeSafeGenericDataHolder, IGenericDataHolder, IGoalTriggerable
2021-10-14 20:30:40 +02:00
content.vb : >-
<DataContract>
2023-03-30 18:07:55 +02:00
Public Class GoalSet Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder, IGoalTriggerable
2021-10-14 20:30:40 +02:00
inheritance :
- System.Object
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
implements :
- MLEM.Misc.IGenericDataHolder
2022-12-28 18:09:03 +01:00
- TinyLife.Goals.IGoalTriggerable
2021-10-14 20:30:40 +02:00
inheritedMembers :
2022-12-20 13:25:03 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
2021-11-23 16:24:04 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-10-14 20:30:40 +02:00
- 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.GoalSet.TinyLife.Utilities.Extensions.JsonCopy``1
attributes :
- type : System.Runtime.Serialization.DataContractAttribute
ctor : System.Runtime.Serialization.DataContractAttribute.#ctor
arguments : [ ]
2024-03-09 19:49:55 +01:00
- uid : TinyLife.Goals.GoalSet.Goals
commentId : P:TinyLife.Goals.GoalSet.Goals
id : Goals
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : Goals
nameWithType : GoalSet.Goals
fullName : TinyLife.Goals.GoalSet.Goals
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-04-14 17:55:54 +02:00
summary : The goals in this goal set.
example : [ ]
2024-03-09 19:49:55 +01:00
syntax :
content : public ICollection<Goal> Goals { get; }
parameters : [ ]
return :
type : System.Collections.Generic.ICollection{TinyLife.Goals.Goal}
content.vb : Public ReadOnly Property Goals As ICollection(Of Goal)
overload : TinyLife.Goals.GoalSet.Goals*
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet.Info
commentId : P:TinyLife.Goals.GoalSet.Info
id : Info
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : Info
nameWithType : GoalSet.Info
fullName : TinyLife.Goals.GoalSet.Info
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The underlying <xref href="TinyLife.Goals.GoalSetInfo" data-throw-if-not-resolved="false"></xref> that this goal set was constructed from
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public GoalSetInfo Info { get; }
parameters : [ ]
return :
type : TinyLife.Goals.GoalSetInfo
2023-03-30 18:07:55 +02:00
content.vb : Public Property Info As GoalSetInfo
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.Info*
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.GoalSet.#ctor(TinyLife.Goals.GoalSetInfo)
commentId : M:TinyLife.Goals.GoalSet.#ctor(TinyLife.Goals.GoalSetInfo)
id : '#ctor(TinyLife.Goals.GoalSetInfo)'
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
2022-07-28 14:58:38 +02:00
name : GoalSet(GoalSetInfo)
nameWithType : GoalSet.GoalSet(GoalSetInfo)
fullName : TinyLife.Goals.GoalSet.GoalSet(TinyLife.Goals.GoalSetInfo)
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 set with the given settings
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2022-07-28 14:58:38 +02:00
content : public GoalSet(GoalSetInfo info)
2021-10-14 20:30:40 +02:00
parameters :
- id : info
type : TinyLife.Goals.GoalSetInfo
description : The underlying goal set info
2022-07-28 14:58:38 +02:00
content.vb : Public Sub New(info As GoalSetInfo)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : GoalSet.New(GoalSetInfo)
fullName.vb : TinyLife.Goals.GoalSet.New(TinyLife.Goals.GoalSetInfo)
name.vb : New(GoalSetInfo)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet.GetProgress
commentId : M:TinyLife.Goals.GoalSet.GetProgress
id : GetProgress
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : GetProgress()
nameWithType : GoalSet.GetProgress()
fullName : TinyLife.Goals.GoalSet.GetProgress()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns the progress of this goal set as a percentage between 0 and 1, which is a combination of the <xref href="TinyLife.Goals.Goal.GetProgress" data-throw-if-not-resolved="false"></xref> values from the underlying <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instances
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public float GetProgress()
return :
type : System.Single
description : The progress, between 0 and 1
2023-03-30 18:07:55 +02:00
content.vb : Public Function GetProgress() As Single
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.GetProgress*
- uid : TinyLife.Goals.GoalSet.IsCompleted
commentId : M:TinyLife.Goals.GoalSet.IsCompleted
id : IsCompleted
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : IsCompleted()
nameWithType : GoalSet.IsCompleted()
fullName : TinyLife.Goals.GoalSet.IsCompleted()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Returns whether this goal set is completed.
This returns whether <xref href="TinyLife.Goals.GoalSet.GetProgress" data-throw-if-not-resolved="false"></xref> is greater than or equal to 1.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public bool IsCompleted()
return :
type : System.Boolean
description : Whether this goal set is completed
2023-03-30 18:07:55 +02:00
content.vb : Public Function IsCompleted() As Boolean
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.IsCompleted*
- uid : TinyLife.Goals.GoalSet.Reset
commentId : M:TinyLife.Goals.GoalSet.Reset
id : Reset
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : Reset()
nameWithType : GoalSet.Reset()
fullName : TinyLife.Goals.GoalSet.Reset()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Resets this goal set by calling the <xref href="TinyLife.Goals.Goal.Reset" data-throw-if-not-resolved="false"></xref> methods of the underlying goals
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public void Reset()
2023-03-30 18:07:55 +02:00
content.vb : Public Sub Reset()
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.Reset*
- uid : TinyLife.Goals.GoalSet.GetGoals``1
commentId : M:TinyLife.Goals.GoalSet.GetGoals``1
id : GetGoals``1
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : GetGoals<T>()
nameWithType : GoalSet.GetGoals<T>()
fullName : TinyLife.Goals.GoalSet.GetGoals<T>()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns a set of all of the <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instnaces that are contained in this goal set, optionally matching the specified type parameter <code class="typeparamref">T</code>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content: 'public IEnumerable<T> GetGoals<T>() where T : Goal'
2021-10-14 20:30:40 +02:00
typeParameters :
- id : T
description : The type of goal to return
return :
type : System.Collections.Generic.IEnumerable{{T}}
description : The goals in this goal set
2023-03-30 18:07:55 +02:00
content.vb : Public Function GetGoals(Of T As Goal)() As IEnumerable(Of T)
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.GetGoals*
nameWithType.vb : GoalSet.GetGoals(Of T)()
fullName.vb : TinyLife.Goals.GoalSet.GetGoals(Of T)()
name.vb : GetGoals(Of T)()
- uid : TinyLife.Goals.GoalSet.GetGoal``1(System.String)
commentId : M:TinyLife.Goals.GoalSet.GetGoal``1(System.String)
id : GetGoal``1(System.String)
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetGoal<T>(string)
nameWithType : GoalSet.GetGoal<T>(string)
fullName : TinyLife.Goals.GoalSet.GetGoal<T>(string)
2021-10-14 20:30:40 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns the <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instance in this goal set with the given name, or null if there is no matching goal
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content: 'public T GetGoal<T>(string name) where T : Goal'
2021-10-14 20:30:40 +02:00
parameters :
- id : name
type : System.String
description : The name of the goal to return
typeParameters :
- id : T
description : The type of goal to return
return :
type : '{T}'
description : The goal with the given name and type
content.vb : Public Function GetGoal(Of T As Goal)(name As String) As T
overload : TinyLife.Goals.GoalSet.GetGoal*
nameWithType.vb : GoalSet.GetGoal(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : TinyLife.Goals.GoalSet.GetGoal(Of T)(String)
2021-10-14 20:30:40 +02:00
name.vb : GetGoal(Of T)(String)
- uid : TinyLife.Goals.GoalSet.GetGoal``1
commentId : M:TinyLife.Goals.GoalSet.GetGoal``1
id : GetGoal``1
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
name : GetGoal<T>()
nameWithType : GoalSet.GetGoal<T>()
fullName : TinyLife.Goals.GoalSet.GetGoal<T>()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Returns the single <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instance in this goal set of the given type.
If there are more goals of the given type, this method will throw an <xref href="System.InvalidOperationException" data-throw-if-not-resolved="false"></xref>.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2023-03-30 18:07:55 +02:00
content: 'public T GetGoal<T>() where T : Goal'
2021-10-14 20:30:40 +02:00
typeParameters :
- id : T
description : The type of goal to return
return :
type : '{T}'
description : The single goal of the given type
2023-03-30 18:07:55 +02:00
content.vb : Public Function GetGoal(Of T As Goal)() As T
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.GetGoal*
nameWithType.vb : GoalSet.GetGoal(Of T)()
fullName.vb : TinyLife.Goals.GoalSet.GetGoal(Of T)()
name.vb : GetGoal(Of T)()
2022-07-04 16:50:43 +02:00
- uid : TinyLife.Goals.GoalSet.GetDisplay(MLEM.Ui.Anchor,System.Boolean)
commentId : M:TinyLife.Goals.GoalSet.GetDisplay(MLEM.Ui.Anchor,System.Boolean)
id : GetDisplay(MLEM.Ui.Anchor,System.Boolean)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : GetDisplay(Anchor, bool)
nameWithType : GoalSet.GetDisplay(Anchor, bool)
fullName : TinyLife.Goals.GoalSet.GetDisplay(MLEM.Ui.Anchor, bool)
2021-10-14 20:30:40 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns a <xref href="MLEM.Ui.Elements.Group" data-throw-if-not-resolved="false"></xref> of elements that display the progress of this goal set dynamically
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2022-07-04 16:50:43 +02:00
content : public Group GetDisplay(Anchor anchor, bool descriptionAsChild = false)
2021-10-14 20:30:40 +02:00
parameters :
- id : anchor
type : MLEM.Ui.Anchor
description : The anchor that the returned group should have
2022-07-04 16:50:43 +02:00
- id : descriptionAsChild
type : System.Boolean
description : Whether the description should be returned as a child of the returned group, rather than added as a tooltip.
2021-10-14 20:30:40 +02:00
return :
type : MLEM.Ui.Elements.Group
2024-01-07 16:53:47 +01:00
description : A group that displays this goal set's progress
2022-07-04 16:50:43 +02:00
content.vb : Public Function GetDisplay(anchor As Anchor, descriptionAsChild As Boolean = False) As Group
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.GetDisplay*
2023-03-30 18:07:55 +02:00
nameWithType.vb : GoalSet.GetDisplay(Anchor, Boolean)
fullName.vb : TinyLife.Goals.GoalSet.GetDisplay(MLEM.Ui.Anchor, Boolean)
name.vb : GetDisplay(Anchor, Boolean)
2022-07-28 14:58:38 +02:00
- uid : TinyLife.Goals.GoalSet.Validate(TinyLife.Goals.GoalSetInfo)
commentId : M:TinyLife.Goals.GoalSet.Validate(TinyLife.Goals.GoalSetInfo)
id : Validate(TinyLife.Goals.GoalSetInfo)
2021-10-14 20:30:40 +02:00
parent : TinyLife.Goals.GoalSet
langs :
- csharp
- vb
2022-07-28 14:58:38 +02:00
name : Validate(GoalSetInfo)
nameWithType : GoalSet.Validate(GoalSetInfo)
fullName : TinyLife.Goals.GoalSet.Validate(TinyLife.Goals.GoalSetInfo)
2021-10-14 20:30:40 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
Validates this goal set and all of the underlying <xref href="TinyLife.Goals.Goal" data-throw-if-not-resolved="false"></xref> instances.
This method should be called when this goal set is loaded from disk.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
2022-07-28 14:58:38 +02:00
content : public bool Validate(GoalSetInfo info)
2021-10-14 20:30:40 +02:00
parameters :
- id : info
type : TinyLife.Goals.GoalSetInfo
description : The underlying goal set info that this goal set was constructed from
return :
type : System.Boolean
description : Whether this goal set is considered valid
2022-07-28 14:58:38 +02:00
content.vb : Public Function Validate(info As GoalSetInfo) As Boolean
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.GoalSet.Validate*
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.Job
commentId : T:TinyLife.Goals.Job
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html
2021-10-14 20:30:40 +02:00
name : Job
nameWithType : Job
fullName : TinyLife.Goals.Job
- uid : TinyLife.Goals.Job.DailyTasks
commentId : P:TinyLife.Goals.Job.DailyTasks
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Job.html#TinyLife_Goals_Job_DailyTasks
2023-03-30 18:07:55 +02:00
name : DailyTasks
nameWithType : Job.DailyTasks
fullName : TinyLife.Goals.Job.DailyTasks
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal
commentId : T:TinyLife.Goals.LifeGoal
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
name : LifeGoal
nameWithType : LifeGoal
fullName : TinyLife.Goals.LifeGoal
- 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-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
2021-10-14 20:30:40 +02:00
isExternal : true
2021-11-23 16:24:04 +01:00
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
2022-12-28 18:09:03 +01:00
- uid : TinyLife.Goals.IGoalTriggerable
commentId : T:TinyLife.Goals.IGoalTriggerable
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.IGoalTriggerable.html
2022-12-28 18:09:03 +01:00
name : IGoalTriggerable
nameWithType : IGoalTriggerable
fullName : TinyLife.Goals.IGoalTriggerable
2022-12-20 13:25:03 +01:00
- 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)
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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.Data.Json.JsonTypeSafeGenericDataHolder.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-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
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
name : GetData<T>(string)
nameWithType : JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
2021-11-23 16:24:04 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2021-10-14 20:30:40 +02:00
name.vb : GetData(Of T)(String)
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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 :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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 : )
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
2021-10-14 20:30:40 +02:00
isExternal : true
name : GetDataKeys()
2021-11-23 16:24:04 +01:00
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
2021-10-14 20:30:40 +02:00
spec.csharp :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-10-14 20:30:40 +02:00
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
2021-10-14 20:30:40 +02:00
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.GoalSet.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<GoalSet>(GoalSet)
nameWithType : Extensions.JsonCopy<GoalSet>(GoalSet)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.GoalSet>(TinyLife.Goals.GoalSet)
nameWithType.vb : Extensions.JsonCopy(Of GoalSet)(GoalSet)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.GoalSet)(TinyLife.Goals.GoalSet)
name.vb : JsonCopy(Of GoalSet)(GoalSet)
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.GoalSet)
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.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 : '>'
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.GoalSet
name : GoalSet
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.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.GoalSet)
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.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 : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.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
2021-11-23 16:24:04 +01:00
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
2021-10-14 20:30:40 +02:00
- 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.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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 : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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.Data.Json.JsonTypeSafeGenericDataHolder.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
2024-03-09 19:49:55 +01:00
- uid : TinyLife.Goals.GoalSet.Goals*
commentId : Overload:TinyLife.Goals.GoalSet.Goals
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_Goals
name : Goals
nameWithType : GoalSet.Goals
fullName : TinyLife.Goals.GoalSet.Goals
- uid : System.Collections.Generic.ICollection{TinyLife.Goals.Goal}
commentId : T:System.Collections.Generic.ICollection{TinyLife.Goals.Goal}
parent : System.Collections.Generic
definition : System.Collections.Generic.ICollection`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name : ICollection<Goal>
nameWithType : ICollection<Goal>
fullName : System.Collections.Generic.ICollection<TinyLife.Goals.Goal>
nameWithType.vb : ICollection(Of Goal)
fullName.vb : System.Collections.Generic.ICollection(Of TinyLife.Goals.Goal)
name.vb : ICollection(Of Goal)
spec.csharp :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : <
- uid : TinyLife.Goals.Goal
name : Goal
href : TinyLife.Goals.Goal.html
- name : '>'
spec.vb :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.Goals.Goal
name : Goal
href : TinyLife.Goals.Goal.html
- name : )
- uid : System.Collections.Generic.ICollection`1
commentId : T:System.Collections.Generic.ICollection`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name : ICollection<T>
nameWithType : ICollection<T>
fullName : System.Collections.Generic.ICollection<T>
nameWithType.vb : ICollection(Of T)
fullName.vb : System.Collections.Generic.ICollection(Of T)
name.vb : ICollection(Of T)
spec.csharp :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.ICollection`1
name : ICollection
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-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
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSetInfo
commentId : T:TinyLife.Goals.GoalSetInfo
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSetInfo.html
2021-10-14 20:30:40 +02:00
name : GoalSetInfo
nameWithType : GoalSetInfo
fullName : TinyLife.Goals.GoalSetInfo
- uid : TinyLife.Goals.GoalSet.Info*
commentId : Overload:TinyLife.Goals.GoalSet.Info
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_Info
2021-10-14 20:30:40 +02:00
name : Info
nameWithType : GoalSet.Info
fullName : TinyLife.Goals.GoalSet.Info
- uid : TinyLife.Goals.GoalSet.#ctor*
commentId : Overload:TinyLife.Goals.GoalSet.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet__ctor_TinyLife_Goals_GoalSetInfo_
2021-10-14 20:30:40 +02:00
name : GoalSet
nameWithType : GoalSet.GoalSet
fullName : TinyLife.Goals.GoalSet.GoalSet
2023-03-30 18:07:55 +02:00
nameWithType.vb : GoalSet.New
fullName.vb : TinyLife.Goals.GoalSet.New
name.vb : New
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.Goal.GetProgress
commentId : M:TinyLife.Goals.Goal.GetProgress
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress
2021-10-14 20:30:40 +02:00
name : GetProgress()
nameWithType : Goal.GetProgress()
fullName : TinyLife.Goals.Goal.GetProgress()
spec.csharp :
- uid : TinyLife.Goals.Goal.GetProgress
name : GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.Goal.GetProgress
name : GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_GetProgress
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.GoalSet.GetProgress*
commentId : Overload:TinyLife.Goals.GoalSet.GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetProgress
2021-10-14 20:30:40 +02:00
name : GetProgress
nameWithType : GoalSet.GetProgress
fullName : TinyLife.Goals.GoalSet.GetProgress
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet.GetProgress
commentId : M:TinyLife.Goals.GoalSet.GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetProgress
2023-03-30 18:07:55 +02:00
name : GetProgress()
nameWithType : GoalSet.GetProgress()
fullName : TinyLife.Goals.GoalSet.GetProgress()
spec.csharp :
- uid : TinyLife.Goals.GoalSet.GetProgress
name : GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetProgress
2023-03-30 18:07:55 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.GoalSet.GetProgress
name : GetProgress
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetProgress
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet.IsCompleted*
commentId : Overload:TinyLife.Goals.GoalSet.IsCompleted
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_IsCompleted
2021-10-14 20:30:40 +02:00
name : IsCompleted
nameWithType : GoalSet.IsCompleted
fullName : TinyLife.Goals.GoalSet.IsCompleted
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.Goal.Reset
commentId : M:TinyLife.Goals.Goal.Reset
parent : TinyLife.Goals.Goal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset
2021-10-14 20:30:40 +02:00
name : Reset()
nameWithType : Goal.Reset()
fullName : TinyLife.Goals.Goal.Reset()
spec.csharp :
- uid : TinyLife.Goals.Goal.Reset
name : Reset
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset
2021-10-14 20:30:40 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.Goal.Reset
name : Reset
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.Goal.html#TinyLife_Goals_Goal_Reset
2021-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.GoalSet.Reset*
commentId : Overload:TinyLife.Goals.GoalSet.Reset
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_Reset
2021-10-14 20:30:40 +02:00
name : Reset
nameWithType : GoalSet.Reset
fullName : TinyLife.Goals.GoalSet.Reset
- uid : TinyLife.Goals.GoalSet.GetGoals*
commentId : Overload:TinyLife.Goals.GoalSet.GetGoals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetGoals__1
2021-10-14 20:30:40 +02:00
name : GetGoals
nameWithType : GoalSet.GetGoals
fullName : TinyLife.Goals.GoalSet.GetGoals
- uid : System.Collections.Generic.IEnumerable{{T}}
commentId : T:System.Collections.Generic.IEnumerable{``0}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-10-14 20:30:40 +02:00
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-10-14 20:30:40 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : T
- name : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-10-14 20:30:40 +02:00
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
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
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
2021-10-14 20:30:40 +02:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- name : T
- name : )
- uid : TinyLife.Goals.GoalSet.GetGoal*
commentId : Overload:TinyLife.Goals.GoalSet.GetGoal
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetGoal__1_System_String_
2021-10-14 20:30:40 +02:00
name : GetGoal
nameWithType : GoalSet.GetGoal
fullName : TinyLife.Goals.GoalSet.GetGoal
- 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 : '{T}'
commentId : '!:T'
definition : T
name : T
nameWithType : T
fullName : T
- uid : T
name : T
nameWithType : T
fullName : T
- uid : System.InvalidOperationException
commentId : T:System.InvalidOperationException
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.invalidoperationexception
name : InvalidOperationException
nameWithType : InvalidOperationException
fullName : System.InvalidOperationException
2021-10-14 20:30:40 +02:00
- uid : MLEM.Ui.Elements.Group
commentId : T:MLEM.Ui.Elements.Group
parent : MLEM.Ui.Elements
isExternal : true
name : Group
nameWithType : Group
fullName : MLEM.Ui.Elements.Group
- uid : TinyLife.Goals.GoalSet.GetDisplay*
commentId : Overload:TinyLife.Goals.GoalSet.GetDisplay
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_GetDisplay_MLEM_Ui_Anchor_System_Boolean_
2021-10-14 20:30:40 +02:00
name : GetDisplay
nameWithType : GoalSet.GetDisplay
fullName : TinyLife.Goals.GoalSet.GetDisplay
- uid : MLEM.Ui.Anchor
commentId : T:MLEM.Ui.Anchor
parent : MLEM.Ui
isExternal : true
name : Anchor
nameWithType : Anchor
fullName : MLEM.Ui.Anchor
- uid : MLEM.Ui.Elements
commentId : N : MLEM.Ui.Elements
isExternal : true
name : MLEM.Ui.Elements
nameWithType : MLEM.Ui.Elements
fullName : MLEM.Ui.Elements
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
- name : .
- uid : MLEM.Ui.Elements
name : Elements
isExternal : true
2021-10-14 20:30:40 +02:00
- uid : MLEM.Ui
commentId : N : MLEM.Ui
isExternal : true
name : MLEM.Ui
nameWithType : MLEM.Ui
fullName : MLEM.Ui
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Ui
name : Ui
isExternal : true
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet.Validate*
commentId : Overload:TinyLife.Goals.GoalSet.Validate
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html#TinyLife_Goals_GoalSet_Validate_TinyLife_Goals_GoalSetInfo_
2021-10-14 20:30:40 +02:00
name : Validate
nameWithType : GoalSet.Validate
fullName : TinyLife.Goals.GoalSet.Validate