2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.DistinctGoal
commentId : T:TinyLife.Goals.DistinctGoal
id : DistinctGoal
parent : TinyLife.Goals
children :
- TinyLife.Goals.DistinctGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo)
- TinyLife.Goals.DistinctGoal.GetDisplayedProgress
- TinyLife.Goals.DistinctGoal.GetProgress
- TinyLife.Goals.DistinctGoal.Reset
- TinyLife.Goals.DistinctGoal.Trigger(System.Object)
- TinyLife.Goals.DistinctGoal.Validate(TinyLife.Goals.GoalSet)
langs :
- csharp
- vb
name : DistinctGoal
nameWithType : DistinctGoal
fullName : TinyLife.Goals.DistinctGoal
type : Class
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : DistinctGoal
path : Goals/DistinctGoal.cs
startLine : 9
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : "\nA distinct goal is an auto-triggered goal, intended to be used with <xref href=\"TinyLife.Goals.AutoGoalInfo\" data-throw-if-not-resolved=\"false\"></xref>, that keeps track of a distinct set of objects to be completed or obtained.\nTo trigger all distinct goals in a goal set, use <xref href=\"TinyLife.Goals.DistinctGoal.Trigger(System.Object)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content: 'public class DistinctGoal : AutoTriggerGoal<object>, IGenericDataHolder'
content.vb : >-
Public Class DistinctGoal
Inherits AutoTriggerGoal(Of Object)
Implements IGenericDataHolder
inheritance :
- System.Object
- MLEM.Misc.GenericDataHolder
- TinyLife.Goals.Goal
- TinyLife.Goals.AutoTriggerGoal{System.Object}
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
- TinyLife.Goals.AutoTriggerGoal{System.Object}.AutoInfo
- TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,System.Object)
- TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,System.Object)
- TinyLife.Goals.Goal.Name
- TinyLife.Goals.Goal.Set
- TinyLife.Goals.Goal.Info
- MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
- 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.DistinctGoal.TinyLife.Utilities.Extensions.JsonCopy``1
- MLEM.Misc.IGenericDataHolder.TinyLife.Utilities.Extensions.GetTimeSpan(System.String)
- MLEM.Misc.IGenericDataHolder.TinyLife.Utilities.Extensions.SetTimeSpan(System.String,System.TimeSpan)
modifiers.csharp :
- public
- class
modifiers.vb :
- Public
- Class
- uid : TinyLife.Goals.DistinctGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo)
commentId : M:TinyLife.Goals.DistinctGoal.#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo)
id : '#ctor(TinyLife.Goals.GoalSet,TinyLife.Goals.AutoGoalInfo)'
parent : TinyLife.Goals.DistinctGoal
langs :
- csharp
- vb
name : DistinctGoal(GoalSet, AutoGoalInfo)
nameWithType : DistinctGoal.DistinctGoal(GoalSet, AutoGoalInfo)
fullName : TinyLife.Goals.DistinctGoal.DistinctGoal(TinyLife.Goals.GoalSet, TinyLife.Goals.AutoGoalInfo)
type : Constructor
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : .ctor
path : Goals/DistinctGoal.cs
startLine : 16
assemblies :
- Tiny Life
namespace : TinyLife.Goals
example : [ ]
syntax :
content : public DistinctGoal(GoalSet set, AutoGoalInfo info)
parameters :
- id : set
type : TinyLife.Goals.GoalSet
- id : info
type : TinyLife.Goals.AutoGoalInfo
content.vb : Public Sub New(set As GoalSet, info As AutoGoalInfo)
overload : TinyLife.Goals.DistinctGoal.#ctor*
modifiers.csharp :
- public
modifiers.vb :
- Public
- uid : TinyLife.Goals.DistinctGoal.GetProgress
commentId : M:TinyLife.Goals.DistinctGoal.GetProgress
id : GetProgress
parent : TinyLife.Goals.DistinctGoal
langs :
- csharp
- vb
name : GetProgress()
nameWithType : DistinctGoal.GetProgress()
fullName : TinyLife.Goals.DistinctGoal.GetProgress()
type : Method
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : GetProgress
path : Goals/DistinctGoal.cs
startLine : 22
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : "\nReturns the progress percentage (between 0 and 1) that this goal has\n"
example : [ ]
syntax :
content : public override float GetProgress()
return :
type : System.Single
description : The progress percentage
content.vb : Public Overrides Function GetProgress As Single
overridden : TinyLife.Goals.Goal.GetProgress
overload : TinyLife.Goals.DistinctGoal.GetProgress*
modifiers.csharp :
- public
- override
modifiers.vb :
- Public
- Overrides
- uid : TinyLife.Goals.DistinctGoal.Reset
commentId : M:TinyLife.Goals.DistinctGoal.Reset
id : Reset
parent : TinyLife.Goals.DistinctGoal
langs :
- csharp
- vb
name : Reset()
nameWithType : DistinctGoal.Reset()
fullName : TinyLife.Goals.DistinctGoal.Reset()
type : Method
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Reset
path : Goals/DistinctGoal.cs
startLine : 27
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : "\nResets this goal to the default values, which should cause 0 to be returned on <xref href=\"TinyLife.Goals.Goal.GetProgress\" data-throw-if-not-resolved=\"false\"></xref>\n"
example : [ ]
syntax :
content : public override void Reset()
content.vb : Public Overrides Sub Reset
overridden : TinyLife.Goals.Goal.Reset
overload : TinyLife.Goals.DistinctGoal.Reset*
modifiers.csharp :
- public
- override
modifiers.vb :
- Public
- Overrides
- uid : TinyLife.Goals.DistinctGoal.GetDisplayedProgress
commentId : M:TinyLife.Goals.DistinctGoal.GetDisplayedProgress
id : GetDisplayedProgress
parent : TinyLife.Goals.DistinctGoal
langs :
- csharp
- vb
name : GetDisplayedProgress()
nameWithType : DistinctGoal.GetDisplayedProgress()
fullName : TinyLife.Goals.DistinctGoal.GetDisplayedProgress()
type : Method
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : GetDisplayedProgress
path : Goals/DistinctGoal.cs
startLine : 32
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : "\nReturns a string that is used in a goal set's displayed ui information that determines the progress of this goal.\nBy default, the <xref href=\"TinyLife.Goals.Goal.GetProgress\" data-throw-if-not-resolved=\"false\"></xref> percentage is displayed as a percentage between 0 and 100.\n"
example : [ ]
syntax :
content : public override string GetDisplayedProgress()
return :
type : System.String
description : The displayed goal progress
content.vb : Public Overrides Function GetDisplayedProgress As String
overridden : TinyLife.Goals.Goal.GetDisplayedProgress
overload : TinyLife.Goals.DistinctGoal.GetDisplayedProgress*
modifiers.csharp :
- public
- override
modifiers.vb :
- Public
- Overrides
- uid : TinyLife.Goals.DistinctGoal.Validate(TinyLife.Goals.GoalSet)
commentId : M:TinyLife.Goals.DistinctGoal.Validate(TinyLife.Goals.GoalSet)
id : Validate(TinyLife.Goals.GoalSet)
parent : TinyLife.Goals.DistinctGoal
langs :
- csharp
- vb
name : Validate(GoalSet)
nameWithType : DistinctGoal.Validate(GoalSet)
fullName : TinyLife.Goals.DistinctGoal.Validate(TinyLife.Goals.GoalSet)
type : Method
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Validate
path : Goals/DistinctGoal.cs
startLine : 37
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : "\nValidates this goal when loading the underlying <xref href=\"TinyLife.Goals.GoalSet\" data-throw-if-not-resolved=\"false\"></xref> from disk\n"
example : [ ]
syntax :
content : public override bool Validate(GoalSet set)
parameters :
- id : set
type : TinyLife.Goals.GoalSet
description : The underlying goal set
return :
type : System.Boolean
description : Whether this goal is considered to be valid
content.vb : Public Overrides Function Validate(set As GoalSet) As Boolean
overridden : TinyLife.Goals.AutoTriggerGoal{System.Object}.Validate(TinyLife.Goals.GoalSet)
overload : TinyLife.Goals.DistinctGoal.Validate*
modifiers.csharp :
- public
- override
modifiers.vb :
- Public
- Overrides
- uid : TinyLife.Goals.DistinctGoal.Trigger(System.Object)
commentId : M:TinyLife.Goals.DistinctGoal.Trigger(System.Object)
id : Trigger(System.Object)
parent : TinyLife.Goals.DistinctGoal
langs :
- csharp
- vb
name : Trigger(Object)
nameWithType : DistinctGoal.Trigger(Object)
fullName : TinyLife.Goals.DistinctGoal.Trigger(System.Object)
type : Method
source :
remote :
path : TinyLife/Goals/DistinctGoal.cs
branch : master
2021-10-18 18:49:09 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
2021-10-14 20:30:40 +02:00
id : Trigger
path : Goals/DistinctGoal.cs
startLine : 47
assemblies :
- Tiny Life
namespace : TinyLife.Goals
summary : "\nCauses this auto-triggered goal to be triggered.\nThis method is only called if the <xref href=\"TinyLife.Goals.AutoGoalInfo.Condition\" data-throw-if-not-resolved=\"false\"></xref> is met.\n"
example : [ ]
syntax :
content : protected override void Trigger(object value)
parameters :
- id : value
type : System.Object
content.vb : Protected Overrides Sub Trigger(value As Object)
overridden : TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(System.Object)
overload : TinyLife.Goals.DistinctGoal.Trigger*
modifiers.csharp :
- protected
- override
modifiers.vb :
- Protected
- Overrides
references :
- uid : TinyLife.Goals.AutoGoalInfo
commentId : T:TinyLife.Goals.AutoGoalInfo
parent : TinyLife.Goals
name : AutoGoalInfo
nameWithType : AutoGoalInfo
fullName : TinyLife.Goals.AutoGoalInfo
- uid : TinyLife.Goals.DistinctGoal.Trigger(System.Object)
commentId : M:TinyLife.Goals.DistinctGoal.Trigger(System.Object)
isExternal : true
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
name : TinyLife.Goals
nameWithType : TinyLife.Goals
fullName : TinyLife.Goals
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
name : Object
nameWithType : Object
fullName : System.Object
- uid : MLEM.Misc.GenericDataHolder
commentId : T:MLEM.Misc.GenericDataHolder
parent : MLEM.Misc
isExternal : true
name : GenericDataHolder
nameWithType : GenericDataHolder
fullName : MLEM.Misc.GenericDataHolder
- uid : TinyLife.Goals.Goal
commentId : T:TinyLife.Goals.Goal
parent : TinyLife.Goals
name : Goal
nameWithType : Goal
fullName : TinyLife.Goals.Goal
- uid : TinyLife.Goals.AutoTriggerGoal{System.Object}
commentId : T:TinyLife.Goals.AutoTriggerGoal{System.Object}
parent : TinyLife.Goals
definition : TinyLife.Goals.AutoTriggerGoal`1
name : AutoTriggerGoal<Object>
nameWithType : AutoTriggerGoal<Object>
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>
nameWithType.vb : AutoTriggerGoal(Of Object)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of System.Object)
name.vb : AutoTriggerGoal(Of Object)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1
name : AutoTriggerGoal
nameWithType : AutoTriggerGoal
fullName : TinyLife.Goals.AutoTriggerGoal
- name : <
nameWithType : <
fullName : <
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : '>'
nameWithType : '>'
fullName : '>'
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1
name : AutoTriggerGoal
nameWithType : AutoTriggerGoal
fullName : TinyLife.Goals.AutoTriggerGoal
- name : '(Of '
nameWithType : '(Of '
fullName : '(Of '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- 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.AutoTriggerGoal{System.Object}.AutoInfo
commentId : F:TinyLife.Goals.AutoTriggerGoal{System.Object}.AutoInfo
parent : TinyLife.Goals.AutoTriggerGoal{System.Object}
definition : TinyLife.Goals.AutoTriggerGoal`1.AutoInfo
name : AutoInfo
nameWithType : AutoTriggerGoal<Object>.AutoInfo
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.AutoInfo
nameWithType.vb : AutoTriggerGoal(Of Object).AutoInfo
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of System.Object).AutoInfo
- uid : TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,System.Object)
commentId : M:TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,System.Object)
parent : TinyLife.Goals.AutoTriggerGoal{System.Object}
definition : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
name : Trigger(GoalTrigger, GoalSet, Object, Object)
nameWithType : AutoTriggerGoal<Object>.Trigger(GoalTrigger, GoalSet, Object, Object)
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Goals.GoalSet, System.Object, System.Object)
nameWithType.vb : AutoTriggerGoal(Of Object).Trigger(GoalTrigger, GoalSet, Object, Object)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Goals.GoalSet, System.Object, System.Object)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal<Object>.Trigger
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal(Of Object).Trigger
fullName : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,System.Object)
commentId : M:TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,System.Object)
parent : TinyLife.Goals.AutoTriggerGoal{System.Object}
definition : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
name : Trigger(GoalTrigger, Person, Object, Object)
nameWithType : AutoTriggerGoal<Object>.Trigger(GoalTrigger, Person, Object, Object)
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Objects.Person, System.Object, System.Object)
nameWithType.vb : AutoTriggerGoal(Of Object).Trigger(GoalTrigger, Person, Object, Object)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Objects.Person, System.Object, System.Object)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal<Object>.Trigger
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Objects.Person
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal(Of Object).Trigger
fullName : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Objects.Person
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.Goal.Name
commentId : F:TinyLife.Goals.Goal.Name
parent : TinyLife.Goals.Goal
name : Name
nameWithType : Goal.Name
fullName : TinyLife.Goals.Goal.Name
- uid : TinyLife.Goals.Goal.Set
commentId : P:TinyLife.Goals.Goal.Set
parent : TinyLife.Goals.Goal
name : Set
nameWithType : Goal.Set
fullName : TinyLife.Goals.Goal.Set
- uid : TinyLife.Goals.Goal.Info
commentId : P:TinyLife.Goals.Goal.Info
parent : TinyLife.Goals.Goal
name : Info
nameWithType : Goal.Info
fullName : TinyLife.Goals.Goal.Info
- 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
name : SetData(String, Object)
nameWithType : GenericDataHolder.SetData(String, Object)
fullName : MLEM.Misc.GenericDataHolder.SetData(System.String, System.Object)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
name : SetData
nameWithType : GenericDataHolder.SetData
fullName : MLEM.Misc.GenericDataHolder.SetData
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.SetData(System.String,System.Object)
name : SetData
nameWithType : GenericDataHolder.SetData
fullName : MLEM.Misc.GenericDataHolder.SetData
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Misc.GenericDataHolder.GetData``1(System.String)
parent : MLEM.Misc.GenericDataHolder
isExternal : true
name : GetData<T>(String)
nameWithType : GenericDataHolder.GetData<T>(String)
fullName : MLEM.Misc.GenericDataHolder.GetData<T>(System.String)
nameWithType.vb : GenericDataHolder.GetData(Of T)(String)
fullName.vb : MLEM.Misc.GenericDataHolder.GetData(Of T)(System.String)
name.vb : GetData(Of T)(String)
spec.csharp :
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
name : GetData<T>
nameWithType : GenericDataHolder.GetData<T>
fullName : MLEM.Misc.GenericDataHolder.GetData<T>
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.GetData``1(System.String)
name : GetData(Of T)
nameWithType : GenericDataHolder.GetData(Of T)
fullName : MLEM.Misc.GenericDataHolder.GetData(Of T)
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : MLEM.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
nameWithType : GenericDataHolder.GetDataKeys
fullName : MLEM.Misc.GenericDataHolder.GetDataKeys
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : MLEM.Misc.GenericDataHolder.GetDataKeys
name : GetDataKeys
nameWithType : GenericDataHolder.GetDataKeys
fullName : MLEM.Misc.GenericDataHolder.GetDataKeys
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
name : Equals(Object)
nameWithType : Object.Equals(Object)
fullName : System.Object.Equals(System.Object)
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
name : Equals(Object, Object)
nameWithType : Object.Equals(Object, Object)
fullName : System.Object.Equals(System.Object, System.Object)
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
nameWithType : Object.Equals
fullName : System.Object.Equals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
name : GetHashCode()
nameWithType : Object.GetHashCode()
fullName : System.Object.GetHashCode()
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
nameWithType : Object.GetHashCode
fullName : System.Object.GetHashCode
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
nameWithType : Object.GetHashCode
fullName : System.Object.GetHashCode
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
name : GetType()
nameWithType : Object.GetType()
fullName : System.Object.GetType()
spec.csharp :
- uid : System.Object.GetType
name : GetType
nameWithType : Object.GetType
fullName : System.Object.GetType
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.GetType
name : GetType
nameWithType : Object.GetType
fullName : System.Object.GetType
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
name : MemberwiseClone()
nameWithType : Object.MemberwiseClone()
fullName : System.Object.MemberwiseClone()
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
nameWithType : Object.MemberwiseClone
fullName : System.Object.MemberwiseClone
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
nameWithType : Object.MemberwiseClone
fullName : System.Object.MemberwiseClone
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
name : ReferenceEquals(Object, Object)
nameWithType : Object.ReferenceEquals(Object, Object)
fullName : System.Object.ReferenceEquals(System.Object, System.Object)
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
nameWithType : Object.ReferenceEquals
fullName : System.Object.ReferenceEquals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
nameWithType : Object.ReferenceEquals
fullName : System.Object.ReferenceEquals
isExternal : true
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
name : ToString()
nameWithType : Object.ToString()
fullName : System.Object.ToString()
spec.csharp :
- uid : System.Object.ToString
name : ToString
nameWithType : Object.ToString
fullName : System.Object.ToString
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : System.Object.ToString
name : ToString
nameWithType : Object.ToString
fullName : System.Object.ToString
isExternal : true
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.DistinctGoal.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<DistinctGoal>()
nameWithType : Extensions.JsonCopy<DistinctGoal>()
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.DistinctGoal>()
nameWithType.vb : Extensions.JsonCopy(Of DistinctGoal)()
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.DistinctGoal)()
name.vb : JsonCopy(Of DistinctGoal)()
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1
name : JsonCopy<DistinctGoal>
nameWithType : Extensions.JsonCopy<DistinctGoal>
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.DistinctGoal>
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1
name : JsonCopy(Of DistinctGoal)
nameWithType : Extensions.JsonCopy(Of DistinctGoal)
fullName : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.DistinctGoal)
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : MLEM.Misc.IGenericDataHolder.TinyLife.Utilities.Extensions.GetTimeSpan(System.String)
commentId : M:TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String)
name : GetTimeSpan(String)
nameWithType : Extensions.GetTimeSpan(String)
fullName : TinyLife.Utilities.Extensions.GetTimeSpan(System.String)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.GetTimeSpan(System.String)
name : GetTimeSpan
nameWithType : Extensions.GetTimeSpan
fullName : TinyLife.Utilities.Extensions.GetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.GetTimeSpan(System.String)
name : GetTimeSpan
nameWithType : Extensions.GetTimeSpan
fullName : TinyLife.Utilities.Extensions.GetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : MLEM.Misc.IGenericDataHolder.TinyLife.Utilities.Extensions.SetTimeSpan(System.String,System.TimeSpan)
commentId : M:TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String,System.TimeSpan)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String,System.TimeSpan)
name : SetTimeSpan(String, TimeSpan)
nameWithType : Extensions.SetTimeSpan(String, TimeSpan)
fullName : TinyLife.Utilities.Extensions.SetTimeSpan(System.String, System.TimeSpan)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.SetTimeSpan(System.String,System.TimeSpan)
name : SetTimeSpan
nameWithType : Extensions.SetTimeSpan
fullName : TinyLife.Utilities.Extensions.SetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.TimeSpan
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.SetTimeSpan(System.String,System.TimeSpan)
name : SetTimeSpan
nameWithType : Extensions.SetTimeSpan
fullName : TinyLife.Utilities.Extensions.SetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.TimeSpan
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : System
commentId : N : System
isExternal : true
name : System
nameWithType : System
fullName : System
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
- uid : TinyLife.Goals.AutoTriggerGoal`1
commentId : T:TinyLife.Goals.AutoTriggerGoal`1
name : AutoTriggerGoal<T>
nameWithType : AutoTriggerGoal<T>
fullName : TinyLife.Goals.AutoTriggerGoal<T>
nameWithType.vb : AutoTriggerGoal(Of T)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of T)
name.vb : AutoTriggerGoal(Of T)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1
name : AutoTriggerGoal
nameWithType : AutoTriggerGoal
fullName : TinyLife.Goals.AutoTriggerGoal
- name : <
nameWithType : <
fullName : <
- name : T
nameWithType : T
fullName : T
- name : '>'
nameWithType : '>'
fullName : '>'
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1
name : AutoTriggerGoal
nameWithType : AutoTriggerGoal
fullName : TinyLife.Goals.AutoTriggerGoal
- name : '(Of '
nameWithType : '(Of '
fullName : '(Of '
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.AutoTriggerGoal`1.AutoInfo
commentId : F:TinyLife.Goals.AutoTriggerGoal`1.AutoInfo
name : AutoInfo
nameWithType : AutoTriggerGoal<T>.AutoInfo
fullName : TinyLife.Goals.AutoTriggerGoal<T>.AutoInfo
nameWithType.vb : AutoTriggerGoal(Of T).AutoInfo
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of T).AutoInfo
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
commentId : M:TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
isExternal : true
name : Trigger(GoalTrigger, GoalSet, Object, T)
nameWithType : AutoTriggerGoal<T>.Trigger(GoalTrigger, GoalSet, Object, T)
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Goals.GoalSet, System.Object, T)
nameWithType.vb : AutoTriggerGoal(Of T).Trigger(GoalTrigger, GoalSet, Object, T)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of T).Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Goals.GoalSet, System.Object, T)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal<T>.Trigger
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Goals.GoalSet,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal(Of T).Trigger
fullName : TinyLife.Goals.AutoTriggerGoal(Of T).Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
commentId : M:TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
isExternal : true
name : Trigger(GoalTrigger, Person, Object, T)
nameWithType : AutoTriggerGoal<T>.Trigger(GoalTrigger, Person, Object, T)
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Objects.Person, System.Object, T)
nameWithType.vb : AutoTriggerGoal(Of T).Trigger(GoalTrigger, Person, Object, T)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of T).Trigger(TinyLife.Goals.GoalTrigger, TinyLife.Objects.Person, System.Object, T)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal<T>.Trigger
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Objects.Person
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalTrigger,TinyLife.Objects.Person,System.Object,`0)
name : Trigger
nameWithType : AutoTriggerGoal(Of T).Trigger
fullName : TinyLife.Goals.AutoTriggerGoal(Of T).Trigger
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalTrigger
name : GoalTrigger
nameWithType : GoalTrigger
fullName : TinyLife.Goals.GoalTrigger
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : TinyLife.Objects.Person
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy<T>
nameWithType : Extensions.JsonCopy<T>
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>
- name : (
nameWithType : (
fullName : (
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy(Of T)
nameWithType : Extensions.JsonCopy(Of T)
fullName : TinyLife.Utilities.Extensions.JsonCopy(Of T)
- name : (
nameWithType : (
fullName : (
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String)
commentId : M:TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String)
isExternal : true
name : GetTimeSpan(IGenericDataHolder, String)
nameWithType : Extensions.GetTimeSpan(IGenericDataHolder, String)
fullName : TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder, System.String)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String)
name : GetTimeSpan
nameWithType : Extensions.GetTimeSpan
fullName : TinyLife.Utilities.Extensions.GetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : MLEM.Misc.IGenericDataHolder
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.GetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String)
name : GetTimeSpan
nameWithType : Extensions.GetTimeSpan
fullName : TinyLife.Utilities.Extensions.GetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : MLEM.Misc.IGenericDataHolder
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String,System.TimeSpan)
commentId : M:TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String,System.TimeSpan)
isExternal : true
name : SetTimeSpan(IGenericDataHolder, String, TimeSpan)
nameWithType : Extensions.SetTimeSpan(IGenericDataHolder, String, TimeSpan)
fullName : TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder, System.String, System.TimeSpan)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String,System.TimeSpan)
name : SetTimeSpan
nameWithType : Extensions.SetTimeSpan
fullName : TinyLife.Utilities.Extensions.SetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : MLEM.Misc.IGenericDataHolder
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.TimeSpan
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.SetTimeSpan(MLEM.Misc.IGenericDataHolder,System.String,System.TimeSpan)
name : SetTimeSpan
nameWithType : Extensions.SetTimeSpan
fullName : TinyLife.Utilities.Extensions.SetTimeSpan
- name : (
nameWithType : (
fullName : (
- uid : MLEM.Misc.IGenericDataHolder
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.String
name : String
nameWithType : String
fullName : System.String
isExternal : true
- name : ', '
nameWithType : ', '
fullName : ', '
- uid : System.TimeSpan
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
- uid : TinyLife.Goals.DistinctGoal.#ctor*
commentId : Overload:TinyLife.Goals.DistinctGoal.#ctor
name : DistinctGoal
nameWithType : DistinctGoal.DistinctGoal
fullName : TinyLife.Goals.DistinctGoal.DistinctGoal
- uid : TinyLife.Goals.GoalSet
commentId : T:TinyLife.Goals.GoalSet
parent : TinyLife.Goals
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- uid : TinyLife.Goals.Goal.GetProgress
commentId : M:TinyLife.Goals.Goal.GetProgress
parent : TinyLife.Goals.Goal
name : GetProgress()
nameWithType : Goal.GetProgress()
fullName : TinyLife.Goals.Goal.GetProgress()
spec.csharp :
- uid : TinyLife.Goals.Goal.GetProgress
name : GetProgress
nameWithType : Goal.GetProgress
fullName : TinyLife.Goals.Goal.GetProgress
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.Goal.GetProgress
name : GetProgress
nameWithType : Goal.GetProgress
fullName : TinyLife.Goals.Goal.GetProgress
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.DistinctGoal.GetProgress*
commentId : Overload:TinyLife.Goals.DistinctGoal.GetProgress
name : GetProgress
nameWithType : DistinctGoal.GetProgress
fullName : TinyLife.Goals.DistinctGoal.GetProgress
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
name : Single
nameWithType : Single
fullName : System.Single
- uid : TinyLife.Goals.Goal.Reset
commentId : M:TinyLife.Goals.Goal.Reset
parent : TinyLife.Goals.Goal
name : Reset()
nameWithType : Goal.Reset()
fullName : TinyLife.Goals.Goal.Reset()
spec.csharp :
- uid : TinyLife.Goals.Goal.Reset
name : Reset
nameWithType : Goal.Reset
fullName : TinyLife.Goals.Goal.Reset
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.Goal.Reset
name : Reset
nameWithType : Goal.Reset
fullName : TinyLife.Goals.Goal.Reset
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.DistinctGoal.Reset*
commentId : Overload:TinyLife.Goals.DistinctGoal.Reset
name : Reset
nameWithType : DistinctGoal.Reset
fullName : TinyLife.Goals.DistinctGoal.Reset
- uid : TinyLife.Goals.Goal.GetDisplayedProgress
commentId : M:TinyLife.Goals.Goal.GetDisplayedProgress
parent : TinyLife.Goals.Goal
name : GetDisplayedProgress()
nameWithType : Goal.GetDisplayedProgress()
fullName : TinyLife.Goals.Goal.GetDisplayedProgress()
spec.csharp :
- uid : TinyLife.Goals.Goal.GetDisplayedProgress
name : GetDisplayedProgress
nameWithType : Goal.GetDisplayedProgress
fullName : TinyLife.Goals.Goal.GetDisplayedProgress
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.Goal.GetDisplayedProgress
name : GetDisplayedProgress
nameWithType : Goal.GetDisplayedProgress
fullName : TinyLife.Goals.Goal.GetDisplayedProgress
- name : (
nameWithType : (
fullName : (
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.DistinctGoal.GetDisplayedProgress*
commentId : Overload:TinyLife.Goals.DistinctGoal.GetDisplayedProgress
name : GetDisplayedProgress
nameWithType : DistinctGoal.GetDisplayedProgress
fullName : TinyLife.Goals.DistinctGoal.GetDisplayedProgress
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
name : String
nameWithType : String
fullName : System.String
- uid : TinyLife.Goals.AutoTriggerGoal{System.Object}.Validate(TinyLife.Goals.GoalSet)
commentId : M:TinyLife.Goals.AutoTriggerGoal{System.Object}.Validate(TinyLife.Goals.GoalSet)
parent : TinyLife.Goals.AutoTriggerGoal{System.Object}
definition : TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
name : Validate(GoalSet)
nameWithType : AutoTriggerGoal<Object>.Validate(GoalSet)
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Validate(TinyLife.Goals.GoalSet)
nameWithType.vb : AutoTriggerGoal(Of Object).Validate(GoalSet)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Validate(TinyLife.Goals.GoalSet)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
name : Validate
nameWithType : AutoTriggerGoal<Object>.Validate
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Validate
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
name : Validate
nameWithType : AutoTriggerGoal(Of Object).Validate
fullName : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Validate
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.DistinctGoal.Validate*
commentId : Overload:TinyLife.Goals.DistinctGoal.Validate
name : Validate
nameWithType : DistinctGoal.Validate
fullName : TinyLife.Goals.DistinctGoal.Validate
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
name : Boolean
nameWithType : Boolean
fullName : System.Boolean
- uid : TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
commentId : M:TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
name : Validate(GoalSet)
nameWithType : AutoTriggerGoal<T>.Validate(GoalSet)
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Validate(TinyLife.Goals.GoalSet)
nameWithType.vb : AutoTriggerGoal(Of T).Validate(GoalSet)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of T).Validate(TinyLife.Goals.GoalSet)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
name : Validate
nameWithType : AutoTriggerGoal<T>.Validate
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Validate
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Validate(TinyLife.Goals.GoalSet)
name : Validate
nameWithType : AutoTriggerGoal(Of T).Validate
fullName : TinyLife.Goals.AutoTriggerGoal(Of T).Validate
- name : (
nameWithType : (
fullName : (
- uid : TinyLife.Goals.GoalSet
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(System.Object)
commentId : M:TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(System.Object)
parent : TinyLife.Goals.AutoTriggerGoal{System.Object}
definition : TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
name : Trigger(Object)
nameWithType : AutoTriggerGoal<Object>.Trigger(Object)
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger(System.Object)
nameWithType.vb : AutoTriggerGoal(Of Object).Trigger(Object)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger(System.Object)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
name : Trigger
nameWithType : AutoTriggerGoal<Object>.Trigger
fullName : TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
name : Trigger
nameWithType : AutoTriggerGoal(Of Object).Trigger
fullName : TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger
- name : (
nameWithType : (
fullName : (
- uid : System.Object
name : Object
nameWithType : Object
fullName : System.Object
isExternal : true
- name : )
nameWithType : )
fullName : )
- uid : TinyLife.Goals.DistinctGoal.Trigger*
commentId : Overload:TinyLife.Goals.DistinctGoal.Trigger
name : Trigger
nameWithType : DistinctGoal.Trigger
fullName : TinyLife.Goals.DistinctGoal.Trigger
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
commentId : M:TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
name : Trigger(T)
nameWithType : AutoTriggerGoal<T>.Trigger(T)
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Trigger(T)
nameWithType.vb : AutoTriggerGoal(Of T).Trigger(T)
fullName.vb : TinyLife.Goals.AutoTriggerGoal(Of T).Trigger(T)
spec.csharp :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
name : Trigger
nameWithType : AutoTriggerGoal<T>.Trigger
fullName : TinyLife.Goals.AutoTriggerGoal<T>.Trigger
- name : (
nameWithType : (
fullName : (
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )
spec.vb :
- uid : TinyLife.Goals.AutoTriggerGoal`1.Trigger(`0)
name : Trigger
nameWithType : AutoTriggerGoal(Of T).Trigger
fullName : TinyLife.Goals.AutoTriggerGoal(Of T).Trigger
- name : (
nameWithType : (
fullName : (
- name : T
nameWithType : T
fullName : T
- name : )
nameWithType : )
fullName : )