### 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,System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult}) - TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,TinyLife.Utilities.MigrationResult}) langs: - csharp - vb name: Migration nameWithType: Migration fullName: TinyLife.Utilities.Migration 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 T to update it to the game's current version. Migrations are available for a multitude of object types that inhabit a , or by default. Note that migrations do not have to be registered using when added to a preexisting collection like or , but only when a mod adds a custom set of migrations for a custom object type. example: [] syntax: content: 'public class Migration : 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,System.Func{`0,System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult}) commentId: M:TinyLife.Utilities.Migration`1.#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult}) id: '#ctor(System.String,TinyLife.Utilities.MigrationPhase,System.Func{`0,System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult})' parent: TinyLife.Utilities.Migration`1 langs: - csharp - vb name: Migration(string, MigrationPhase, Func, MigrationResult>) nameWithType: Migration.Migration(string, MigrationPhase, Func, MigrationResult>) fullName: TinyLife.Utilities.Migration.Migration(string, TinyLife.Utilities.MigrationPhase, System.Func, 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, 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 is false. - id: phase type: TinyLife.Utilities.MigrationPhase description: The that this migration should be applied on. Note that some object types only support the phase. - id: apply type: System.Func{{T},System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult} description: A function that applies this migration on an object. The passed JSON extension data is additional data that is loaded from disk, but didn't have an appropriate property or field to store it in. This can be useful for migrating objects whose property or field names changed, at which point relevant entries in the dictionary should be removed as part of this function. content.vb: Public Sub New(name As String, phase As MigrationPhase, apply As Func(Of T, IDictionary(Of String, JToken), MigrationResult)) overload: TinyLife.Utilities.Migration`1.#ctor* nameWithType.vb: Migration(Of T).New(String, MigrationPhase, Func(Of T, IDictionary(Of String, JToken), MigrationResult)) fullName.vb: TinyLife.Utilities.Migration(Of T).New(String, TinyLife.Utilities.MigrationPhase, System.Func(Of T, System.Collections.Generic.IDictionary(Of String, Newtonsoft.Json.Linq.JToken), TinyLife.Utilities.MigrationResult)) name.vb: New(String, MigrationPhase, Func(Of T, IDictionary(Of String, JToken), MigrationResult)) - 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) nameWithType: Migration.Migration(string, MigrationPhase, Func) fullName: TinyLife.Utilities.Migration.Migration(string, TinyLife.Utilities.MigrationPhase, System.Func) 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 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 is false. - id: phase type: TinyLife.Utilities.MigrationPhase description: The that this migration should be applied on. Note that some object types only support the 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) nameWithType: Migration.Migration(string, MigrationPhase, Action) fullName: TinyLife.Utilities.Migration.Migration(string, TinyLife.Utilities.MigrationPhase, System.Action) 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 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 is false. - id: phase type: TinyLife.Utilities.MigrationPhase description: The that this migration should be applied on. Note that some object types only support the phase. - id: apply type: System.Action{{T}} description: A function that applies this migration on an object. When using this constructor, is always returned in this migration's 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(IEnumerable>) nameWithType: Migration.Register(IEnumerable>) fullName: TinyLife.Utilities.Migration.Register(System.Collections.Generic.IEnumerable>) 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(IEnumerable>) nameWithType: Migration.Register(IEnumerable>) fullName: TinyLife.Utilities.Migration.Register(System.Collections.Generic.IEnumerable>) 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) nameWithType: Extensions.JsonCopy>(Migration) fullName: TinyLife.Utilities.Extensions.JsonCopy>(TinyLife.Utilities.Migration) 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) nameWithType: Extensions.JsonCopy(T) fullName: TinyLife.Utilities.Extensions.JsonCopy(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_System_Func__0_System_Collections_Generic_IDictionary_System_String_Newtonsoft_Json_Linq_JToken__TinyLife_Utilities_MigrationResult__ name: Migration nameWithType: Migration.Migration fullName: TinyLife.Utilities.Migration.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: System.Func{{T},System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult} commentId: T:System.Func{`0,System.Collections.Generic.IDictionary{System.String,Newtonsoft.Json.Linq.JToken},TinyLife.Utilities.MigrationResult} parent: System definition: System.Func`3 href: https://learn.microsoft.com/dotnet/api/system.func-3 name: Func, MigrationResult> nameWithType: Func, MigrationResult> fullName: System.Func, TinyLife.Utilities.MigrationResult> nameWithType.vb: Func(Of T, IDictionary(Of String, JToken), MigrationResult) fullName.vb: System.Func(Of T, System.Collections.Generic.IDictionary(Of String, Newtonsoft.Json.Linq.JToken), TinyLife.Utilities.MigrationResult) name.vb: Func(Of T, IDictionary(Of String, JToken), MigrationResult) spec.csharp: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: < - name: T - name: ',' - name: " " - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: < - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: Newtonsoft.Json.Linq.JToken name: JToken isExternal: true - name: '>' - name: ',' - name: " " - uid: TinyLife.Utilities.MigrationResult name: MigrationResult href: TinyLife.Utilities.MigrationResult.html - name: '>' spec.vb: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: ( - name: Of - name: " " - name: T - name: ',' - name: " " - uid: System.Collections.Generic.IDictionary`2 name: IDictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2 - name: ( - name: Of - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: Newtonsoft.Json.Linq.JToken name: JToken isExternal: true - name: ) - name: ',' - name: " " - uid: TinyLife.Utilities.MigrationResult name: MigrationResult href: TinyLife.Utilities.MigrationResult.html - name: ) - uid: System.Func`3 commentId: T:System.Func`3 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 name: Func nameWithType: Func fullName: System.Func nameWithType.vb: Func(Of T1, T2, TResult) fullName.vb: System.Func(Of T1, T2, TResult) name.vb: Func(Of T1, T2, TResult) spec.csharp: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: < - name: T1 - name: ',' - name: " " - name: T2 - name: ',' - name: " " - name: TResult - name: '>' spec.vb: - uid: System.Func`3 name: Func isExternal: true href: https://learn.microsoft.com/dotnet/api/system.func-3 - name: ( - name: Of - name: " " - name: T1 - name: ',' - name: " " - name: T2 - name: ',' - name: " " - name: TResult - name: ) - 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 nameWithType: Func fullName: System.Func 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 nameWithType: Func fullName: System.Func 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 nameWithType: Action fullName: System.Action 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 nameWithType: Action fullName: System.Action 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: )