Class AssetTableCollection
Contains information on all the tables associated with a table name and type.
Inheritance
AssetTableCollection
Syntax
public class AssetTableCollection : IEquatable<AssetTableCollection>
Properties
SharedData
The data that is shared across all the tables in this collection.
Declaration
public SharedTableData SharedData { get; set; }
Property Value
TableEntries
A list of , each one represents a single table in this collection.
Declaration
public List<AddressableAssetEntry> TableEntries { get; }
Property Value
Type |
Description |
List<AddressableAssetEntry> |
|
TableName
The name all tables in this collection share.
Declaration
public string TableName { get; }
Property Value
Tables
The Table assets for this collection. Calling get will force all the tables to be loaded.
Declaration
public List<LocalizedTable> Tables { get; }
Property Value
TableType
Declaration
public Type TableType { get; set; }
Property Value
Methods
Equals(Object)
Compare the AssetTableCollection to another AssetTableCollection.
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
Object |
obj |
|
Returns
Overrides
Equals(AssetTableCollection)
Declaration
public bool Equals(AssetTableCollection other)
Parameters
Returns
GetHashCode()
Returns the hash code of or if it is null.
Declaration
public override int GetHashCode()
Returns
Overrides
ToString()
Declaration
public override string ToString()
Returns
Overrides