hdac SDK
SDK for hdac blockchain development
|
Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. 더 자세히 ...
Public 멤버 함수 | |
BsonReader (Stream stream) | |
Initializes a new instance of the BsonReader class. 더 자세히 ... | |
BsonReader (Stream stream, bool readRootValueAsArray, DateTimeKind dateTimeKindHandling) | |
Initializes a new instance of the BsonReader class. 더 자세히 ... | |
override byte[] | ReadAsBytes () |
Reads the next JSON token from the stream as a T:Byte[]. 더 자세히 ... | |
override decimal | ReadAsDecimal () |
Reads the next JSON token from the stream as a Nullable<Decimal>. 더 자세히 ... | |
override DateTimeOffset | ReadAsDateTimeOffset () |
Reads the next JSON token from the stream as a Nullable<DateTimeOffset>. 더 자세히 ... | |
override bool | Read () |
Reads the next JSON token from the stream. 더 자세히 ... | |
override void | Close () |
Changes the JsonReader.State to Closed. 더 자세히 ... | |
![]() | |
void | Skip () |
Skips the children of the current token. 더 자세히 ... | |
속성 | |
bool | JsonNet35BinaryCompatibility [get, set] |
Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. 더 자세히 ... | |
bool | ReadRootValueAsArray [get, set] |
Gets or sets a value indicating whether the root object will be read as a JSON array. 더 자세히 ... | |
DateTimeKind | DateTimeKindHandling [get, set] |
Gets or sets the DateTimeKind used when reading DateTime values from BSON. 더 자세히 ... | |
![]() | |
State | CurrentState [get] |
Gets the current reader state. 더 자세히 ... | |
bool | CloseInput [get, set] |
Gets or sets a value indicating whether the underlying stream or TextReader should be closed when the reader is closed. 더 자세히 ... | |
virtual char | QuoteChar [get, set] |
Gets the quotation mark character used to enclose the value of a string. 더 자세히 ... | |
virtual JsonToken | TokenType [get] |
Gets the type of the current Json token. 더 자세히 ... | |
virtual object | Value [get] |
Gets the text value of the current Json token. 더 자세히 ... | |
virtual Type | ValueType [get] |
Gets The Common Language Runtime (CLR) type for the current Json token. 더 자세히 ... | |
virtual int | Depth [get] |
Gets the depth of the current token in the JSON document. 더 자세히 ... | |
추가로 상속된 멤버들 | |
![]() | |
enum | State { State.Start, State.Complete, State.Property, State.ObjectStart, State.Object, State.ArrayStart, State.Array, State.Closed, State.PostValue, State.ConstructorStart, State.Constructor, State.Error, State.Finished } |
Specifies the state of the reader. 더 자세히 ... | |
![]() | |
JsonReader () | |
Initializes a new instance of the JsonReader class with the specified TextReader. 더 자세히 ... | |
void | SetToken (JsonToken newToken) |
Sets the current token. 더 자세히 ... | |
virtual void | SetToken (JsonToken newToken, object value) |
Sets the current token and value. 더 자세히 ... | |
void | SetStateBasedOnCurrent () |
Sets the state based on current token type. 더 자세히 ... | |
virtual void | Dispose (bool disposing) |
Releases unmanaged and - optionally - managed resources 더 자세히 ... | |
Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
|
inline |
Initializes a new instance of the BsonReader class.
stream | The stream. |
|
inline |
Initializes a new instance of the BsonReader class.
stream | The stream. |
readRootValueAsArray | if set to true the root object will be read as a JSON array. |
dateTimeKindHandling | The DateTimeKind used when reading DateTime values from BSON. |
|
inlinevirtual |
Changes the JsonReader.State to Closed.
Newtonsoft.Json.JsonReader(으)로부터 재구현되었습니다.
|
inlinevirtual |
Reads the next JSON token from the stream.
|
inlinevirtual |
Reads the next JSON token from the stream as a T:Byte[].
|
inlinevirtual |
Reads the next JSON token from the stream as a Nullable<DateTimeOffset>.
|
inlinevirtual |
Reads the next JSON token from the stream as a Nullable<Decimal>.
|
getset |
Gets or sets the DateTimeKind used when reading DateTime values from BSON.
The DateTimeKind used when reading DateTime values from BSON.
|
getset |
Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
true
if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false
.
|
getset |
Gets or sets a value indicating whether the root object will be read as a JSON array.
true
if the root object will be read as a JSON array; otherwise, false
.