2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
commentId : T:TinyLife.Actions.CompletionType
id : CompletionType
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions
children :
2021-10-14 20:30:40 +02:00
- TinyLife.Actions.CompletionType.Active
- TinyLife.Actions.CompletionType.Canceled
- TinyLife.Actions.CompletionType.Completed
- TinyLife.Actions.CompletionType.Failed
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
2021-10-14 20:30:40 +02:00
name : CompletionType
nameWithType : CompletionType
fullName : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
type : Enum
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2024-01-07 16:53:47 +01:00
summary : An enumeration that represents the various states that an <xref href="TinyLife.Actions.Action" data-throw-if-not-resolved="false"></xref> can be in.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public enum CompletionType
content.vb : Public Enum CompletionType
extensionMethods :
2022-12-20 13:25:03 +01:00
- TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyActive(System.Func{TinyLife.Actions.CompletionType})
- TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType)
- TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyInactive(System.Func{TinyLife.Actions.CompletionType})
- TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType)
2023-03-30 18:07:55 +02:00
- TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.JsonCopy``1
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType.Active
commentId : F:TinyLife.Actions.CompletionType.Active
2021-08-04 06:51:12 +02:00
id : Active
2021-10-14 20:30:40 +02:00
parent : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Active
2021-10-14 20:30:40 +02:00
nameWithType : CompletionType.Active
fullName : TinyLife.Actions.CompletionType.Active
2021-08-04 06:51:12 +02:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2024-01-07 16:53:47 +01:00
summary : A completion type that represents an active action.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : Active = 0
return :
2021-10-14 20:30:40 +02:00
type : TinyLife.Actions.CompletionType
- uid : TinyLife.Actions.CompletionType.Completed
commentId : F:TinyLife.Actions.CompletionType.Completed
2021-08-04 06:51:12 +02:00
id : Completed
2021-10-14 20:30:40 +02:00
parent : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Completed
2021-10-14 20:30:40 +02:00
nameWithType : CompletionType.Completed
fullName : TinyLife.Actions.CompletionType.Completed
2021-08-04 06:51:12 +02:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2024-01-07 16:53:47 +01:00
summary : A completion type that represents a completed action.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : Completed = 1
return :
2021-10-14 20:30:40 +02:00
type : TinyLife.Actions.CompletionType
- uid : TinyLife.Actions.CompletionType.Failed
commentId : F:TinyLife.Actions.CompletionType.Failed
2021-08-04 06:51:12 +02:00
id : Failed
2021-10-14 20:30:40 +02:00
parent : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Failed
2021-10-14 20:30:40 +02:00
nameWithType : CompletionType.Failed
fullName : TinyLife.Actions.CompletionType.Failed
2021-08-04 06:51:12 +02:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2024-01-07 16:53:47 +01:00
summary : >-
A completion type that represents an action that has failed to complete.
2024-06-09 17:05:30 +02:00
Actions that fail additionally cause an <xref href="TinyLife.Actions.Emote" data-throw-if-not-resolved="false"></xref> from the <xref href="TinyLife.Actions.EmoteCategory.Unable" data-throw-if-not-resolved="false"></xref> category to be displayed on a <xref href="TinyLife.Objects.PersonLike" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : Failed = 2
return :
2021-10-14 20:30:40 +02:00
type : TinyLife.Actions.CompletionType
- uid : TinyLife.Actions.CompletionType.Canceled
commentId : F:TinyLife.Actions.CompletionType.Canceled
2021-08-04 06:51:12 +02:00
id : Canceled
2021-10-14 20:30:40 +02:00
parent : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : Canceled
2021-10-14 20:30:40 +02:00
nameWithType : CompletionType.Canceled
fullName : TinyLife.Actions.CompletionType.Canceled
2021-08-04 06:51:12 +02:00
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Actions
2024-01-07 16:53:47 +01:00
summary : >-
A completion type that represents an action that has been canceled either internally or by an outside source.
If an action should cancel due to a missing object or any other kind of unexpected state, <xref href="TinyLife.Actions.CompletionType.Failed" data-throw-if-not-resolved="false"></xref> should be used.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : Canceled = 3
return :
2021-10-14 20:30:40 +02:00
type : TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
references :
- uid : TinyLife.Actions.Action
commentId : T:TinyLife.Actions.Action
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Action.html
2021-08-04 06:51:12 +02:00
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Actions
name : Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.html
2021-08-04 06:51:12 +02:00
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Actions
name : Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.html
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyActive(System.Func{TinyLife.Actions.CompletionType})
commentId : M:TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2021-08-04 06:51:12 +02:00
parent : TinyLife.Utilities.Extensions
2022-12-20 13:25:03 +01:00
definition : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2023-03-30 18:07:55 +02:00
name : AnyActive(CompletionType, Func<CompletionType>)
nameWithType : Extensions.AnyActive(CompletionType, Func<CompletionType>)
fullName : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType, System.Func<TinyLife.Actions.CompletionType>)
nameWithType.vb : Extensions.AnyActive(CompletionType, Func(Of CompletionType))
fullName.vb : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType, System.Func(Of TinyLife.Actions.CompletionType))
name.vb : AnyActive(CompletionType, Func(Of CompletionType))
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2022-12-20 13:25:03 +01:00
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2021-08-04 06:51:12 +02:00
- name : <
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : '>'
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2022-12-20 13:25:03 +01:00
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
- name : )
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Utilities.Extensions
2022-12-20 13:25:03 +01:00
definition : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2023-03-30 18:07:55 +02:00
name : AnyActive(CompletionType, CompletionType)
nameWithType : Extensions.AnyActive(CompletionType, CompletionType)
fullName : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType, TinyLife.Actions.CompletionType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2022-12-20 13:25:03 +01:00
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2022-12-20 13:25:03 +01:00
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
- uid : TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyInactive(System.Func{TinyLife.Actions.CompletionType})
commentId : M:TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2023-03-30 18:07:55 +02:00
name : AnyInactive(CompletionType, Func<CompletionType>)
nameWithType : Extensions.AnyInactive(CompletionType, Func<CompletionType>)
fullName : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType, System.Func<TinyLife.Actions.CompletionType>)
nameWithType.vb : Extensions.AnyInactive(CompletionType, Func(Of CompletionType))
fullName.vb : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType, System.Func(Of TinyLife.Actions.CompletionType))
name.vb : AnyInactive(CompletionType, Func(Of CompletionType))
2022-12-20 13:25:03 +01:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2022-12-20 13:25:03 +01:00
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2021-08-04 06:51:12 +02:00
- name : <
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : '>'
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2022-12-20 13:25:03 +01:00
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
- name : )
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2023-03-30 18:07:55 +02:00
name : AnyInactive(CompletionType, CompletionType)
nameWithType : Extensions.AnyInactive(CompletionType, CompletionType)
fullName : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType, TinyLife.Actions.CompletionType)
2022-12-20 13:25:03 +01:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2022-12-20 13:25:03 +01:00
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2022-12-20 13:25:03 +01:00
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.CompletionType.TinyLife.Utilities.Extensions.JsonCopy``1
2021-08-04 06:51:12 +02:00
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name : JsonCopy<CompletionType>(CompletionType)
nameWithType : Extensions.JsonCopy<CompletionType>(CompletionType)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Actions.CompletionType>(TinyLife.Actions.CompletionType)
nameWithType.vb : Extensions.JsonCopy(Of CompletionType)(CompletionType)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Actions.CompletionType)(TinyLife.Actions.CompletionType)
name.vb : JsonCopy(Of CompletionType)(CompletionType)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.CompletionType)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Actions.CompletionType)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
commentId : M:TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2021-08-04 06:51:12 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2022-12-20 13:25:03 +01:00
name : AnyActive(CompletionType, Func<CompletionType>)
nameWithType : Extensions.AnyActive(CompletionType, Func<CompletionType>)
fullName : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType, System.Func<TinyLife.Actions.CompletionType>)
nameWithType.vb : Extensions.AnyActive(CompletionType, Func(Of CompletionType))
fullName.vb : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType, System.Func(Of TinyLife.Actions.CompletionType))
name.vb : AnyActive(CompletionType, Func(Of CompletionType))
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2021-08-04 06:51:12 +02:00
- name : <
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : '>'
- name : )
spec.vb :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
- name : )
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2023-03-30 18:07:55 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
name : AnyActive(CompletionType, CompletionType)
nameWithType : Extensions.AnyActive(CompletionType, CompletionType)
fullName : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType, TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.AnyActive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
name : AnyActive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyActive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
commentId : M:TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
2021-08-04 06:51:12 +02:00
isExternal : true
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2022-12-20 13:25:03 +01:00
name : AnyInactive(CompletionType, Func<CompletionType>)
nameWithType : Extensions.AnyInactive(CompletionType, Func<CompletionType>)
fullName : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType, System.Func<TinyLife.Actions.CompletionType>)
nameWithType.vb : Extensions.AnyInactive(CompletionType, Func(Of CompletionType))
fullName.vb : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType, System.Func(Of TinyLife.Actions.CompletionType))
name.vb : AnyInactive(CompletionType, Func(Of CompletionType))
2021-08-04 06:51:12 +02:00
spec.csharp :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
2021-08-04 06:51:12 +02:00
- name : <
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : '>'
- name : )
spec.vb :
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,System.Func{TinyLife.Actions.CompletionType})
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_System_Func_TinyLife_Actions_CompletionType__
2021-08-04 06:51:12 +02:00
- name : (
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Func`1
name : Func
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.func-1
- name : (
- name : Of
- name : " "
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-08-04 06:51:12 +02:00
- name : )
- name : )
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
commentId : M:TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
name : AnyInactive(CompletionType, CompletionType)
nameWithType : Extensions.AnyInactive(CompletionType, CompletionType)
fullName : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType, TinyLife.Actions.CompletionType)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.AnyInactive(TinyLife.Actions.CompletionType,TinyLife.Actions.CompletionType)
name : AnyInactive
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_AnyInactive_TinyLife_Actions_CompletionType_TinyLife_Actions_CompletionType_
2022-12-20 13:25:03 +01:00
- name : (
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2023-03-30 18:07:55 +02:00
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType
name : CompletionType
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2022-12-20 13:25:03 +01:00
- name : )
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name : JsonCopy<T>(T)
nameWithType : Extensions.JsonCopy<T>(T)
fullName : TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb : Extensions.JsonCopy(Of T)(T)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb : JsonCopy(Of T)(T)
spec.csharp :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
- name : (
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Actions.CompletionType
commentId : T:TinyLife.Actions.CompletionType
2021-08-04 06:51:12 +02:00
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html
2021-10-14 20:30:40 +02:00
name : CompletionType
nameWithType : CompletionType
fullName : TinyLife.Actions.CompletionType
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.Emote
commentId : T:TinyLife.Actions.Emote
parent : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.Emote.html
2022-12-20 13:25:03 +01:00
name : Emote
nameWithType : Emote
fullName : TinyLife.Actions.Emote
- uid : TinyLife.Actions.EmoteCategory.Unable
commentId : F:TinyLife.Actions.EmoteCategory.Unable
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.EmoteCategory.html#TinyLife_Actions_EmoteCategory_Unable
2023-03-30 18:07:55 +02:00
name : Unable
nameWithType : EmoteCategory.Unable
fullName : TinyLife.Actions.EmoteCategory.Unable
2024-06-09 17:05:30 +02:00
- uid : TinyLife.Objects.PersonLike
commentId : T:TinyLife.Objects.PersonLike
2022-12-20 13:25:03 +01:00
parent : TinyLife.Objects
2024-06-09 17:05:30 +02:00
href : TinyLife.Objects.PersonLike.html
name : PersonLike
nameWithType : PersonLike
fullName : TinyLife.Objects.PersonLike
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-12-20 13:25:03 +01:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Actions.CompletionType.Failed
commentId : F:TinyLife.Actions.CompletionType.Failed
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.CompletionType.html#TinyLife_Actions_CompletionType_Failed
2023-03-30 18:07:55 +02:00
name : Failed
nameWithType : CompletionType.Failed
fullName : TinyLife.Actions.CompletionType.Failed