mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-05 12:29:09 +01:00
1655 lines
51 KiB
YAML
1655 lines
51 KiB
YAML
### 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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: DistinctGoal
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 10
|
|
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.Data.Json.JsonTypeSafeGenericDataHolder
|
|
- 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.GoalSet,System.Object,System.Object,TinyLife.Goals.GoalTrigger[])
|
|
- TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,System.Object,TinyLife.Goals.GoalTrigger[])
|
|
- TinyLife.Goals.Goal.Name
|
|
- TinyLife.Goals.Goal.Set
|
|
- TinyLife.Goals.Goal.Info
|
|
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
|
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
|
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
- System.Object.Equals(System.Object)
|
|
- System.Object.Equals(System.Object,System.Object)
|
|
- System.Object.GetHashCode
|
|
- System.Object.GetType
|
|
- System.Object.MemberwiseClone
|
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
|
- System.Object.ToString
|
|
extensionMethods:
|
|
- TinyLife.Goals.DistinctGoal.TinyLife.Utilities.Extensions.JsonCopy``1
|
|
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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: .ctor
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 17
|
|
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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: GetProgress
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 23
|
|
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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Reset
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 28
|
|
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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: GetDisplayedProgress
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 33
|
|
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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Validate
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 38
|
|
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: main
|
|
repo: https://git.ellpeck.de/Ellpeck/TinyLife
|
|
id: Trigger
|
|
path: ../TinyLife/Goals/DistinctGoal.cs
|
|
startLine: 48
|
|
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.Data.Json.JsonTypeSafeGenericDataHolder
|
|
commentId: T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
|
parent: MLEM.Data.Json
|
|
isExternal: true
|
|
name: JsonTypeSafeGenericDataHolder
|
|
nameWithType: JsonTypeSafeGenericDataHolder
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
|
- uid: 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.GoalSet,System.Object,System.Object,TinyLife.Goals.GoalTrigger[])
|
|
commentId: M:TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(TinyLife.Goals.GoalSet,System.Object,System.Object,TinyLife.Goals.GoalTrigger[])
|
|
parent: TinyLife.Goals.AutoTriggerGoal{System.Object}
|
|
definition: TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger(GoalSet, Object, Object, GoalTrigger[])
|
|
nameWithType: AutoTriggerGoal<Object>.Trigger(GoalSet, Object, Object, GoalTrigger[])
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger(TinyLife.Goals.GoalSet, System.Object, System.Object, TinyLife.Goals.GoalTrigger[])
|
|
nameWithType.vb: AutoTriggerGoal(Of Object).Trigger(GoalSet, Object, Object, GoalTrigger())
|
|
fullName.vb: TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger(TinyLife.Goals.GoalSet, System.Object, System.Object, TinyLife.Goals.GoalTrigger())
|
|
name.vb: Trigger(GoalSet, Object, Object, GoalTrigger())
|
|
spec.csharp:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal<Object>.Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal(Of Object).Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: ()
|
|
nameWithType: ()
|
|
fullName: ()
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,System.Object,TinyLife.Goals.GoalTrigger[])
|
|
commentId: M:TinyLife.Goals.AutoTriggerGoal{System.Object}.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,System.Object,TinyLife.Goals.GoalTrigger[])
|
|
parent: TinyLife.Goals.AutoTriggerGoal{System.Object}
|
|
definition: TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger(IEnumerable<GoalSet>, Object, Object, GoalTrigger[])
|
|
nameWithType: AutoTriggerGoal<Object>.Trigger(IEnumerable<GoalSet>, Object, Object, GoalTrigger[])
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger(System.Collections.Generic.IEnumerable<TinyLife.Goals.GoalSet>, System.Object, System.Object, TinyLife.Goals.GoalTrigger[])
|
|
nameWithType.vb: AutoTriggerGoal(Of Object).Trigger(IEnumerable(Of GoalSet), Object, Object, GoalTrigger())
|
|
fullName.vb: TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger(System.Collections.Generic.IEnumerable(Of TinyLife.Goals.GoalSet), System.Object, System.Object, TinyLife.Goals.GoalTrigger())
|
|
name.vb: Trigger(IEnumerable(Of GoalSet), Object, Object, GoalTrigger())
|
|
spec.csharp:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal<Object>.Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<System.Object>.Trigger
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- uid: TinyLife.Goals.GoalSet
|
|
name: GoalSet
|
|
nameWithType: GoalSet
|
|
fullName: TinyLife.Goals.GoalSet
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal(Of Object).Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal(Of System.Object).Trigger
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- uid: TinyLife.Goals.GoalSet
|
|
name: GoalSet
|
|
nameWithType: GoalSet
|
|
fullName: TinyLife.Goals.GoalSet
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: ()
|
|
nameWithType: ()
|
|
fullName: ()
|
|
- 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.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
|
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
|
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
|
isExternal: true
|
|
name: SetData(String, Object)
|
|
nameWithType: JsonTypeSafeGenericDataHolder.SetData(String, Object)
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String, System.Object)
|
|
spec.csharp:
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
|
name: SetData
|
|
nameWithType: JsonTypeSafeGenericDataHolder.SetData
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.String
|
|
name: String
|
|
nameWithType: String
|
|
fullName: System.String
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
|
|
name: SetData
|
|
nameWithType: JsonTypeSafeGenericDataHolder.SetData
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.String
|
|
name: String
|
|
nameWithType: String
|
|
fullName: System.String
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
|
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
|
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
|
isExternal: true
|
|
name: GetData<T>(String)
|
|
nameWithType: JsonTypeSafeGenericDataHolder.GetData<T>(String)
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(System.String)
|
|
nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
|
|
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(System.String)
|
|
name.vb: GetData(Of T)(String)
|
|
spec.csharp:
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
|
name: GetData<T>
|
|
nameWithType: JsonTypeSafeGenericDataHolder.GetData<T>
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.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.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
|
|
name: GetData(Of T)
|
|
nameWithType: JsonTypeSafeGenericDataHolder.GetData(Of T)
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.String
|
|
name: String
|
|
nameWithType: String
|
|
fullName: System.String
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
|
|
isExternal: true
|
|
name: GetDataKeys()
|
|
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys()
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
|
|
spec.csharp:
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
name: GetDataKeys
|
|
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
name: GetDataKeys
|
|
nameWithType: JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.Equals(System.Object)
|
|
commentId: M:System.Object.Equals(System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: Equals(Object)
|
|
nameWithType: Object.Equals(Object)
|
|
fullName: System.Object.Equals(System.Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: Equals(Object, Object)
|
|
nameWithType: Object.Equals(Object, Object)
|
|
fullName: System.Object.Equals(System.Object, System.Object)
|
|
spec.csharp:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.Equals(System.Object,System.Object)
|
|
name: Equals
|
|
nameWithType: Object.Equals
|
|
fullName: System.Object.Equals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.GetHashCode
|
|
commentId: M:System.Object.GetHashCode
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: GetHashCode()
|
|
nameWithType: Object.GetHashCode()
|
|
fullName: System.Object.GetHashCode()
|
|
spec.csharp:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
nameWithType: Object.GetHashCode
|
|
fullName: System.Object.GetHashCode
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.GetHashCode
|
|
name: GetHashCode
|
|
nameWithType: Object.GetHashCode
|
|
fullName: System.Object.GetHashCode
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.GetType
|
|
commentId: M:System.Object.GetType
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: GetType()
|
|
nameWithType: Object.GetType()
|
|
fullName: System.Object.GetType()
|
|
spec.csharp:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
nameWithType: Object.GetType
|
|
fullName: System.Object.GetType
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.GetType
|
|
name: GetType
|
|
nameWithType: Object.GetType
|
|
fullName: System.Object.GetType
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.MemberwiseClone
|
|
commentId: M:System.Object.MemberwiseClone
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: MemberwiseClone()
|
|
nameWithType: Object.MemberwiseClone()
|
|
fullName: System.Object.MemberwiseClone()
|
|
spec.csharp:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
nameWithType: Object.MemberwiseClone
|
|
fullName: System.Object.MemberwiseClone
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.MemberwiseClone
|
|
name: MemberwiseClone
|
|
nameWithType: Object.MemberwiseClone
|
|
fullName: System.Object.MemberwiseClone
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: ReferenceEquals(Object, Object)
|
|
nameWithType: Object.ReferenceEquals(Object, Object)
|
|
fullName: System.Object.ReferenceEquals(System.Object, System.Object)
|
|
spec.csharp:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
nameWithType: Object.ReferenceEquals
|
|
fullName: System.Object.ReferenceEquals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
|
name: ReferenceEquals
|
|
nameWithType: Object.ReferenceEquals
|
|
fullName: System.Object.ReferenceEquals
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: ', '
|
|
nameWithType: ', '
|
|
fullName: ', '
|
|
- uid: System.Object
|
|
name: Object
|
|
nameWithType: Object
|
|
fullName: System.Object
|
|
isExternal: true
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: System.Object.ToString
|
|
commentId: M:System.Object.ToString
|
|
parent: System.Object
|
|
isExternal: true
|
|
name: ToString()
|
|
nameWithType: Object.ToString()
|
|
fullName: System.Object.ToString()
|
|
spec.csharp:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
nameWithType: Object.ToString
|
|
fullName: System.Object.ToString
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: System.Object.ToString
|
|
name: ToString
|
|
nameWithType: Object.ToString
|
|
fullName: System.Object.ToString
|
|
isExternal: true
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: TinyLife.Goals.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: System
|
|
commentId: N:System
|
|
isExternal: true
|
|
name: System
|
|
nameWithType: System
|
|
fullName: System
|
|
- uid: MLEM.Data.Json
|
|
commentId: N:MLEM.Data.Json
|
|
isExternal: true
|
|
name: MLEM.Data.Json
|
|
nameWithType: MLEM.Data.Json
|
|
fullName: MLEM.Data.Json
|
|
- uid: 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: MLEM.Misc
|
|
commentId: N:MLEM.Misc
|
|
isExternal: true
|
|
name: MLEM.Misc
|
|
nameWithType: MLEM.Misc
|
|
fullName: MLEM.Misc
|
|
- 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.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
commentId: M:TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
isExternal: true
|
|
name: Trigger(GoalSet, Object, T, GoalTrigger[])
|
|
nameWithType: AutoTriggerGoal<T>.Trigger(GoalSet, Object, T, GoalTrigger[])
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<T>.Trigger(TinyLife.Goals.GoalSet, System.Object, T, TinyLife.Goals.GoalTrigger[])
|
|
nameWithType.vb: AutoTriggerGoal(Of T).Trigger(GoalSet, Object, T, GoalTrigger())
|
|
fullName.vb: TinyLife.Goals.AutoTriggerGoal(Of T).Trigger(TinyLife.Goals.GoalSet, System.Object, T, TinyLife.Goals.GoalTrigger())
|
|
name.vb: Trigger(GoalSet, Object, T, GoalTrigger())
|
|
spec.csharp:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal<T>.Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<T>.Trigger
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(TinyLife.Goals.GoalSet,System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal(Of T).Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal(Of T).Trigger
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: ()
|
|
nameWithType: ()
|
|
fullName: ()
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
commentId: M:TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
isExternal: true
|
|
name: Trigger(IEnumerable<GoalSet>, Object, T, GoalTrigger[])
|
|
nameWithType: AutoTriggerGoal<T>.Trigger(IEnumerable<GoalSet>, Object, T, GoalTrigger[])
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<T>.Trigger(System.Collections.Generic.IEnumerable<TinyLife.Goals.GoalSet>, System.Object, T, TinyLife.Goals.GoalTrigger[])
|
|
nameWithType.vb: AutoTriggerGoal(Of T).Trigger(IEnumerable(Of GoalSet), Object, T, GoalTrigger())
|
|
fullName.vb: TinyLife.Goals.AutoTriggerGoal(Of T).Trigger(System.Collections.Generic.IEnumerable(Of TinyLife.Goals.GoalSet), System.Object, T, TinyLife.Goals.GoalTrigger())
|
|
name.vb: Trigger(IEnumerable(Of GoalSet), Object, T, GoalTrigger())
|
|
spec.csharp:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal<T>.Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal<T>.Trigger
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: <
|
|
nameWithType: <
|
|
fullName: <
|
|
- uid: TinyLife.Goals.GoalSet
|
|
name: GoalSet
|
|
nameWithType: GoalSet
|
|
fullName: TinyLife.Goals.GoalSet
|
|
- name: '>'
|
|
nameWithType: '>'
|
|
fullName: '>'
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: '[]'
|
|
nameWithType: '[]'
|
|
fullName: '[]'
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
spec.vb:
|
|
- uid: TinyLife.Goals.AutoTriggerGoal`1.Trigger(System.Collections.Generic.IEnumerable{TinyLife.Goals.GoalSet},System.Object,`0,TinyLife.Goals.GoalTrigger[])
|
|
name: Trigger
|
|
nameWithType: AutoTriggerGoal(Of T).Trigger
|
|
fullName: TinyLife.Goals.AutoTriggerGoal(Of T).Trigger
|
|
- name: (
|
|
nameWithType: (
|
|
fullName: (
|
|
- uid: System.Collections.Generic.IEnumerable`1
|
|
name: IEnumerable
|
|
nameWithType: IEnumerable
|
|
fullName: System.Collections.Generic.IEnumerable
|
|
isExternal: true
|
|
- name: '(Of '
|
|
nameWithType: '(Of '
|
|
fullName: '(Of '
|
|
- uid: TinyLife.Goals.GoalSet
|
|
name: GoalSet
|
|
nameWithType: GoalSet
|
|
fullName: TinyLife.Goals.GoalSet
|
|
- name: )
|
|
nameWithType: )
|
|
fullName: )
|
|
- 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.GoalTrigger
|
|
name: GoalTrigger
|
|
nameWithType: GoalTrigger
|
|
fullName: TinyLife.Goals.GoalTrigger
|
|
- name: ()
|
|
nameWithType: ()
|
|
fullName: ()
|
|
- 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
|
|
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: )
|