Class BinTreeMap
Represents a property with a value
Inheritance
System.Object
BinTreeMap
Assembly: LeagueToolkit.dll
public sealed class BinTreeMap : BinTreeProperty
Constructors
|
Improve this Doc
View Source
Creates a new BinTreeMap with the specified parameters
Declaration
public BinTreeMap(uint nameHash, BinPropertyType keyType, BinPropertyType valueType, IEnumerable<KeyValuePair<BinTreeProperty, BinTreeProperty>> map)
Parameters
Properties
|
Improve this Doc
View Source
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Declaration
public bool IsReadOnly { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public BinTreeProperty this[BinTreeProperty key] { get; set; }
Parameters
Property Value
|
Improve this Doc
View Source
Declaration
public Dictionary<BinTreeProperty, BinTreeProperty>.KeyCollection Keys { get; }
Property Value
Type |
Description |
Dictionary.KeyCollection<> |
|
|
Improve this Doc
View Source
The property type of the key
Declaration
public BinPropertyType KeyType { get; }
Property Value
|
Improve this Doc
View Source
Gets the type of the property
Declaration
public override BinPropertyType Type { get; }
Property Value
Overrides
|
Improve this Doc
View Source
Declaration
public Dictionary<BinTreeProperty, BinTreeProperty>.ValueCollection Values { get; }
Property Value
Type |
Description |
Dictionary.ValueCollection<> |
|
|
Improve this Doc
View Source
The property type of the value
Declaration
public BinPropertyType ValueType { get; }
Property Value
Methods
|
Improve this Doc
View Source
Declaration
public void Add(BinTreeProperty key, BinTreeProperty value)
Parameters
|
Improve this Doc
View Source
Declaration
public bool ContainsKey(BinTreeProperty key)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public override bool Equals(BinTreeProperty other)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Overrides
|
Improve this Doc
View Source
Declaration
public IEnumerator<KeyValuePair<BinTreeProperty, BinTreeProperty>> GetEnumerator()
Returns
|
Improve this Doc
View Source
Declaration
public bool Remove(BinTreeProperty key)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public bool TryGetValue(BinTreeProperty key, out BinTreeProperty value)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
WriteContent(BinaryWriter)
Declaration
protected override void WriteContent(BinaryWriter bw)
Parameters
Type |
Name |
Description |
BinaryWriter |
bw |
|
Overrides
Implements
IDictionary<, >