2022-01-08 12:41:09 +01:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.World.FurnitureMail
commentId : T:TinyLife.World.FurnitureMail
id : FurnitureMail
parent : TinyLife.World
children :
- TinyLife.World.FurnitureMail.#ctor(System.Guid,TinyLife.Objects.Furniture)
- TinyLife.World.FurnitureMail.Item
- TinyLife.World.FurnitureMail.OnCollected(TinyLife.Actions.Action)
2024-10-17 17:28:12 +02:00
- TinyLife.World.FurnitureMail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2022-01-08 12:41:09 +01:00
langs :
- csharp
- vb
name : FurnitureMail
nameWithType : FurnitureMail
fullName : TinyLife.World.FurnitureMail
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : A <xref href="TinyLife.World.Mail" data-throw-if-not-resolved="false"></xref> that contains a furniture item, and that can be opened using <xref href="TinyLife.Actions.ActionType.GetFurnitureMail" data-throw-if-not-resolved="false"></xref>.
2022-03-09 16:13:05 +01:00
example : [ ]
2022-01-08 12:41:09 +01:00
syntax :
content: 'public class FurnitureMail : Mail, IGenericDataHolder'
2023-03-30 18:07:55 +02:00
content.vb : Public Class FurnitureMail Inherits Mail Implements IGenericDataHolder
2022-01-08 12:41:09 +01:00
inheritance :
- System.Object
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
- TinyLife.World.Mail
implements :
- MLEM.Misc.IGenericDataHolder
inheritedMembers :
- TinyLife.World.Mail.Id
- TinyLife.World.Mail.SentTime
2022-03-28 18:01:39 +02:00
- TinyLife.World.Mail.Map
- TinyLife.World.Mail.GetReceivingLot
- TinyLife.World.Mail.GetReceivingMailbox
- TinyLife.World.Mail.OnReceived
2022-12-20 13:25:03 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
2022-01-08 12:41:09 +01:00
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
extensionMethods :
- TinyLife.World.FurnitureMail.TinyLife.Utilities.Extensions.JsonCopy``1
- uid : TinyLife.World.FurnitureMail.Item
commentId : F:TinyLife.World.FurnitureMail.Item
id : Item
parent : TinyLife.World.FurnitureMail
langs :
- csharp
- vb
name : Item
nameWithType : FurnitureMail.Item
fullName : TinyLife.World.FurnitureMail.Item
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : The furniture item to receive in the mail.
2022-03-09 16:13:05 +01:00
example : [ ]
2022-01-08 12:41:09 +01:00
syntax :
content : >-
[ DataMember]
public readonly Furniture Item
return :
type : TinyLife.Objects.Furniture
content.vb : >-
<DataMember>
Public ReadOnly Item As Furniture
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.World.FurnitureMail.#ctor(System.Guid,TinyLife.Objects.Furniture)
commentId : M:TinyLife.World.FurnitureMail.#ctor(System.Guid,TinyLife.Objects.Furniture)
id : '#ctor(System.Guid,TinyLife.Objects.Furniture)'
parent : TinyLife.World.FurnitureMail
langs :
- csharp
- vb
name : FurnitureMail(Guid, Furniture)
nameWithType : FurnitureMail.FurnitureMail(Guid, Furniture)
fullName : TinyLife.World.FurnitureMail.FurnitureMail(System.Guid, TinyLife.Objects.Furniture)
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.World
2022-03-09 16:13:05 +01:00
example : [ ]
2022-01-08 12:41:09 +01:00
syntax :
content : public FurnitureMail(Guid receivingLot, Furniture item)
parameters :
- id : receivingLot
type : System.Guid
- id : item
type : TinyLife.Objects.Furniture
content.vb : Public Sub New(receivingLot As Guid, item As Furniture)
overload : TinyLife.World.FurnitureMail.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : FurnitureMail.New(Guid, Furniture)
fullName.vb : TinyLife.World.FurnitureMail.New(System.Guid, TinyLife.Objects.Furniture)
name.vb : New(Guid, Furniture)
2022-01-08 12:41:09 +01:00
- uid : TinyLife.World.FurnitureMail.OnCollected(TinyLife.Actions.Action)
commentId : M:TinyLife.World.FurnitureMail.OnCollected(TinyLife.Actions.Action)
id : OnCollected(TinyLife.Actions.Action)
parent : TinyLife.World.FurnitureMail
langs :
- csharp
- vb
name : OnCollected(Action)
nameWithType : FurnitureMail.OnCollected(Action)
fullName : TinyLife.World.FurnitureMail.OnCollected(TinyLife.Actions.Action)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : >-
A method that is called when the <xref href="TinyLife.World.FurnitureMail.Item" data-throw-if-not-resolved="false"></xref> is collected as part of the given <xref href="TinyLife.Actions.Action" data-throw-if-not-resolved="false"></xref>.
This method is called in <xref href="TinyLife.Actions.ActionType.GetFurnitureMail" data-throw-if-not-resolved="false"></xref>.
2022-03-09 16:13:05 +01:00
example : [ ]
2022-01-08 12:41:09 +01:00
syntax :
content : public virtual void OnCollected(Action action)
parameters :
- id : action
type : TinyLife.Actions.Action
2022-03-09 16:13:05 +01:00
description : The action.
2022-01-08 12:41:09 +01:00
content.vb : Public Overridable Sub OnCollected(action As Action)
overload : TinyLife.World.FurnitureMail.OnCollected*
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.FurnitureMail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.World.FurnitureMail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
id : Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
parent : TinyLife.World.FurnitureMail
langs :
- csharp
- vb
2024-10-17 17:28:12 +02:00
name : Validate(Map, AppliedMigrations)
nameWithType : FurnitureMail.Validate(Map, AppliedMigrations)
fullName : TinyLife.World.FurnitureMail.Validate(TinyLife.World.Map, TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.World
2024-01-07 16:53:47 +01:00
summary : Validates this mail and returns false if it is somehow invalid. This method is called when a save is loaded.
2022-05-24 13:36:05 +02:00
example : [ ]
2022-03-28 18:01:39 +02:00
syntax :
2024-10-17 17:28:12 +02:00
content : public override bool Validate(Map map, AppliedMigrations appliedMigrations)
2022-03-28 18:01:39 +02:00
parameters :
- id : map
type : TinyLife.World.Map
2022-05-24 13:36:05 +02:00
description : The map that this mail is on.
2024-10-17 17:28:12 +02:00
- id : appliedMigrations
type : TinyLife.Utilities.AppliedMigrations
description : The set of migrations that have already been applied for this object.
2022-03-28 18:01:39 +02:00
return :
type : System.Boolean
2022-05-24 13:36:05 +02:00
description : Whether this mail is valid.
2024-10-17 17:28:12 +02:00
content.vb : Public Overrides Function Validate(map As Map, appliedMigrations As AppliedMigrations) As Boolean
overridden : TinyLife.World.Mail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
overload : TinyLife.World.FurnitureMail.Validate*
2022-01-08 12:41:09 +01:00
references :
2022-03-09 16:13:05 +01:00
- uid : TinyLife.World.Mail
commentId : T:TinyLife.World.Mail
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html
2022-03-09 16:13:05 +01:00
name : Mail
nameWithType : Mail
fullName : TinyLife.World.Mail
- uid : TinyLife.Actions.ActionType.GetFurnitureMail
commentId : F:TinyLife.Actions.ActionType.GetFurnitureMail
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.ActionType.html#TinyLife_Actions_ActionType_GetFurnitureMail
2023-03-30 18:07:55 +02:00
name : GetFurnitureMail
nameWithType : ActionType.GetFurnitureMail
fullName : TinyLife.Actions.ActionType.GetFurnitureMail
2022-01-08 12:41:09 +01:00
- uid : TinyLife.World
commentId : N : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-01-08 12:41:09 +01:00
name : TinyLife.World
nameWithType : TinyLife.World
fullName : TinyLife.World
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.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.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.World
name : World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.html
2022-01-08 12:41:09 +01:00
- uid : System.Object
commentId : T:System.Object
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
name : object
nameWithType : object
fullName : object
nameWithType.vb : Object
fullName.vb : Object
name.vb : Object
2022-01-08 12:41:09 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
commentId : T:MLEM.Data.Json.JsonTypeSafeGenericDataHolder
parent : MLEM.Data.Json
isExternal : true
name : JsonTypeSafeGenericDataHolder
nameWithType : JsonTypeSafeGenericDataHolder
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
- uid : MLEM.Misc.IGenericDataHolder
commentId : T:MLEM.Misc.IGenericDataHolder
parent : MLEM.Misc
isExternal : true
name : IGenericDataHolder
nameWithType : IGenericDataHolder
fullName : MLEM.Misc.IGenericDataHolder
- uid : TinyLife.World.Mail.Id
commentId : F:TinyLife.World.Mail.Id
parent : TinyLife.World.Mail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_Id
2022-01-08 12:41:09 +01:00
name : Id
nameWithType : Mail.Id
fullName : TinyLife.World.Mail.Id
- uid : TinyLife.World.Mail.SentTime
commentId : F:TinyLife.World.Mail.SentTime
parent : TinyLife.World.Mail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_SentTime
2022-01-08 12:41:09 +01:00
name : SentTime
nameWithType : Mail.SentTime
fullName : TinyLife.World.Mail.SentTime
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.Map
commentId : P:TinyLife.World.Mail.Map
parent : TinyLife.World.Mail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_Map
2022-03-28 18:01:39 +02:00
name : Map
nameWithType : Mail.Map
fullName : TinyLife.World.Mail.Map
- uid : TinyLife.World.Mail.GetReceivingLot
commentId : M:TinyLife.World.Mail.GetReceivingLot
2022-01-08 12:41:09 +01:00
parent : TinyLife.World.Mail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingLot
2022-03-28 18:01:39 +02:00
name : GetReceivingLot()
nameWithType : Mail.GetReceivingLot()
fullName : TinyLife.World.Mail.GetReceivingLot()
2022-01-08 12:41:09 +01:00
spec.csharp :
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.GetReceivingLot
2022-01-08 12:41:09 +01:00
name : GetReceivingLot
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingLot
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.GetReceivingLot
2022-01-08 12:41:09 +01:00
name : GetReceivingLot
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingLot
2022-01-08 12:41:09 +01:00
- name : (
- name : )
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.GetReceivingMailbox
commentId : M:TinyLife.World.Mail.GetReceivingMailbox
2022-01-08 12:41:09 +01:00
parent : TinyLife.World.Mail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingMailbox
2022-03-28 18:01:39 +02:00
name : GetReceivingMailbox()
nameWithType : Mail.GetReceivingMailbox()
fullName : TinyLife.World.Mail.GetReceivingMailbox()
2022-01-08 12:41:09 +01:00
spec.csharp :
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.GetReceivingMailbox
2022-01-08 12:41:09 +01:00
name : GetReceivingMailbox
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingMailbox
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.GetReceivingMailbox
2022-01-08 12:41:09 +01:00
name : GetReceivingMailbox
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingMailbox
2022-01-08 12:41:09 +01:00
- name : (
- name : )
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.OnReceived
commentId : M:TinyLife.World.Mail.OnReceived
2022-01-08 12:41:09 +01:00
parent : TinyLife.World.Mail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_OnReceived
2022-03-28 18:01:39 +02:00
name : OnReceived()
nameWithType : Mail.OnReceived()
fullName : TinyLife.World.Mail.OnReceived()
2022-01-08 12:41:09 +01:00
spec.csharp :
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.OnReceived
2022-01-08 12:41:09 +01:00
name : OnReceived
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_OnReceived
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
2022-03-28 18:01:39 +02:00
- uid : TinyLife.World.Mail.OnReceived
2022-01-08 12:41:09 +01:00
name : OnReceived
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_OnReceived
2022-01-08 12:41:09 +01:00
- name : (
- name : )
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
definition : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2022-01-08 12:41:09 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : GetData<T>(string)
nameWithType : JsonTypeSafeGenericDataHolder.GetData<T>(string)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData<T>(string)
2022-01-08 12:41:09 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
2022-01-08 12:41:09 +01:00
name.vb : GetData(Of T)(String)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2022-01-08 12:41:09 +01:00
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
2023-03-30 18:07:55 +02:00
name : GetData
2022-01-08 12:41:09 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-01-08 12:41:09 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
2022-01-08 12:41:09 +01:00
- name : )
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
parent : MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal : true
name : GetDataKeys()
nameWithType : JsonTypeSafeGenericDataHolder.GetDataKeys()
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys()
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetDataKeys
name : GetDataKeys
isExternal : true
- name : (
- name : )
- uid : System.Object.Equals(System.Object)
commentId : M:System.Object.Equals(System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-01-08 12:41:09 +01:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-01-08 12:41:09 +01:00
- name : )
- uid : System.Object.Equals(System.Object,System.Object)
commentId : M:System.Object.Equals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-01-08 12:41:09 +01:00
- name : )
spec.vb :
- uid : System.Object.Equals(System.Object,System.Object)
name : Equals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-01-08 12:41:09 +01:00
- name : )
- uid : System.Object.GetHashCode
commentId : M:System.Object.GetHashCode
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-01-08 12:41:09 +01:00
name : GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetHashCode()
fullName : object.GetHashCode()
nameWithType.vb : Object.GetHashCode()
fullName.vb : Object.GetHashCode()
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetHashCode
name : GetHashCode
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2022-01-08 12:41:09 +01:00
- name : (
- name : )
- uid : System.Object.GetType
commentId : M:System.Object.GetType
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-01-08 12:41:09 +01:00
name : GetType()
2023-03-30 18:07:55 +02:00
nameWithType : object.GetType()
fullName : object.GetType()
nameWithType.vb : Object.GetType()
fullName.vb : Object.GetType()
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
- uid : System.Object.GetType
name : GetType
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.gettype
2022-01-08 12:41:09 +01:00
- name : (
- name : )
- uid : System.Object.MemberwiseClone
commentId : M:System.Object.MemberwiseClone
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-01-08 12:41:09 +01:00
name : MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType : object.MemberwiseClone()
fullName : object.MemberwiseClone()
nameWithType.vb : Object.MemberwiseClone()
fullName.vb : Object.MemberwiseClone()
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
- uid : System.Object.MemberwiseClone
name : MemberwiseClone
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2022-01-08 12:41:09 +01:00
- name : (
- name : )
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
commentId : M:System.Object.ReferenceEquals(System.Object,System.Object)
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
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)
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2022-01-08 12:41:09 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-01-08 12:41:09 +01:00
- name : )
spec.vb :
- uid : System.Object.ReferenceEquals(System.Object,System.Object)
name : ReferenceEquals
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2022-01-08 12:41:09 +01:00
- name : (
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2022-01-08 12:41:09 +01:00
- uid : System.Object
name : Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2022-01-08 12:41:09 +01:00
- name : )
- uid : System.Object.ToString
commentId : M:System.Object.ToString
parent : System.Object
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-01-08 12:41:09 +01:00
name : ToString()
2023-03-30 18:07:55 +02:00
nameWithType : object.ToString()
fullName : object.ToString()
nameWithType.vb : Object.ToString()
fullName.vb : Object.ToString()
2022-01-08 12:41:09 +01:00
spec.csharp :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-01-08 12:41:09 +01:00
- name : (
- name : )
spec.vb :
- uid : System.Object.ToString
name : ToString
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object.tostring
2022-01-08 12:41:09 +01:00
- name : (
- name : )
- uid : TinyLife.World.FurnitureMail.TinyLife.Utilities.Extensions.JsonCopy``1
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
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<FurnitureMail>(FurnitureMail)
nameWithType : Extensions.JsonCopy<FurnitureMail>(FurnitureMail)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.FurnitureMail>(TinyLife.World.FurnitureMail)
nameWithType.vb : Extensions.JsonCopy(Of FurnitureMail)(FurnitureMail)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.FurnitureMail)(TinyLife.World.FurnitureMail)
name.vb : JsonCopy(Of FurnitureMail)(FurnitureMail)
2022-01-08 12:41:09 +01:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.FurnitureMail)
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.World.FurnitureMail
name : FurnitureMail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html
2023-03-30 18:07:55 +02:00
- name : '>'
2022-01-08 12:41:09 +01:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.World.FurnitureMail
name : FurnitureMail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html
2022-01-08 12:41:09 +01:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.FurnitureMail)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2022-01-08 12:41:09 +01:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.World.FurnitureMail
name : FurnitureMail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.World.FurnitureMail
name : FurnitureMail
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html
2022-01-08 12:41:09 +01:00
- name : )
- uid : System
commentId : N : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system
2022-01-08 12:41:09 +01:00
name : System
nameWithType : System
fullName : System
- uid : MLEM.Data.Json
commentId : N : MLEM.Data.Json
isExternal : true
name : MLEM.Data.Json
nameWithType : MLEM.Data.Json
fullName : MLEM.Data.Json
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Data
name : Data
isExternal : true
- name : .
- uid : MLEM.Data.Json
name : Json
isExternal : true
2022-01-08 12:41:09 +01:00
- uid : MLEM.Misc
commentId : N : MLEM.Misc
isExternal : true
name : MLEM.Misc
nameWithType : MLEM.Misc
fullName : MLEM.Misc
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
spec.vb :
- uid : MLEM
name : MLEM
isExternal : true
- name : .
- uid : MLEM.Misc
name : Misc
isExternal : true
2022-12-20 13:25:03 +01:00
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId : M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
name : SetData<T>(string, T)
nameWithType : JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
fullName : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData<T>(string, T)
2022-12-20 13:25:03 +01:00
nameWithType.vb : JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2023-03-30 18:07:55 +02:00
fullName.vb : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
2022-12-20 13:25:03 +01:00
name.vb : SetData(Of T)(String, T)
spec.csharp :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2022-12-20 13:25:03 +01:00
- name : (
- uid : System.String
2023-03-30 18:07:55 +02:00
name : string
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
spec.vb :
- uid : MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
2023-03-30 18:07:55 +02:00
name : SetData
2022-12-20 13:25:03 +01:00
isExternal : true
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- name : T
- name : )
- name : (
2022-12-20 13:25:03 +01:00
- uid : System.String
name : String
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.string
- name : ','
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2022-01-08 12:41:09 +01: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_
2022-01-08 12:41:09 +01: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)
2023-03-30 18:07:55 +02:00
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 : '>'
2022-01-08 12:41:09 +01:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
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 : )
2022-01-08 12:41:09 +01:00
- name : (
- name : T
- name : )
- 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
2022-01-08 12:41:09 +01:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-01-08 12:41:09 +01: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
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Objects.Furniture
commentId : T:TinyLife.Objects.Furniture
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Furniture.html
2022-01-08 12:41:09 +01:00
name : Furniture
nameWithType : Furniture
fullName : TinyLife.Objects.Furniture
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-01-08 12:41:09 +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-01-08 12:41:09 +01:00
- uid : TinyLife.World.FurnitureMail.#ctor*
commentId : Overload:TinyLife.World.FurnitureMail.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html#TinyLife_World_FurnitureMail__ctor_System_Guid_TinyLife_Objects_Furniture_
2022-01-08 12:41:09 +01:00
name : FurnitureMail
nameWithType : FurnitureMail.FurnitureMail
fullName : TinyLife.World.FurnitureMail.FurnitureMail
2023-03-30 18:07:55 +02:00
nameWithType.vb : FurnitureMail.New
fullName.vb : TinyLife.World.FurnitureMail.New
name.vb : New
2022-01-08 12:41:09 +01:00
- uid : System.Guid
commentId : T:System.Guid
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.guid
2022-01-08 12:41:09 +01:00
name : Guid
nameWithType : Guid
fullName : System.Guid
2022-03-09 16:13:05 +01:00
- uid : TinyLife.World.FurnitureMail.Item
commentId : F:TinyLife.World.FurnitureMail.Item
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html#TinyLife_World_FurnitureMail_Item
2023-03-30 18:07:55 +02:00
name : Item
nameWithType : FurnitureMail.Item
fullName : TinyLife.World.FurnitureMail.Item
2022-01-08 12:41:09 +01:00
- 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
2022-01-08 12:41:09 +01:00
name : Action
nameWithType : Action
fullName : TinyLife.Actions.Action
2022-03-09 16:13:05 +01:00
- uid : TinyLife.World.FurnitureMail.OnCollected*
commentId : Overload:TinyLife.World.FurnitureMail.OnCollected
2024-01-07 16:53:47 +01:00
href : TinyLife.World.FurnitureMail.html#TinyLife_World_FurnitureMail_OnCollected_TinyLife_Actions_Action_
2022-03-09 16:13:05 +01:00
name : OnCollected
nameWithType : FurnitureMail.OnCollected
fullName : TinyLife.World.FurnitureMail.OnCollected
2022-01-08 12:41:09 +01:00
- uid : TinyLife.Actions
commentId : N : TinyLife.Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2022-01-08 12:41:09 +01:00
name : TinyLife.Actions
nameWithType : TinyLife.Actions
fullName : TinyLife.Actions
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.Actions
name : Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.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.Actions
name : Actions
2024-01-07 16:53:47 +01:00
href : TinyLife.Actions.html
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.Mail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.World.Mail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
parent : TinyLife.World.Mail
2024-10-17 17:28:12 +02:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
name : Validate(Map, AppliedMigrations)
nameWithType : Mail.Validate(Map, AppliedMigrations)
fullName : TinyLife.World.Mail.Validate(TinyLife.World.Map, TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
spec.csharp :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.Mail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2022-03-28 18:01:39 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2022-03-28 18:01:39 +02:00
- name : )
spec.vb :
2024-10-17 17:28:12 +02:00
- uid : TinyLife.World.Mail.Validate(TinyLife.World.Map,TinyLife.Utilities.AppliedMigrations)
2022-03-28 18:01:39 +02:00
name : Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.World.Mail.html#TinyLife_World_Mail_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2022-03-28 18:01:39 +02:00
- name : (
- uid : TinyLife.World.Map
name : Map
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2024-10-17 17:28:12 +02:00
- name : ','
- name : " "
- uid : TinyLife.Utilities.AppliedMigrations
name : AppliedMigrations
href : TinyLife.Utilities.AppliedMigrations.html
2022-03-28 18:01:39 +02:00
- name : )
- uid : TinyLife.World.FurnitureMail.Validate*
commentId : Overload:TinyLife.World.FurnitureMail.Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.World.FurnitureMail.html#TinyLife_World_FurnitureMail_Validate_TinyLife_World_Map_TinyLife_Utilities_AppliedMigrations_
2022-03-28 18:01:39 +02:00
name : Validate
nameWithType : FurnitureMail.Validate
fullName : TinyLife.World.FurnitureMail.Validate
- uid : TinyLife.World.Map
commentId : T:TinyLife.World.Map
parent : TinyLife.World
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Map.html
2022-03-28 18:01:39 +02:00
name : Map
nameWithType : Map
fullName : TinyLife.World.Map
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
commentId : T:TinyLife.Utilities.AppliedMigrations
parent : TinyLife.Utilities
href : TinyLife.Utilities.AppliedMigrations.html
name : AppliedMigrations
nameWithType : AppliedMigrations
fullName : TinyLife.Utilities.AppliedMigrations
2022-03-28 18:01:39 +02:00
- uid : System.Boolean
commentId : T:System.Boolean
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.boolean
name : bool
nameWithType : bool
fullName : bool
nameWithType.vb : Boolean
fullName.vb : Boolean
name.vb : Boolean