Class BinaryValue
Represents a binary value.
Inherited Members
Namespace: Oracle.NoSQL.SDK
Assembly: Oracle.NoSQL.SDK.dll
Syntax
public class BinaryValue : FieldValue
Remarks
This class is used to represent values of NoSQL data types
Binary and Fixed Binary. This value is represented
by a C# type
byte[]. When converted to JSON, this value
is represented as Base64 encoded string.
Constructors
| Name | Description |
|---|---|
| BinaryValue(Byte[]) |
Initializes a new instance of the BinaryValue with
the specified byte[] value.
|
Properties
| Name | Description |
|---|---|
| AsByteArray | Gets the value of this instance as byte array. |
| DbType | Gets DbType of this instance which represents the type of this value. |
Methods
| Name | Description |
|---|---|
| SerializeAsJson(Utf8JsonWriter, JsonOutputOptions) | Writes JSON representation of the value to the stream represented by Utf8JsonWriter. |