TinyLifeWeb/docs/api/TinyLife.Utilities.Migration-1.yml
2024-10-17 17:28:12 +02:00

952 lines
36 KiB
YAML
Generated

### YamlMime:ManagedReference
items:
- uid: TinyLife.Utilities.Migration`1
commentId: T:TinyLife.Utilities.Migration`1
id: Migration`1
parent: TinyLife.Utilities
children:
- TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Action{`0})
- TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,TinyLife.Utilities.MigrationResult})
- TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,TinyLife.Utilities.Migration.ApplyDelegate)
langs:
- csharp
- vb
name: Migration<T>
nameWithType: Migration<T>
fullName: TinyLife.Utilities.Migration<T>
type: Class
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: >-
A generic migration represents an action or set of actions that need to be done to an object of type <code class="typeparamref">T</code> to update it to the game's current version.
Migrations are available for a multitude of object types that inhabit a <xref href="TinyLife.World.Map" data-throw-if-not-resolved="false"></xref>, <xref href="TinyLife.World.ExportedHousehold" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.World.ExportedLot" data-throw-if-not-resolved="false"></xref> by default.
Note that migrations do not have to be registered using <xref href="TinyLife.Utilities.Migration.Register%60%601(System.Collections.Generic.IEnumerable%7bTinyLife.Utilities.Migration%7b%60%600%7d%7d)" data-throw-if-not-resolved="false"></xref> when added to a preexisting collection like <xref href="TinyLife.Actions.ActionType.TypeSettings.Migrations" data-throw-if-not-resolved="false"></xref> or <xref href="TinyLife.Actions.Action.Migrations" data-throw-if-not-resolved="false"></xref>, but only when a mod adds a custom set of migrations for a custom object type.
example: []
syntax:
content: 'public class Migration<T> : Migration'
typeParameters:
- id: T
content.vb: Public Class Migration(Of T) Inherits Migration
inheritance:
- System.Object
- TinyLife.Utilities.Migration
inheritedMembers:
- TinyLife.Utilities.Migration.Migrations
- TinyLife.Utilities.Migration.Name
- TinyLife.Utilities.Migration.Phase
- TinyLife.Utilities.Migration.Apply
- TinyLife.Utilities.Migration.Priority
- TinyLife.Utilities.Migration.Silent
- TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{{T}}})
- 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.Utilities.Migration`1.TinyLife.Utilities.Extensions.JsonCopy``1
nameWithType.vb: Migration(Of T)
fullName.vb: TinyLife.Utilities.Migration(Of T)
name.vb: Migration(Of T)
- uid: TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,TinyLife.Utilities.Migration.ApplyDelegate)
commentId: M:TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,TinyLife.Utilities.Migration.ApplyDelegate)
id: '#ctor(System.String,TinyLife.Utilities.MigrationPhase,TinyLife.Utilities.Migration.ApplyDelegate)'
parent: TinyLife.Utilities.Migration`1
langs:
- csharp
- vb
name: Migration(string, MigrationPhase, ApplyDelegate)
nameWithType: Migration<T>.Migration(string, MigrationPhase, Migration.ApplyDelegate)
fullName: TinyLife.Utilities.Migration<T>.Migration(string, TinyLife.Utilities.MigrationPhase, TinyLife.Utilities.Migration.ApplyDelegate)
type: Constructor
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: Creates a new migration with the given settings.
example: []
syntax:
content: public Migration(string name, MigrationPhase phase, Migration.ApplyDelegate apply)
parameters:
- id: name
type: System.String
description: The name of this migration, which is stored in the save file or exported content once this migration has been applied if <xref href="TinyLife.Utilities.Migration.Silent" data-throw-if-not-resolved="false"></xref> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
- id: phase
type: TinyLife.Utilities.MigrationPhase
description: The <xref href="TinyLife.Utilities.MigrationPhase" data-throw-if-not-resolved="false"></xref> that this migration should be applied on. Note that some object types only support the <xref href="TinyLife.Utilities.MigrationPhase.Single" data-throw-if-not-resolved="false"></xref> phase.
- id: apply
type: TinyLife.Utilities.Migration.ApplyDelegate
description: A function that applies this migration on an object.
content.vb: Public Sub New(name As String, phase As MigrationPhase, apply As Migration.ApplyDelegate)
overload: TinyLife.Utilities.Migration`1.#ctor*
nameWithType.vb: Migration(Of T).New(String, MigrationPhase, Migration.ApplyDelegate)
fullName.vb: TinyLife.Utilities.Migration(Of T).New(String, TinyLife.Utilities.MigrationPhase, TinyLife.Utilities.Migration.ApplyDelegate)
name.vb: New(String, MigrationPhase, ApplyDelegate)
- uid: TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,TinyLife.Utilities.MigrationResult})
commentId: M:TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,TinyLife.Utilities.MigrationResult})
id: '#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,TinyLife.Utilities.MigrationResult})'
parent: TinyLife.Utilities.Migration`1
langs:
- csharp
- vb
name: Migration(string, MigrationPhase, Func<T, MigrationResult>)
nameWithType: Migration<T>.Migration(string, MigrationPhase, Func<T, MigrationResult>)
fullName: TinyLife.Utilities.Migration<T>.Migration(string, TinyLife.Utilities.MigrationPhase, System.Func<T, TinyLife.Utilities.MigrationResult>)
type: Constructor
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: Creates a new migration with the given settings.
example: []
syntax:
content: public Migration(string name, MigrationPhase phase, Func<T, MigrationResult> apply)
parameters:
- id: name
type: System.String
description: The name of this migration, which is stored in the save file or exported content once this migration has been applied if <xref href="TinyLife.Utilities.Migration.Silent" data-throw-if-not-resolved="false"></xref> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
- id: phase
type: TinyLife.Utilities.MigrationPhase
description: The <xref href="TinyLife.Utilities.MigrationPhase" data-throw-if-not-resolved="false"></xref> that this migration should be applied on. Note that some object types only support the <xref href="TinyLife.Utilities.MigrationPhase.Single" data-throw-if-not-resolved="false"></xref> phase.
- id: apply
type: System.Func{{T},TinyLife.Utilities.MigrationResult}
description: A function that applies this migration on an object.
content.vb: Public Sub New(name As String, phase As MigrationPhase, apply As Func(Of T, MigrationResult))
overload: TinyLife.Utilities.Migration`1.#ctor*
nameWithType.vb: Migration(Of T).New(String, MigrationPhase, Func(Of T, MigrationResult))
fullName.vb: TinyLife.Utilities.Migration(Of T).New(String, TinyLife.Utilities.MigrationPhase, System.Func(Of T, TinyLife.Utilities.MigrationResult))
name.vb: New(String, MigrationPhase, Func(Of T, MigrationResult))
- uid: TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Action{`0})
commentId: M:TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Action{`0})
id: '#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Action{`0})'
parent: TinyLife.Utilities.Migration`1
langs:
- csharp
- vb
name: Migration(string, MigrationPhase, Action<T>)
nameWithType: Migration<T>.Migration(string, MigrationPhase, Action<T>)
fullName: TinyLife.Utilities.Migration<T>.Migration(string, TinyLife.Utilities.MigrationPhase, System.Action<T>)
type: Constructor
assemblies:
- Tiny Life
namespace: TinyLife.Utilities
summary: Creates a new migration with the given settings.
example: []
syntax:
content: public Migration(string name, MigrationPhase phase, Action<T> apply)
parameters:
- id: name
type: System.String
description: The name of this migration, which is stored in the save file or exported content once this migration has been applied if <xref href="TinyLife.Utilities.Migration.Silent" data-throw-if-not-resolved="false"></xref> is <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
- id: phase
type: TinyLife.Utilities.MigrationPhase
description: The <xref href="TinyLife.Utilities.MigrationPhase" data-throw-if-not-resolved="false"></xref> that this migration should be applied on. Note that some object types only support the <xref href="TinyLife.Utilities.MigrationPhase.Single" data-throw-if-not-resolved="false"></xref> phase.
- id: apply
type: System.Action{{T}}
description: A function that applies this migration on an object. When using this constructor, <xref href="TinyLife.Utilities.MigrationResult.Success" data-throw-if-not-resolved="false"></xref> is always returned in this migration's <xref href="TinyLife.Utilities.Migration.Apply" data-throw-if-not-resolved="false"></xref> function.
content.vb: Public Sub New(name As String, phase As MigrationPhase, apply As Action(Of T))
overload: TinyLife.Utilities.Migration`1.#ctor*
nameWithType.vb: Migration(Of T).New(String, MigrationPhase, Action(Of T))
fullName.vb: TinyLife.Utilities.Migration(Of T).New(String, TinyLife.Utilities.MigrationPhase, System.Action(Of T))
name.vb: New(String, MigrationPhase, Action(Of T))
references:
- uid: TinyLife.World.Map
commentId: T:TinyLife.World.Map
parent: TinyLife.World
href: TinyLife.World.Map.html
name: Map
nameWithType: Map
fullName: TinyLife.World.Map
- uid: TinyLife.World.ExportedHousehold
commentId: T:TinyLife.World.ExportedHousehold
parent: TinyLife.World
href: TinyLife.World.ExportedHousehold.html
name: ExportedHousehold
nameWithType: ExportedHousehold
fullName: TinyLife.World.ExportedHousehold
- uid: TinyLife.World.ExportedLot
commentId: T:TinyLife.World.ExportedLot
parent: TinyLife.World
href: TinyLife.World.ExportedLot.html
name: ExportedLot
nameWithType: ExportedLot
fullName: TinyLife.World.ExportedLot
- uid: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
commentId: M:TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
isExternal: true
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Register__1_System_Collections_Generic_IEnumerable_TinyLife_Utilities_Migration___0___
name: Register<T>(IEnumerable<Migration<T>>)
nameWithType: Migration.Register<T>(IEnumerable<Migration<T>>)
fullName: TinyLife.Utilities.Migration.Register<T>(System.Collections.Generic.IEnumerable<TinyLife.Utilities.Migration<T>>)
nameWithType.vb: Migration.Register(Of T)(IEnumerable(Of Migration(Of T)))
fullName.vb: TinyLife.Utilities.Migration.Register(Of T)(System.Collections.Generic.IEnumerable(Of TinyLife.Utilities.Migration(Of T)))
name.vb: Register(Of T)(IEnumerable(Of Migration(Of T)))
spec.csharp:
- uid: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
name: Register
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Register__1_System_Collections_Generic_IEnumerable_TinyLife_Utilities_Migration___0___
- name: <
- name: T
- name: '>'
- name: (
- 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.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: <
- name: T
- name: '>'
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
name: Register
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Register__1_System_Collections_Generic_IEnumerable_TinyLife_Utilities_Migration___0___
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- 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.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- name: )
- uid: TinyLife.Actions.ActionType.TypeSettings.Migrations
commentId: F:TinyLife.Actions.ActionType.TypeSettings.Migrations
href: TinyLife.Actions.ActionType.TypeSettings.html#TinyLife_Actions_ActionType_TypeSettings_Migrations
name: Migrations
nameWithType: ActionType.TypeSettings.Migrations
fullName: TinyLife.Actions.ActionType.TypeSettings.Migrations
- uid: TinyLife.Actions.Action.Migrations
commentId: F:TinyLife.Actions.Action.Migrations
parent: TinyLife.Actions.Action
href: TinyLife.Actions.Action.html#TinyLife_Actions_Action_Migrations
name: Migrations
nameWithType: Action.Migrations
fullName: TinyLife.Actions.Action.Migrations
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
href: TinyLife.html
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Utilities
name: Utilities
href: TinyLife.Utilities.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Utilities
name: Utilities
href: TinyLife.Utilities.html
- 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.Utilities.Migration
commentId: T:TinyLife.Utilities.Migration
parent: TinyLife.Utilities
href: TinyLife.Utilities.Migration.html
name: Migration
nameWithType: Migration
fullName: TinyLife.Utilities.Migration
- uid: TinyLife.Utilities.Migration.Migrations
commentId: F:TinyLife.Utilities.Migration.Migrations
parent: TinyLife.Utilities.Migration
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Migrations
name: Migrations
nameWithType: Migration.Migrations
fullName: TinyLife.Utilities.Migration.Migrations
- uid: TinyLife.Utilities.Migration.Name
commentId: F:TinyLife.Utilities.Migration.Name
parent: TinyLife.Utilities.Migration
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Name
name: Name
nameWithType: Migration.Name
fullName: TinyLife.Utilities.Migration.Name
- uid: TinyLife.Utilities.Migration.Phase
commentId: F:TinyLife.Utilities.Migration.Phase
parent: TinyLife.Utilities.Migration
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Phase
name: Phase
nameWithType: Migration.Phase
fullName: TinyLife.Utilities.Migration.Phase
- uid: TinyLife.Utilities.Migration.Apply
commentId: F:TinyLife.Utilities.Migration.Apply
parent: TinyLife.Utilities.Migration
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Apply
name: Apply
nameWithType: Migration.Apply
fullName: TinyLife.Utilities.Migration.Apply
- uid: TinyLife.Utilities.Migration.Priority
commentId: P:TinyLife.Utilities.Migration.Priority
parent: TinyLife.Utilities.Migration
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Priority
name: Priority
nameWithType: Migration.Priority
fullName: TinyLife.Utilities.Migration.Priority
- uid: TinyLife.Utilities.Migration.Silent
commentId: P:TinyLife.Utilities.Migration.Silent
parent: TinyLife.Utilities.Migration
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Silent
name: Silent
nameWithType: Migration.Silent
fullName: TinyLife.Utilities.Migration.Silent
- uid: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{{T}}})
commentId: M:TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
parent: TinyLife.Utilities.Migration
definition: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Register__1_System_Collections_Generic_IEnumerable_TinyLife_Utilities_Migration___0___
name: Register<T>(IEnumerable<Migration<T>>)
nameWithType: Migration.Register<T>(IEnumerable<Migration<T>>)
fullName: TinyLife.Utilities.Migration.Register<T>(System.Collections.Generic.IEnumerable<TinyLife.Utilities.Migration<T>>)
nameWithType.vb: Migration.Register(Of T)(IEnumerable(Of Migration(Of T)))
fullName.vb: TinyLife.Utilities.Migration.Register(Of T)(System.Collections.Generic.IEnumerable(Of TinyLife.Utilities.Migration(Of T)))
name.vb: Register(Of T)(IEnumerable(Of Migration(Of T)))
spec.csharp:
- uid: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
name: Register
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Register__1_System_Collections_Generic_IEnumerable_TinyLife_Utilities_Migration___0___
- name: <
- name: T
- name: '>'
- name: (
- 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.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: <
- name: T
- name: '>'
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.Utilities.Migration.Register``1(System.Collections.Generic.IEnumerable{TinyLife.Utilities.Migration{``0}})
name: Register
href: TinyLife.Utilities.Migration.html#TinyLife_Utilities_Migration_Register__1_System_Collections_Generic_IEnumerable_TinyLife_Utilities_Migration___0___
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- 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.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- 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.Utilities.Migration`1.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
name: JsonCopy<Migration<T>>(Migration<T>)
nameWithType: Extensions.JsonCopy<Migration<T>>(Migration<T>)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Utilities.Migration<T>>(TinyLife.Utilities.Migration<T>)
nameWithType.vb: Extensions.JsonCopy(Of Migration(Of T))(Migration(Of T))
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Utilities.Migration(Of T))(TinyLife.Utilities.Migration(Of T))
name.vb: JsonCopy(Of Migration(Of T))(Migration(Of T))
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Utilities.Migration{`0})
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: <
- name: T
- name: '>'
- name: '>'
- name: (
- uid: TinyLife.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: <
- name: T
- name: '>'
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Utilities.Migration{`0})
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- name: (
- uid: TinyLife.Utilities.Migration`1
name: Migration
href: TinyLife.Utilities.Migration-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: )
- uid: TinyLife.World
commentId: N:TinyLife.World
href: TinyLife.html
name: TinyLife.World
nameWithType: TinyLife.World
fullName: TinyLife.World
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.World
name: World
href: TinyLife.World.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.World
name: World
href: TinyLife.World.html
- uid: TinyLife.Actions.Action
commentId: T:TinyLife.Actions.Action
parent: TinyLife.Actions
href: TinyLife.Actions.Action.html
name: Action
nameWithType: Action
fullName: TinyLife.Actions.Action
- 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)
href: TinyLife.Utilities.Extensions.html#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
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- name: T
- name: '>'
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
href: TinyLife.Utilities.Extensions.html
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Actions
commentId: N:TinyLife.Actions
href: TinyLife.html
name: TinyLife.Actions
nameWithType: TinyLife.Actions
fullName: TinyLife.Actions
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Actions
name: Actions
href: TinyLife.Actions.html
- uid: TinyLife.Utilities.MigrationPhase
commentId: T:TinyLife.Utilities.MigrationPhase
parent: TinyLife.Utilities
href: TinyLife.Utilities.MigrationPhase.html
name: MigrationPhase
nameWithType: MigrationPhase
fullName: TinyLife.Utilities.MigrationPhase
- uid: TinyLife.Utilities.MigrationPhase.Single
commentId: F:TinyLife.Utilities.MigrationPhase.Single
href: TinyLife.Utilities.MigrationPhase.html#TinyLife_Utilities_MigrationPhase_Single
name: Single
nameWithType: MigrationPhase.Single
fullName: TinyLife.Utilities.MigrationPhase.Single
- uid: TinyLife.Utilities.Migration`1.#ctor*
commentId: Overload:TinyLife.Utilities.Migration`1.#ctor
href: TinyLife.Utilities.Migration-1.html#TinyLife_Utilities_Migration_1__ctor_System_String_TinyLife_Utilities_MigrationPhase_TinyLife_Utilities_Migration_ApplyDelegate_
name: Migration
nameWithType: Migration<T>.Migration
fullName: TinyLife.Utilities.Migration<T>.Migration
nameWithType.vb: Migration(Of T).New
fullName.vb: TinyLife.Utilities.Migration(Of T).New
name.vb: New
- 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.Utilities.Migration.ApplyDelegate
commentId: T:TinyLife.Utilities.Migration.ApplyDelegate
parent: TinyLife.Utilities
href: TinyLife.Utilities.Migration.html
name: Migration.ApplyDelegate
nameWithType: Migration.ApplyDelegate
fullName: TinyLife.Utilities.Migration.ApplyDelegate
spec.csharp:
- uid: TinyLife.Utilities.Migration
name: Migration
href: TinyLife.Utilities.Migration.html
- name: .
- uid: TinyLife.Utilities.Migration.ApplyDelegate
name: ApplyDelegate
href: TinyLife.Utilities.Migration.ApplyDelegate.html
spec.vb:
- uid: TinyLife.Utilities.Migration
name: Migration
href: TinyLife.Utilities.Migration.html
- name: .
- uid: TinyLife.Utilities.Migration.ApplyDelegate
name: ApplyDelegate
href: TinyLife.Utilities.Migration.ApplyDelegate.html
- uid: System.Func{{T},TinyLife.Utilities.MigrationResult}
commentId: T:System.Func{`0,TinyLife.Utilities.MigrationResult}
parent: System
definition: System.Func`2
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func<T, MigrationResult>
nameWithType: Func<T, MigrationResult>
fullName: System.Func<T, TinyLife.Utilities.MigrationResult>
nameWithType.vb: Func(Of T, MigrationResult)
fullName.vb: System.Func(Of T, TinyLife.Utilities.MigrationResult)
name.vb: Func(Of T, MigrationResult)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- name: T
- name: ','
- name: " "
- uid: TinyLife.Utilities.MigrationResult
name: MigrationResult
href: TinyLife.Utilities.MigrationResult.html
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- name: T
- name: ','
- name: " "
- uid: TinyLife.Utilities.MigrationResult
name: MigrationResult
href: TinyLife.Utilities.MigrationResult.html
- name: )
- uid: System.Func`2
commentId: T:System.Func`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
name: Func<T, TResult>
nameWithType: Func<T, TResult>
fullName: System.Func<T, TResult>
nameWithType.vb: Func(Of T, TResult)
fullName.vb: System.Func(Of T, TResult)
name.vb: Func(Of T, TResult)
spec.csharp:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: <
- name: T
- name: ','
- name: " "
- name: TResult
- name: '>'
spec.vb:
- uid: System.Func`2
name: Func
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.func-2
- name: (
- name: Of
- name: " "
- name: T
- name: ','
- name: " "
- name: TResult
- name: )
- uid: TinyLife.Utilities.MigrationResult.Success
commentId: F:TinyLife.Utilities.MigrationResult.Success
href: TinyLife.Utilities.MigrationResult.html#TinyLife_Utilities_MigrationResult_Success
name: Success
nameWithType: MigrationResult.Success
fullName: TinyLife.Utilities.MigrationResult.Success
- uid: System.Action{{T}}
commentId: T:System.Action{`0}
parent: System
definition: System.Action`1
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<T>
nameWithType: Action<T>
fullName: System.Action<T>
nameWithType.vb: Action(Of T)
fullName.vb: System.Action(Of T)
name.vb: Action(Of T)
spec.csharp:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Action`1
commentId: T:System.Action`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
name: Action<T>
nameWithType: Action<T>
fullName: System.Action<T>
nameWithType.vb: Action(Of T)
fullName.vb: System.Action(Of T)
name.vb: Action(Of T)
spec.csharp:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Action`1
name: Action
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.action-1
- name: (
- name: Of
- name: " "
- name: T
- name: )