TinyLifeWeb/docs/api/TinyLife.World.Mail.yml
2024-04-14 17:55:54 +02:00

1114 lines
34 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: TinyLife.World.Mail
commentId: T:TinyLife.World.Mail
id: Mail
parent: TinyLife.World
children:
- TinyLife.World.Mail.#ctor(TinyLife.World.Map,System.Guid)
- TinyLife.World.Mail.GetReceivingLot
- TinyLife.World.Mail.GetReceivingMailbox
- TinyLife.World.Mail.Id
- TinyLife.World.Mail.Map
- TinyLife.World.Mail.OnReceived
- TinyLife.World.Mail.SentTime
- TinyLife.World.Mail.Validate(TinyLife.World.Map)
langs:
- csharp
- vb
name: Mail
nameWithType: Mail
fullName: TinyLife.World.Mail
type: Class
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Mail
path: ../TinyLife/World/Mail.cs
startLine: 20
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
A class used for sending and receiving mail.
To add new mail to be sent to a <xref href="TinyLife.World.Household" data-throw-if-not-resolved="false"></xref>, add it to <xref href="TinyLife.World.Map.MailToSend" data-throw-if-not-resolved="false"></xref>.
example: []
syntax:
content: >-
[DataContract]
public abstract class Mail : JsonTypeSafeGenericDataHolder, IGenericDataHolder
content.vb: >-
<DataContract>
Public MustInherit Class Mail Inherits JsonTypeSafeGenericDataHolder Implements IGenericDataHolder
inheritance:
- System.Object
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder
derivedClasses:
- TinyLife.World.BillsMail
- TinyLife.World.FurnitureMail
implements:
- MLEM.Misc.IGenericDataHolder
inheritedMembers:
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
- MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,{T})
- 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.Mail.TinyLife.Utilities.Extensions.JsonCopy``1
attributes:
- type: System.Runtime.Serialization.DataContractAttribute
ctor: System.Runtime.Serialization.DataContractAttribute.#ctor
arguments: []
- uid: TinyLife.World.Mail.Id
commentId: F:TinyLife.World.Mail.Id
id: Id
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: Id
nameWithType: Mail.Id
fullName: TinyLife.World.Mail.Id
type: Field
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Id
path: ../TinyLife/World/Mail.cs
startLine: 28
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
The global, unique id of this mail item.
Used for saving and loading from disk.
example: []
syntax:
content: >-
[DataMember]
public readonly Guid Id
return:
type: System.Guid
content.vb: >-
<DataMember>
Public ReadOnly Id As Guid
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.World.Mail.SentTime
commentId: F:TinyLife.World.Mail.SentTime
id: SentTime
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: SentTime
nameWithType: Mail.SentTime
fullName: TinyLife.World.Mail.SentTime
type: Field
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SentTime
path: ../TinyLife/World/Mail.cs
startLine: 33
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: The in-game time that this mail was sent (created) on
example: []
syntax:
content: >-
[DataMember]
public readonly TimeSpan SentTime
return:
type: System.TimeSpan
content.vb: >-
<DataMember>
Public ReadOnly SentTime As TimeSpan
attributes:
- type: System.Runtime.Serialization.DataMemberAttribute
ctor: System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments: []
- uid: TinyLife.World.Mail.Map
commentId: P:TinyLife.World.Mail.Map
id: Map
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: Map
nameWithType: Mail.Map
fullName: TinyLife.World.Mail.Map
type: Property
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Map
path: ../TinyLife/World/Mail.cs
startLine: 38
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: The map that this mail is on.
example: []
syntax:
content: protected Map Map { get; }
parameters: []
return:
type: TinyLife.World.Map
content.vb: Protected Property Map As Map
overload: TinyLife.World.Mail.Map*
- uid: TinyLife.World.Mail.#ctor(TinyLife.World.Map,System.Guid)
commentId: M:TinyLife.World.Mail.#ctor(TinyLife.World.Map,System.Guid)
id: '#ctor(TinyLife.World.Map,System.Guid)'
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: Mail(Map, Guid)
nameWithType: Mail.Mail(Map, Guid)
fullName: TinyLife.World.Mail.Mail(TinyLife.World.Map, System.Guid)
type: Constructor
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor
path: ../TinyLife/World/Mail.cs
startLine: 48
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: Creates a new mail instance with the given settings.
example: []
syntax:
content: protected Mail(Map map, Guid receivingLot)
parameters:
- id: map
type: TinyLife.World.Map
description: The <xref href="TinyLife.World.Mail.Map" data-throw-if-not-resolved="false"></xref> that this mail should be received on.
- id: receivingLot
type: System.Guid
description: The <xref href="TinyLife.World.Lot.Id" data-throw-if-not-resolved="false"></xref> of the lot that should receive this mail.
content.vb: Protected Sub New(map As Map, receivingLot As Guid)
overload: TinyLife.World.Mail.#ctor*
nameWithType.vb: Mail.New(Map, Guid)
fullName.vb: TinyLife.World.Mail.New(TinyLife.World.Map, System.Guid)
name.vb: New(Map, Guid)
- uid: TinyLife.World.Mail.GetReceivingLot
commentId: M:TinyLife.World.Mail.GetReceivingLot
id: GetReceivingLot
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: GetReceivingLot()
nameWithType: Mail.GetReceivingLot()
fullName: TinyLife.World.Mail.GetReceivingLot()
type: Method
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetReceivingLot
path: ../TinyLife/World/Mail.cs
startLine: 60
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: Returns the <xref href="TinyLife.World.Lot" data-throw-if-not-resolved="false"></xref> that should receive this mail instance
example: []
syntax:
content: public Lot GetReceivingLot()
return:
type: TinyLife.World.Lot
description: The lot that should receive this mail
content.vb: Public Function GetReceivingLot() As Lot
overload: TinyLife.World.Mail.GetReceivingLot*
- uid: TinyLife.World.Mail.GetReceivingMailbox
commentId: M:TinyLife.World.Mail.GetReceivingMailbox
id: GetReceivingMailbox
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: GetReceivingMailbox()
nameWithType: Mail.GetReceivingMailbox()
fullName: TinyLife.World.Mail.GetReceivingMailbox()
type: Method
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetReceivingMailbox
path: ../TinyLife/World/Mail.cs
startLine: 69
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
Returns the mailbox <xref href="TinyLife.Objects.Furniture" data-throw-if-not-resolved="false"></xref> that should receive this mail instance.
If there is no valid mailbox, null is returned.
example: []
syntax:
content: public Furniture GetReceivingMailbox()
return:
type: TinyLife.Objects.Furniture
description: The mailbox to receive this mail
content.vb: Public Function GetReceivingMailbox() As Furniture
overload: TinyLife.World.Mail.GetReceivingMailbox*
- uid: TinyLife.World.Mail.OnReceived
commentId: M:TinyLife.World.Mail.OnReceived
id: OnReceived
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: OnReceived()
nameWithType: Mail.OnReceived()
fullName: TinyLife.World.Mail.OnReceived()
type: Method
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: OnReceived
path: ../TinyLife/World/Mail.cs
startLine: 78
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: >-
This method is called automatically when this mail item is received by the receiving lot.
A custom mail instance can execute its custom action in this method.
example: []
syntax:
content: public virtual void OnReceived()
content.vb: Public Overridable Sub OnReceived()
overload: TinyLife.World.Mail.OnReceived*
- uid: TinyLife.World.Mail.Validate(TinyLife.World.Map)
commentId: M:TinyLife.World.Mail.Validate(TinyLife.World.Map)
id: Validate(TinyLife.World.Map)
parent: TinyLife.World.Mail
langs:
- csharp
- vb
name: Validate(Map)
nameWithType: Mail.Validate(Map)
fullName: TinyLife.World.Mail.Validate(TinyLife.World.Map)
type: Method
source:
remote:
path: TinyLife/World/Mail.cs
branch: main
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate
path: ../TinyLife/World/Mail.cs
startLine: 85
assemblies:
- Tiny Life
namespace: TinyLife.World
summary: Validates this mail and returns false if it is somehow invalid. This method is called when a save is loaded.
example: []
syntax:
content: public virtual bool Validate(Map map)
parameters:
- id: map
type: TinyLife.World.Map
description: The map that this mail is on.
return:
type: System.Boolean
description: Whether this mail is valid.
content.vb: Public Overridable Function Validate(map As Map) As Boolean
overload: TinyLife.World.Mail.Validate*
references:
- uid: TinyLife.World.Household
commentId: T:TinyLife.World.Household
parent: TinyLife.World
href: TinyLife.World.Household.html
name: Household
nameWithType: Household
fullName: TinyLife.World.Household
- uid: TinyLife.World.Map.MailToSend
commentId: F:TinyLife.World.Map.MailToSend
href: TinyLife.World.Map.html#TinyLife_World_Map_MailToSend
name: MailToSend
nameWithType: Map.MailToSend
fullName: TinyLife.World.Map.MailToSend
- 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: 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: 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: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
parent: MLEM.Data.Json.JsonTypeSafeGenericDataHolder
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: SetData(string, object)
nameWithType: JsonTypeSafeGenericDataHolder.SetData(string, object)
fullName: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(string, object)
nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(String, Object)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(String, Object)
name.vb: SetData(String, Object)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
name: SetData
isExternal: true
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(System.String,System.Object)
name: SetData
isExternal: true
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- 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)
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)
nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
name.vb: SetData(Of T)(String, T)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- 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
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)
nameWithType.vb: JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData(Of T)(String)
name.vb: GetData(Of T)(String)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name: GetData
isExternal: true
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.GetData``1(System.String)
name: GetData
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- 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
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.World.Mail.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<Mail>(Mail)
nameWithType: Extensions.JsonCopy<Mail>(Mail)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.World.Mail>(TinyLife.World.Mail)
nameWithType.vb: Extensions.JsonCopy(Of Mail)(Mail)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.World.Mail)(TinyLife.World.Mail)
name.vb: JsonCopy(Of Mail)(Mail)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Mail)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: <
- uid: TinyLife.World.Mail
name: Mail
href: TinyLife.World.Mail.html
- name: '>'
- name: (
- uid: TinyLife.World.Mail
name: Mail
href: TinyLife.World.Mail.html
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.World.Mail)
name: JsonCopy
href: TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
- name: (
- name: Of
- name: " "
- uid: TinyLife.World.Mail
name: Mail
href: TinyLife.World.Mail.html
- name: )
- name: (
- uid: TinyLife.World.Mail
name: Mail
href: TinyLife.World.Mail.html
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
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
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
- uid: MLEM.Misc
commentId: N:MLEM.Misc
isExternal: true
name: MLEM.Misc
nameWithType: MLEM.Misc
fullName: MLEM.Misc
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
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
commentId: M:MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
isExternal: true
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)
nameWithType.vb: JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
fullName.vb: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData(Of T)(String, T)
name.vb: SetData(Of T)(String, T)
spec.csharp:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: <
- name: T
- name: '>'
- name: (
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: MLEM.Data.Json.JsonTypeSafeGenericDataHolder.SetData``1(System.String,``0)
name: SetData
isExternal: true
- name: (
- name: Of
- name: " "
- name: T
- name: )
- name: (
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- name: T
- name: )
- 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.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.Guid
commentId: T:System.Guid
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.guid
name: Guid
nameWithType: Guid
fullName: System.Guid
- uid: System.TimeSpan
commentId: T:System.TimeSpan
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.timespan
name: TimeSpan
nameWithType: TimeSpan
fullName: System.TimeSpan
- uid: TinyLife.World.Mail.Map*
commentId: Overload:TinyLife.World.Mail.Map
href: TinyLife.World.Mail.html#TinyLife_World_Mail_Map
name: Map
nameWithType: Mail.Map
fullName: TinyLife.World.Mail.Map
- 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.Mail.Map
commentId: P:TinyLife.World.Mail.Map
parent: TinyLife.World.Mail
href: TinyLife.World.Mail.html#TinyLife_World_Mail_Map
name: Map
nameWithType: Mail.Map
fullName: TinyLife.World.Mail.Map
- uid: TinyLife.World.Lot.Id
commentId: F:TinyLife.World.Lot.Id
href: TinyLife.World.Lot.html#TinyLife_World_Lot_Id
name: Id
nameWithType: Lot.Id
fullName: TinyLife.World.Lot.Id
- uid: TinyLife.World.Mail.#ctor*
commentId: Overload:TinyLife.World.Mail.#ctor
href: TinyLife.World.Mail.html#TinyLife_World_Mail__ctor_TinyLife_World_Map_System_Guid_
name: Mail
nameWithType: Mail.Mail
fullName: TinyLife.World.Mail.Mail
nameWithType.vb: Mail.New
fullName.vb: TinyLife.World.Mail.New
name.vb: New
- uid: TinyLife.World.Mail
commentId: T:TinyLife.World.Mail
parent: TinyLife.World
href: TinyLife.World.Mail.html
name: Mail
nameWithType: Mail
fullName: TinyLife.World.Mail
- uid: TinyLife.World.Lot
commentId: T:TinyLife.World.Lot
parent: TinyLife.World
href: TinyLife.World.Lot.html
name: Lot
nameWithType: Lot
fullName: TinyLife.World.Lot
- uid: TinyLife.World.Mail.GetReceivingLot*
commentId: Overload:TinyLife.World.Mail.GetReceivingLot
href: TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingLot
name: GetReceivingLot
nameWithType: Mail.GetReceivingLot
fullName: TinyLife.World.Mail.GetReceivingLot
- uid: TinyLife.Objects.Furniture
commentId: T:TinyLife.Objects.Furniture
parent: TinyLife.Objects
href: TinyLife.Objects.Furniture.html
name: Furniture
nameWithType: Furniture
fullName: TinyLife.Objects.Furniture
- uid: TinyLife.World.Mail.GetReceivingMailbox*
commentId: Overload:TinyLife.World.Mail.GetReceivingMailbox
href: TinyLife.World.Mail.html#TinyLife_World_Mail_GetReceivingMailbox
name: GetReceivingMailbox
nameWithType: Mail.GetReceivingMailbox
fullName: TinyLife.World.Mail.GetReceivingMailbox
- uid: TinyLife.Objects
commentId: N:TinyLife.Objects
href: TinyLife.html
name: TinyLife.Objects
nameWithType: TinyLife.Objects
fullName: TinyLife.Objects
spec.csharp:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Objects
name: Objects
href: TinyLife.Objects.html
spec.vb:
- uid: TinyLife
name: TinyLife
href: TinyLife.html
- name: .
- uid: TinyLife.Objects
name: Objects
href: TinyLife.Objects.html
- uid: TinyLife.World.Mail.OnReceived*
commentId: Overload:TinyLife.World.Mail.OnReceived
href: TinyLife.World.Mail.html#TinyLife_World_Mail_OnReceived
name: OnReceived
nameWithType: Mail.OnReceived
fullName: TinyLife.World.Mail.OnReceived
- uid: TinyLife.World.Mail.Validate*
commentId: Overload:TinyLife.World.Mail.Validate
href: TinyLife.World.Mail.html#TinyLife_World_Mail_Validate_TinyLife_World_Map_
name: Validate
nameWithType: Mail.Validate
fullName: TinyLife.World.Mail.Validate
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean