Class ConfigNode
Inheritance
System.Object
ConfigNode
Inherited Members
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()
Assembly: AltV.Net.Shared.dll
Syntax
public class ConfigNode : IConfigNode
Fields
|
Improve this Doc
View Source
core
Declaration
protected readonly ISharedCore core
Field Value
Properties
|
Improve this Doc
View Source
ElementType
Declaration
public ConfigNode.Type ElementType { get; }
Property Value
|
Improve this Doc
View Source
Item[Int32]
Declaration
public ConfigNode this[int index] { get; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
|
Improve this Doc
View Source
Item[String]
Declaration
public ConfigNode this[string key] { get; }
Parameters
Type |
Name |
Description |
System.String |
key |
|
Property Value
Methods
|
Improve this Doc
View Source
Get(Int32)
Declaration
public ConfigNode Get(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Returns
|
Improve this Doc
View Source
Get(String)
Declaration
public ConfigNode Get(string key)
Parameters
Type |
Name |
Description |
System.String |
key |
|
Returns
|
Improve this Doc
View Source
GetBoolean()
Declaration
public bool? GetBoolean()
Returns
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Improve this Doc
View Source
GetBoolean(out Boolean)
Declaration
public bool GetBoolean(out bool value)
Parameters
Type |
Name |
Description |
System.Boolean |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetDict()
Declaration
public Dictionary<string, ConfigNode>? GetDict()
Returns
Type |
Description |
System.Nullable<Dictionary<System.String, ConfigNode>> |
|
|
Improve this Doc
View Source
GetDict(out Dictionary<String, ConfigNode>)
Declaration
public bool GetDict(out Dictionary<string, ConfigNode> value)
Parameters
Type |
Name |
Description |
Dictionary<System.String, ConfigNode> |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetDouble()
Declaration
public double? GetDouble()
Returns
Type |
Description |
System.Nullable<System.Double> |
|
|
Improve this Doc
View Source
GetDouble(out Double)
Declaration
public bool GetDouble(out double value)
Parameters
Type |
Name |
Description |
System.Double |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetFloat()
Declaration
Returns
Type |
Description |
System.Nullable<System.Single> |
|
|
Improve this Doc
View Source
GetFloat(out Single)
Declaration
public bool GetFloat(out float value)
Parameters
Type |
Name |
Description |
System.Single |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetInt()
Declaration
Returns
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
GetInt(out Int32)
Declaration
public bool GetInt(out int value)
Parameters
Type |
Name |
Description |
System.Int32 |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetList()
Declaration
public ConfigNode[] GetList()
Returns
|
Improve this Doc
View Source
GetList(out ConfigNode[])
Declaration
public bool GetList(out ConfigNode[] value)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetLong()
Declaration
Returns
Type |
Description |
System.Nullable<System.Int64> |
|
|
Improve this Doc
View Source
GetLong(out Int64)
Declaration
public bool GetLong(out long value)
Parameters
Type |
Name |
Description |
System.Int64 |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetString()
Declaration
public string GetString()
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
GetString(out String)
Declaration
public bool GetString(out string value)
Parameters
Type |
Name |
Description |
System.String |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetUInt()
Declaration
Returns
Type |
Description |
System.Nullable<System.UInt32> |
|
|
Improve this Doc
View Source
GetUInt(out UInt32)
Declaration
public bool GetUInt(out uint value)
Parameters
Type |
Name |
Description |
System.UInt32 |
value |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetULong()
Declaration
Returns
Type |
Description |
System.Nullable<System.UInt64> |
|
|
Improve this Doc
View Source
GetULong(out UInt64)
Declaration
public bool GetULong(out ulong value)
Parameters
Type |
Name |
Description |
System.UInt64 |
value |
|
Returns
Type |
Description |
System.Boolean |
|
Implements