Property | Type | Description | |
---|---|---|---|
name | string |
Property | Type | Description | |
---|---|---|---|
GetCanonicalTagName | string | ||
PrettyPrint | void | ||
ReadTag | bool | ||
SkipTag | void | ||
ToString | string | ||
WriteData | void | ||
WriteTag | void |
Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a deep copy of this tag.
|
|
ToString ( ) : string |
Prints contents of this tag, and any child tags, to a string. Indents the string using multiples of the given indentation string.
|
|
this ( int tagIndex ) : NbtTag |
Gets or sets the tag at the specified index. ONLY APPLICABLE TO NbtList, NbtByteArray, and NbtIntArray OBJECTS! Included in NbtTag base class for programmers' convenience, to avoid extra type casts. |
|
this ( string tagName ) : NbtTag |
Gets or sets the tag with the specified name. May return ONLY APPLICABLE TO NbtCompound OBJECTS! Included in NbtTag base class for programmers' convenience, to avoid extra type casts. |
Method | Description | |
---|---|---|
GetCanonicalTagName ( NbtTagType type ) : string | ||
PrettyPrint ( [ sb, [ indentString, int indentLevel ) : void | ||
ReadTag ( [ readStream ) : bool | ||
SkipTag ( [ readStream ) : void | ||
ToString ( [ indentString ) : string | ||
WriteData ( [ writeReader ) : void | ||
WriteTag ( [ writeReader ) : void |
public this ( int tagIndex ) : NbtTag | ||
tagIndex | int | The zero-based index of the tag to get or set. |
return | NbtTag |
public this ( string tagName ) : NbtTag | ||
tagName | string | The name of the tag to get or set. Must match tag's actual name. |
return | NbtTag |