Struct TableEntryReference
Allows for referencing a table entry via key or key id.
Syntax
[Serializable]
public struct TableEntryReference : ISerializationCallbackReceiver, IEquatable<TableEntryReference>
Properties
Key
Declaration
public string Key { get; }
Property Value
KeyId
Declaration
public uint KeyId { get; }
Property Value
ReferenceType
Declaration
public TableEntryReference.Type ReferenceType { get; }
Property Value
Methods
Equals(Object)
Compare the TableEntryReference to another TableEntryReference.
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
Equals(TableEntryReference)
Compare the TableEntryReference to another TableEntryReference.
Declaration
public bool Equals(TableEntryReference other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
OnAfterDeserialize()
Declaration
public void OnAfterDeserialize()
OnBeforeSerialize()
Declaration
public void OnBeforeSerialize()
ResolveKeyName(SharedTableData)
Declaration
public string ResolveKeyName(SharedTableData sharedData)
Parameters
Type |
Name |
Description |
SharedTableData |
sharedData |
The SharedTableData to use if the key name is not stored in the reference or null if it could not br resolbved.
|
Returns
ToString()
Returns a string representation.
Declaration
public override string ToString()
Returns
Overrides
Operators
Implicit(String to TableEntryReference)
Converts a string name into a reference.
Declaration
public static implicit operator TableEntryReference(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns
Implicit(UInt32 to TableEntryReference)
Converts a key id into a reference.
Declaration
public static implicit operator TableEntryReference(uint keyId)
Parameters
Type |
Name |
Description |
UInt32 |
keyId |
|
Returns
Implicit(TableEntryReference to String)
Declaration
public static implicit operator string (TableEntryReference tableEntryReference)
Parameters
Returns
Implicit(TableEntryReference to UInt32)
Declaration
public static implicit operator uint (TableEntryReference tableEntryReference)
Parameters
Returns