2023-07-20 14:31:53 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Actions.Behaviors.PhoneBehavior
commentId : T:TinyLife.Actions.Behaviors.PhoneBehavior
id : PhoneBehavior
parent : TinyLife.Actions.Behaviors
children :
- TinyLife.Actions.Behaviors.PhoneBehavior.#ctor(TinyLife.Actions.Action,System.Boolean,System.String)
- TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask(TinyLife.Actions.Action)
- TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions
- TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject
- TinyLife.Actions.Behaviors.PhoneBehavior.Initialize
- TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted(TinyLife.Actions.CompletionType)
- TinyLife.Actions.Behaviors.PhoneBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
langs :
- csharp
- vb
name : PhoneBehavior
nameWithType : PhoneBehavior
fullName : TinyLife.Actions.Behaviors.PhoneBehavior
type : Class
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : PhoneBehavior
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 11
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nAn action behavior that involves either a landline phone (which is expected to have the <xref href=\"TinyLife.Objects.ObjectCategory.LandlinePhone\" data-throw-if-not-resolved=\"false\"></xref>), or a Tiny taking out their own mobile phone and using it (which happens if the <xref href=\"TinyLife.Objects.ObjectCategory.Self\" data-throw-if-not-resolved=\"false\"></xref> category is attached to the action). An action that uses the phone behavior can have both object categories attached for multi-use.\n"
example : [ ]
syntax :
content: 'public class PhoneBehavior : ActionBehavior'
content.vb : Public Class PhoneBehavior Inherits ActionBehavior
inheritance :
- System.Object
- TinyLife.Actions.Behaviors.ActionBehavior
inheritedMembers :
- TinyLife.Actions.Behaviors.ActionBehavior.Action
- TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
- TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
- TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
- TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
- 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.Actions.Behaviors.PhoneBehavior.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.#ctor(TinyLife.Actions.Action,System.Boolean,System.String)
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.#ctor(TinyLife.Actions.Action,System.Boolean,System.String)
id : '#ctor(TinyLife.Actions.Action,System.Boolean,System.String)'
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : PhoneBehavior(Action, bool, string)
nameWithType : PhoneBehavior.PhoneBehavior(Action, bool, string)
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.PhoneBehavior(TinyLife.Actions.Action, bool, string)
type : Constructor
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : .ctor
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 20
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
example : [ ]
syntax :
content : public PhoneBehavior(Action action, bool sitDownMobile = false, string displayContent = null)
parameters :
- id : action
type : TinyLife.Actions.Action
- id : sitDownMobile
type : System.Boolean
- id : displayContent
type : System.String
content.vb : Public Sub New(action As Action, sitDownMobile As Boolean = False, displayContent As String = Nothing)
overload : TinyLife.Actions.Behaviors.PhoneBehavior.#ctor*
nameWithType.vb : PhoneBehavior.New(Action, Boolean, String)
fullName.vb : TinyLife.Actions.Behaviors.PhoneBehavior.New(TinyLife.Actions.Action, Boolean, String)
name.vb : New(Action, Boolean, String)
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions
id : CreateFirstActions
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : CreateFirstActions()
nameWithType : PhoneBehavior.CreateFirstActions()
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions()
type : Method
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : CreateFirstActions
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 26
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nCreates a set of actions that should be executed before the main <xref href=\"TinyLife.Actions.Behaviors.ActionBehavior.Action\" data-throw-if-not-resolved=\"false\"></xref> starts.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.BehaviorAction.CreateFirstActions\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public override IEnumerable<Action> CreateFirstActions()
return :
type : System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
description : ''
content.vb : Public Overrides Function CreateFirstActions() As IEnumerable(Of Action)
overridden : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
overload : TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions*
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject
id : GetIconObject
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : GetIconObject()
nameWithType : PhoneBehavior.GetIconObject()
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject()
type : Method
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : GetIconObject
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 39
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nReturns this action behavior's icon object.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.Action.GetIconObject\" data-throw-if-not-resolved=\"false\"></xref>.\nBy default, this method returns the underlying <xref href=\"TinyLife.Actions.ActionInfo\" data-throw-if-not-resolved=\"false\"></xref>'s <xref href=\"TinyLife.Actions.ActionInfo.GetActionObject%60%601(System.Boolean)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public override MapObject GetIconObject()
return :
type : TinyLife.Objects.MapObject
description : The icon object
content.vb : Public Overrides Function GetIconObject() As MapObject
overridden : TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
overload : TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject*
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.Initialize
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.Initialize
id : Initialize
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : Initialize()
nameWithType : PhoneBehavior.Initialize()
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.Initialize()
type : Method
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : Initialize
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 44
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nInitializes this action behavior.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.MultiAction.AndThenInitialize\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public override void Initialize()
content.vb : Public Overrides Sub Initialize()
overridden : TinyLife.Actions.Behaviors.ActionBehavior.Initialize
overload : TinyLife.Actions.Behaviors.PhoneBehavior.Initialize*
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
id : Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : Update(GameTime, TimeSpan, float)
nameWithType : PhoneBehavior.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
type : Method
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : Update
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 65
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nUpdates this action behavior every update frame.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.MultiAction.AndThenUpdate(Microsoft.Xna.Framework.GameTime%2cSystem.TimeSpan%2cSystem.Single)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public override void Update(GameTime time, TimeSpan passedInGame, float speedMultiplier)
parameters :
- id : time
type : Microsoft.Xna.Framework.GameTime
description : The game time
- id : passedInGame
type : System.TimeSpan
description : The amount of time that has passed since the last update frame
- id : speedMultiplier
type : System.Single
description : The game speed multiplier, which represents how fast things should happen, which is usually determined by <xref href="TinyLife.GameImpl.Speed" data-throw-if-not-resolved="false"></xref>
content.vb : Public Overrides Sub Update(time As GameTime, passedInGame As TimeSpan, speedMultiplier As Single)
overridden : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
overload : TinyLife.Actions.Behaviors.PhoneBehavior.Update*
nameWithType.vb : PhoneBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Behaviors.PhoneBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask(TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask(TinyLife.Actions.Action)
id : CanMultitask(TinyLife.Actions.Action)
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : CanMultitask(Action)
nameWithType : PhoneBehavior.CanMultitask(Action)
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask(TinyLife.Actions.Action)
type : Method
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : CanMultitask
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 73
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nReturn true on this method if this action can be multi-tasked along with the passed <xref href=\"TinyLife.Actions.Behaviors.ActionBehavior.Action\" data-throw-if-not-resolved=\"false\"></xref>.\nA multi-tasking is an action that is currently active along with another action.\nBy default, multi-tasking is disallowed for any action.\n"
example : [ ]
syntax :
content : public override bool CanMultitask(Action other)
parameters :
- id : other
type : TinyLife.Actions.Action
description : The action to multi-task with
return :
type : System.Boolean
description : Whether this action can be multi-tasked
content.vb : Public Overrides Function CanMultitask(other As Action) As Boolean
overridden : TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
overload : TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask*
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted(TinyLife.Actions.CompletionType)
id : OnCompleted(TinyLife.Actions.CompletionType)
parent : TinyLife.Actions.Behaviors.PhoneBehavior
langs :
- csharp
- vb
name : OnCompleted(CompletionType)
nameWithType : PhoneBehavior.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted(TinyLife.Actions.CompletionType)
type : Method
source :
remote :
path : TinyLife/Actions/Behaviors/PhoneBehavior.cs
2023-10-11 16:05:32 +02:00
branch : main
2023-07-20 14:31:53 +02:00
repo : https://git.ellpeck.de/Ellpeck/TinyLife
id : OnCompleted
path : ../TinyLife/Actions/Behaviors/PhoneBehavior.cs
startLine : 78
assemblies :
- Tiny Life
namespace : TinyLife.Actions.Behaviors
summary : "\nCauses any activities that this action behavior executes to be marked as completed.\nThis method is automatically called when using <xref href=\"TinyLife.Actions.BehaviorAction\" data-throw-if-not-resolved=\"false\"></xref> in <xref href=\"TinyLife.Actions.Action.OnCompleted(TinyLife.Actions.CompletionType)\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example : [ ]
syntax :
content : public override void OnCompleted(CompletionType completion)
parameters :
- id : completion
type : TinyLife.Actions.CompletionType
description : ''
content.vb : Public Overrides Sub OnCompleted(completion As CompletionType)
overridden : TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
overload : TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted*
references :
- uid : TinyLife.Objects.ObjectCategory.LandlinePhone
commentId : F:TinyLife.Objects.ObjectCategory.LandlinePhone
name : LandlinePhone
nameWithType : ObjectCategory.LandlinePhone
fullName : TinyLife.Objects.ObjectCategory.LandlinePhone
- uid : TinyLife.Objects.ObjectCategory.Self
commentId : F:TinyLife.Objects.ObjectCategory.Self
name : Self
nameWithType : ObjectCategory.Self
fullName : TinyLife.Objects.ObjectCategory.Self
- uid : TinyLife.Actions.Behaviors
commentId : N : TinyLife.Actions.Behaviors
name : TinyLife.Actions.Behaviors
nameWithType : TinyLife.Actions.Behaviors
fullName : TinyLife.Actions.Behaviors
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
- name : .
- uid : TinyLife.Actions.Behaviors
name : Behaviors
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
- name : .
- uid : TinyLife.Actions.Behaviors
name : Behaviors
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
- uid : TinyLife.Actions.Behaviors.ActionBehavior
commentId : T:TinyLife.Actions.Behaviors.ActionBehavior
parent : TinyLife.Actions.Behaviors
name : ActionBehavior
nameWithType : ActionBehavior
fullName : TinyLife.Actions.Behaviors.ActionBehavior
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Action
commentId : F:TinyLife.Actions.Behaviors.ActionBehavior.Action
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : Action
nameWithType : ActionBehavior.Action
fullName : TinyLife.Actions.Behaviors.ActionBehavior.Action
- uid : TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
commentId : P:TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : FullyInProgress
nameWithType : ActionBehavior.FullyInProgress
fullName : TinyLife.Actions.Behaviors.ActionBehavior.FullyInProgress
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : CreateLastActions()
nameWithType : ActionBehavior.CreateLastActions()
fullName : TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions()
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
name : CreateLastActions
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateLastActions
name : CreateLastActions
- name : (
- name : )
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : GetNextAction(CompletionType)
nameWithType : ActionBehavior.GetNextAction(CompletionType)
fullName : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name : GetNextAction
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetNextAction(TinyLife.Actions.CompletionType)
name : GetNextAction
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
parent : TinyLife.Actions.Behaviors.ActionBehavior
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.type
name : CreateDefaultInstance(Type, Action)
nameWithType : ActionBehavior.CreateDefaultInstance(Type, Action)
fullName : TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type, TinyLife.Actions.Action)
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
name : CreateDefaultInstance
- name : (
- uid : System.Type
name : Type
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.type
- name : ','
- name : " "
- uid : TinyLife.Actions.Action
name : Action
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateDefaultInstance(System.Type,TinyLife.Actions.Action)
name : CreateDefaultInstance
- name : (
- uid : System.Type
name : Type
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.type
- name : ','
- name : " "
- uid : TinyLife.Actions.Action
name : Action
- name : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name : Equals(object)
nameWithType : object.Equals(object)
fullName : object.Equals(object)
nameWithType.vb : Object.Equals(Object)
fullName.vb : Object.Equals(Object)
name.vb : Equals(Object)
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name : (
- uid : System.Object
name : object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name : (
- uid : System.Object
name : Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name : Equals(object, object)
nameWithType : object.Equals(object, object)
fullName : object.Equals(object, object)
nameWithType.vb : Object.Equals(Object, Object)
fullName.vb : Object.Equals(Object, Object)
name.vb : Equals(Object, Object)
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name : (
- uid : System.Object
name : object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
- uid : System.Object
name : object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name : (
- uid : System.Object
name : Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
- uid : System.Object
name : Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name : GetHashCode()
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
name : GetType()
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name : MemberwiseClone()
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name : ReferenceEquals(object, object)
nameWithType : object.ReferenceEquals(object, object)
fullName : object.ReferenceEquals(object, object)
nameWithType.vb : Object.ReferenceEquals(Object, Object)
fullName.vb : Object.ReferenceEquals(Object, Object)
name.vb : ReferenceEquals(Object, Object)
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name : (
- uid : System.Object
name : object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
- uid : System.Object
name : object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name : (
- uid : System.Object
name : Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
- uid : System.Object
name : Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
name : ToString()
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
- name : (
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.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<PhoneBehavior>(PhoneBehavior)
nameWithType : Extensions.JsonCopy<PhoneBehavior>(PhoneBehavior)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.Behaviors.PhoneBehavior>(TinyLife.Actions.Behaviors.PhoneBehavior)
nameWithType.vb : Extensions.JsonCopy(Of PhoneBehavior)(PhoneBehavior)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.Behaviors.PhoneBehavior)(TinyLife.Actions.Behaviors.PhoneBehavior)
name.vb : JsonCopy(Of PhoneBehavior)(PhoneBehavior)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.PhoneBehavior)
name : JsonCopy
- name : <
- uid : TinyLife.Actions.Behaviors.PhoneBehavior
name : PhoneBehavior
- name : '>'
- name : (
- uid : TinyLife.Actions.Behaviors.PhoneBehavior
name : PhoneBehavior
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.Behaviors.PhoneBehavior)
name : JsonCopy
- name : (
- name : Of
- name : " "
- uid : TinyLife.Actions.Behaviors.PhoneBehavior
name : PhoneBehavior
- name : )
- name : (
- uid : TinyLife.Actions.Behaviors.PhoneBehavior
name : PhoneBehavior
- name : )
- uid : System
commentId : N : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
name : System
nameWithType : System
fullName : System
- 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
- name : <
- name : T
- name : '>'
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Utilities
name : Utilities
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.#ctor*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.#ctor
name : PhoneBehavior
nameWithType : PhoneBehavior.PhoneBehavior
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.PhoneBehavior
nameWithType.vb : PhoneBehavior.New
fullName.vb : TinyLife.Actions.Behaviors.PhoneBehavior.New
name.vb : New
- uid : TinyLife.Actions.Action
commentId : T:TinyLife.Actions.Action
parent : TinyLife.Actions
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean
- uid : System.String
commentId : T:System.String
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.string
name : string
nameWithType : string
fullName : string
nameWithType.vb : String
fullName.vb : String
name.vb : String
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Actions
name : Actions
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : CreateFirstActions()
nameWithType : ActionBehavior.CreateFirstActions()
fullName : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions()
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
name : CreateFirstActions
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CreateFirstActions
name : CreateFirstActions
- name : (
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions
name : CreateFirstActions
nameWithType : PhoneBehavior.CreateFirstActions
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.CreateFirstActions
- uid : System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
commentId : T:System.Collections.Generic.IEnumerable{TinyLife.Actions.Action}
parent : System.Collections.Generic
definition : System.Collections.Generic.IEnumerable`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name : IEnumerable<Action>
nameWithType : IEnumerable<Action>
fullName : System.Collections.Generic.IEnumerable<TinyLife.Actions.Action>
nameWithType.vb : IEnumerable(Of Action)
fullName.vb : System.Collections.Generic.IEnumerable(Of TinyLife.Actions.Action)
name.vb : IEnumerable(Of Action)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : <
- uid : TinyLife.Actions.Action
name : Action
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
- uid : TinyLife.Actions.Action
name : Action
- name : )
- uid : System.Collections.Generic.IEnumerable`1
commentId : T:System.Collections.Generic.IEnumerable`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name : IEnumerable<T>
nameWithType : IEnumerable<T>
fullName : System.Collections.Generic.IEnumerable<T>
nameWithType.vb : IEnumerable(Of T)
fullName.vb : System.Collections.Generic.IEnumerable(Of T)
name.vb : IEnumerable(Of T)
spec.csharp :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Collections.Generic.IEnumerable`1
name : IEnumerable
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name : (
- name : Of
- name : " "
- name : T
- name : )
- uid : System.Collections.Generic
commentId : N : System.Collections.Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
name : System.Collections.Generic
nameWithType : System.Collections.Generic
fullName : System.Collections.Generic
spec.csharp :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb :
- uid : System
name : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system
- name : .
- uid : System.Collections
name : Collections
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections
- name : .
- uid : System.Collections.Generic
name : Generic
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : GetIconObject()
nameWithType : ActionBehavior.GetIconObject()
fullName : TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject()
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
name : GetIconObject
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.GetIconObject
name : GetIconObject
- name : (
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject
name : GetIconObject
nameWithType : PhoneBehavior.GetIconObject
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.GetIconObject
- uid : TinyLife.Objects.MapObject
commentId : T:TinyLife.Objects.MapObject
parent : TinyLife.Objects
name : MapObject
nameWithType : MapObject
fullName : TinyLife.Objects.MapObject
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
spec.csharp :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
spec.vb :
- uid : TinyLife
name : TinyLife
- name : .
- uid : TinyLife.Objects
name : Objects
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Initialize
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.Initialize
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : Initialize()
nameWithType : ActionBehavior.Initialize()
fullName : TinyLife.Actions.Behaviors.ActionBehavior.Initialize()
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Initialize
name : Initialize
- name : (
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Initialize
name : Initialize
- name : (
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.Initialize*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.Initialize
name : Initialize
nameWithType : PhoneBehavior.Initialize
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.Initialize
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
parent : TinyLife.Actions.Behaviors.ActionBehavior
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
name : Update(GameTime, TimeSpan, float)
nameWithType : ActionBehavior.Update(GameTime, TimeSpan, float)
fullName : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, float)
nameWithType.vb : ActionBehavior.Update(GameTime, TimeSpan, Single)
fullName.vb : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime, System.TimeSpan, Single)
name.vb : Update(GameTime, TimeSpan, Single)
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name : Update
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : float
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.Update(Microsoft.Xna.Framework.GameTime,System.TimeSpan,System.Single)
name : Update
- name : (
- uid : Microsoft.Xna.Framework.GameTime
name : GameTime
isExternal : true
- name : ','
- name : " "
- uid : System.TimeSpan
name : TimeSpan
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
- name : ','
- name : " "
- uid : System.Single
name : Single
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.Update*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.Update
name : Update
nameWithType : PhoneBehavior.Update
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.Update
- uid : Microsoft.Xna.Framework.GameTime
commentId : T:Microsoft.Xna.Framework.GameTime
parent : Microsoft.Xna.Framework
isExternal : true
name : GameTime
nameWithType : GameTime
fullName : Microsoft.Xna.Framework.GameTime
- uid : System.TimeSpan
commentId : T:System.TimeSpan
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.timespan
name : TimeSpan
nameWithType : TimeSpan
fullName : System.TimeSpan
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single
- uid : Microsoft.Xna.Framework
commentId : N : Microsoft.Xna.Framework
isExternal : true
name : Microsoft.Xna.Framework
nameWithType : Microsoft.Xna.Framework
fullName : Microsoft.Xna.Framework
spec.csharp :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
spec.vb :
- uid : Microsoft
name : Microsoft
isExternal : true
- name : .
- uid : Microsoft.Xna
name : Xna
isExternal : true
- name : .
- uid : Microsoft.Xna.Framework
name : Framework
isExternal : true
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : CanMultitask(Action)
nameWithType : ActionBehavior.CanMultitask(Action)
fullName : TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
name : CanMultitask
- name : (
- uid : TinyLife.Actions.Action
name : Action
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.CanMultitask(TinyLife.Actions.Action)
name : CanMultitask
- name : (
- uid : TinyLife.Actions.Action
name : Action
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask
name : CanMultitask
nameWithType : PhoneBehavior.CanMultitask
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.CanMultitask
- uid : TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
parent : TinyLife.Actions.Behaviors.ActionBehavior
name : OnCompleted(CompletionType)
nameWithType : ActionBehavior.OnCompleted(CompletionType)
fullName : TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
spec.vb :
- uid : TinyLife.Actions.Behaviors.ActionBehavior.OnCompleted(TinyLife.Actions.CompletionType)
name : OnCompleted
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
- name : )
- uid : TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted*
commentId : Overload:TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted
name : OnCompleted
nameWithType : PhoneBehavior.OnCompleted
fullName : TinyLife.Actions.Behaviors.PhoneBehavior.OnCompleted
- uid : TinyLife.Actions.CompletionType
commentId : T:TinyLife.Actions.CompletionType
parent : TinyLife.Actions
name : CompletionType
nameWithType : CompletionType
fullName : TinyLife.Actions.CompletionType