|
ctrlX Data Layer API for .NET 5
2.1.0
|
![]() |
Public Member Functions | |
Variant () | |
Creates a Variant More... | |
Variant (bool value) | |
Creates a Variant More... | |
Variant (bool[] value) | |
Creates a Variant More... | |
Variant (byte value) | |
Creates a Variant More... | |
Variant (byte[] value) | |
Creates a Variant More... | |
Variant (ByteBuffer flatBuffers) | |
Creates a Variant More... | |
Variant (double value) | |
Creates a Variant More... | |
Variant (double[] value) | |
Creates a Variant More... | |
Variant (FlatBufferBuilder builder) | |
Creates a Variant More... | |
Variant (float value) | |
Creates a Variant More... | |
Variant (float[] value) | |
Creates a Variant More... | |
Variant (int value) | |
Creates a Variant More... | |
Variant (int[] value) | |
Creates a Variant More... | |
Variant (IVariant other) | |
Creates a Variant More... | |
Variant (long value) | |
Creates a Variant More... | |
Variant (long[] value) | |
Creates a Variant More... | |
Variant (sbyte value) | |
Creates a Variant More... | |
Variant (sbyte[] value) | |
Creates a Variant More... | |
Variant (short value) | |
Creates a Variant More... | |
Variant (short[] value) | |
Creates a Variant More... | |
Variant (string value) | |
Creates a Variant More... | |
Variant (string[] value) | |
Creates a Variant More... | |
Variant (uint value) | |
Creates a Variant More... | |
Variant (uint[] value) | |
Creates a Variant More... | |
Variant (ulong value) | |
Creates a Variant More... | |
Variant (ulong[] value) | |
Creates a Variant More... | |
Variant (ushort value) | |
Creates a Variant More... | |
Variant (ushort[] value) | |
Creates a Variant More... | |
DLR_RESULT | CheckConvert (DLR_VARIANT_TYPE type) |
Checks if the Variant is convertable to given data type More... | |
Variant | Clone () |
Clones the Variant More... | |
void | Dispose () |
Dispose More... | |
override bool | Equals (object obj) |
Returns true if this Variant equals given object More... | |
bool | Equals (Variant other) |
Returns true if this Variant equals given Variant More... | |
override int | GetHashCode () |
Gets the HashCode of this Variant More... | |
bool | ToBool () |
Gets the value as bool More... | |
bool[] | ToBoolArray () |
Gets the value as bool array More... | |
byte | ToByte () |
Gets the value as byte More... | |
byte[] | ToByteArray () |
Gets the value as byte array More... | |
double | ToDouble () |
Gets the value as double More... | |
double[] | ToDoubleArray () |
Gets the value as double array More... | |
ByteBuffer | ToFlatbuffers () |
Gets the value as Flatbuffers More... | |
float | ToFloat () |
Gets the value as float More... | |
float[] | ToFloatArray () |
Gets the value as float array More... | |
short | ToInt16 () |
Gets the value as short More... | |
short[] | ToInt16Array () |
Gets the value as short array More... | |
int | ToInt32 () |
Gets the value as int More... | |
int[] | ToInt32Array () |
Gets the value as int array More... | |
long | ToInt64 () |
Gets the value as long More... | |
long[] | ToInt64Array () |
Gets the value as long array More... | |
byte[] | ToRawByteArray () |
Gets the value as raw byte array (UTF8) More... | |
sbyte | ToSByte () |
Gets the value as sbyte More... | |
sbyte[] | ToSByteArray () |
Gets the value as sbyte array More... | |
override string | ToString () |
Gets the value as string More... | |
string[] | ToStringArray () |
Gets the value as string array More... | |
ushort | ToUInt16 () |
Gets the value as ushort More... | |
ushort[] | ToUInt16Array () |
Gets the value as ushort array More... | |
uint | ToUInt32 () |
Gets the value as uint More... | |
uint[] | ToUInt32Array () |
Gets the value as uint array More... | |
ulong | ToUInt64 () |
Gets the value as ulong More... | |
ulong[] | ToUInt64Array () |
Static Public Member Functions | |
static implicit | operator Variant (bool source) |
static implicit | operator Variant (bool[] source) |
static implicit | operator Variant (byte source) |
static implicit | operator Variant (byte[] source) |
static implicit | operator Variant (ByteBuffer flatBuffers) |
static implicit | operator Variant (double source) |
static implicit | operator Variant (double[] source) |
static implicit | operator Variant (FlatBufferBuilder builder) |
static implicit | operator Variant (float source) |
static implicit | operator Variant (float[] source) |
static implicit | operator Variant (int source) |
static implicit | operator Variant (int[] source) |
static implicit | operator Variant (long source) |
static implicit | operator Variant (long[] source) |
static implicit | operator Variant (sbyte source) |
static implicit | operator Variant (sbyte[] source) |
static implicit | operator Variant (short source) |
static implicit | operator Variant (short[] source) |
static implicit | operator Variant (string source) |
static implicit | operator Variant (string[] source) |
static implicit | operator Variant (uint source) |
static implicit | operator Variant (uint[] source) |
static implicit | operator Variant (ulong source) |
static implicit | operator Variant (ulong[] source) |
static implicit | operator Variant (ushort source) |
static implicit | operator Variant (ushort[] source) |
static bool | operator!= (Variant x, Variant y) |
s Unequality Operator More... | |
static bool | operator== (Variant x, Variant y) |
Equality Operator More... | |
Static Public Attributes | |
static readonly int | DefaultFlatbuffersInitialSize = 1024 |
Gets the default Flatbuffers initial size in bytes More... | |
static readonly Variant | Empty = new(string.Empty) |
Gets a Variant with empty string value More... | |
static readonly Variant | False = new(false) |
Gets a Variant with boolean value 'false' More... | |
static readonly Variant | Null = new() |
Gets a Variant with no value of data type 'DLR_VARIANT_TYPE_UNKNOWN' More... | |
static readonly Variant | One = new(1) |
Gets a Variant with value '1' of data type 'int' (Int32) More... | |
static readonly Variant | True = new(true) |
Gets a Variant with boolean value 'true' More... | |
static readonly Variant | Zero = new(0) |
Gets a Variant with value '0' of data type 'int' (Int32) More... | |
Protected Member Functions | |
virtual void | Dispose (bool disposing) |
Dispose the object More... | |
Properties | |
DLR_VARIANT_TYPE | DataType [get] |
Gets the data type of the Variant More... | |
bool | IsArray [get] |
Indicates whether the Variant is an array More... | |
bool | IsBool [get] |
Indicates whether the Variant contains a boolean value More... | |
bool | IsDisposed [get] |
Object is disposed More... | |
bool | IsFlatbuffers [get] |
Indicates whether the Variant contains Flatbuffers More... | |
bool | IsNull [get] |
Indicates whether the Variant is null More... | |
bool | IsNumber [get] |
Indicates whether the Variant contains a numeric value Returns false for numeric arrays and booleans More... | |
bool | IsString [get] |
Indicates whether the Variant contains a string value More... | |
string | JsonDataType [get] |
Gets the Json data type of the Variant More... | |
DateTime | Timestamp [get] |
Gets the Timestamp More... | |
object | Value [get] |
Gets the value More... | |
![]() | |
DLR_VARIANT_TYPE | DataType [get] |
Gets the data type of the variant. More... | |
bool | IsArray [get] |
Checks if the value is an array. More... | |
bool | IsBool [get] |
Indicates whether the Variant contains a boolean value More... | |
bool | IsFlatbuffers [get] |
Checks if the value is flatbuffers. More... | |
bool | IsNull [get] |
Checks if the value is null. More... | |
bool | IsNumber [get] |
Indicates whether the Variant contains a numeric value Returns false for numeric arrays and booleans More... | |
bool | IsString [get] |
Indicates whether the Variant contains a string value More... | |
string | JsonDataType [get] |
Gets the data type as JSON string. More... | |
DateTime | Timestamp [get] |
Gets the time stamp of the variant. More... | |
object | Value [get] |
Gets the value of the variant. More... | |
![]() | |
bool | IsDisposed [get] |
Checks disposed More... | |
Variant class
Definition at line 15 of file Variant.cs.
|
inline |
Creates a Variant
Definition at line 128 of file Variant.cs.
Referenced by Variant.Clone(), and Variant.operator Variant().
Creates a Variant
ArgumentNullException | Argument cannot be null. |
InvalidOperationException | Object can't be created |
Definition at line 141 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 163 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 178 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 192 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 206 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 220 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 234 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 248 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 262 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 276 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 290 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 304 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
Definition at line 318 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 333 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 348 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 363 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 378 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 393 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 408 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 423 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 438 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 453 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 468 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 483 of file Variant.cs.
|
inline |
Creates a Variant
value | The value of the Variant |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 498 of file Variant.cs.
|
inline |
Creates a Variant
flatBuffers | The Flatbuffers |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 513 of file Variant.cs.
|
inline |
Creates a Variant
builder | The FlatBufferBuilder |
InvalidOperationException | Object can't be created |
ArgumentNullException | Argument cannot be null. |
Definition at line 528 of file Variant.cs.
|
inline |
Checks if the Variant is convertable to given data type
type |
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1717 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Clones the Variant
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1687 of file Variant.cs.
References Variant.IsDisposed, and Variant.Variant().
|
inline |
Dispose
Definition at line 114 of file Variant.cs.
|
inlineprotectedvirtual |
Dispose the object
disposing |
Definition at line 68 of file Variant.cs.
References Variant.IsDisposed.
|
inline |
Returns true if this Variant equals given object
obj | The other object |
Definition at line 551 of file Variant.cs.
Referenced by Variant.Equals(), Variant.operator!=(), and Variant.operator==().
|
inline |
Returns true if this Variant equals given Variant
other | The other Variant |
Implements IVariant.
Definition at line 562 of file Variant.cs.
References Variant.DataType, Variant.Equals(), Variant.ToFlatbuffers(), and Variant.Value.
|
inline |
Gets the HashCode of this Variant
Implements IVariant.
Definition at line 600 of file Variant.cs.
References Variant.Value.
|
inlinestatic |
Definition at line 1742 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1750 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1774 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1782 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1942 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1902 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1910 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1934 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1886 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1894 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1822 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1830 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1854 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1862 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1758 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1766 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1790 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1798 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1918 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1926 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1838 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1846 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1870 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1878 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1806 of file Variant.cs.
References Variant.Variant().
|
inlinestatic |
Definition at line 1814 of file Variant.cs.
References Variant.Variant().
s Unequality Operator
x | |
y |
Definition at line 664 of file Variant.cs.
References Variant.Equals().
Equality Operator
x | |
y |
Definition at line 640 of file Variant.cs.
References Variant.Equals().
|
inline |
Gets the value as bool
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 897 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as bool array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1150 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as byte
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 943 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as byte array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1220 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as double
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1127 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as double array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1500 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as Flatbuffers
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1612 of file Variant.cs.
References Variant.IsDisposed, Variant.IsFlatbuffers, and Variant.IsNull.
Referenced by Variant.Equals().
|
inline |
Gets the value as float
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1104 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as float array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1465 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as short
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 966 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as short array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1255 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as int
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1012 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as int array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1325 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as long
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1058 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as long array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1395 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as raw byte array (UTF8)
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1653 of file Variant.cs.
References Variant.IsDisposed, Variant.IsNull, and Variant.ToUInt32().
|
inline |
Gets the value as sbyte
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 920 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as sbyte array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1185 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as string
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 611 of file Variant.cs.
References Variant.IsDisposed, Variant.IsNull, and Variant.ToUInt32().
|
inline |
Gets the value as string array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1535 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as ushort
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 989 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as ushort array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1290 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as uint
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1035 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
Referenced by Variant.ToRawByteArray(), and Variant.ToString().
|
inline |
Gets the value as uint array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1360 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as ulong
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1081 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
inline |
Gets the value as ulong array
ObjectDisposedException | Cannot access a disposed object |
Implements IVariant.
Definition at line 1430 of file Variant.cs.
References Variant.IsDisposed, and Variant.IsNull.
|
static |
Gets the default Flatbuffers initial size in bytes
Definition at line 689 of file Variant.cs.
|
static |
Gets a Variant with empty string value
Definition at line 709 of file Variant.cs.
|
static |
Gets a Variant with boolean value 'false'
Definition at line 719 of file Variant.cs.
|
static |
Gets a Variant with no value of data type 'DLR_VARIANT_TYPE_UNKNOWN'
Definition at line 694 of file Variant.cs.
|
static |
Gets a Variant with value '1' of data type 'int' (Int32)
Definition at line 704 of file Variant.cs.
|
static |
Gets a Variant with boolean value 'true'
Definition at line 714 of file Variant.cs.
|
static |
Gets a Variant with value '0' of data type 'int' (Int32)
Definition at line 699 of file Variant.cs.
|
get |
Gets the data type of the Variant
ObjectDisposedException | Cannot access a disposed object |
Definition at line 1570 of file Variant.cs.
Referenced by Variant.Equals().
|
get |
Indicates whether the Variant is an array
ObjectDisposedException | Cannot access a disposed object |
Definition at line 811 of file Variant.cs.
|
get |
Indicates whether the Variant contains a boolean value
ObjectDisposedException | Cannot access a disposed object |
Definition at line 845 of file Variant.cs.
|
get |
Object is disposed
Definition at line 62 of file Variant.cs.
Referenced by Variant.CheckConvert(), Variant.Clone(), Variant.Dispose(), Variant.ToBool(), Variant.ToBoolArray(), Variant.ToByte(), Variant.ToByteArray(), Variant.ToDouble(), Variant.ToDoubleArray(), Variant.ToFlatbuffers(), Variant.ToFloat(), Variant.ToFloatArray(), Variant.ToInt16(), Variant.ToInt16Array(), Variant.ToInt32(), Variant.ToInt32Array(), Variant.ToInt64(), Variant.ToInt64Array(), Variant.ToRawByteArray(), Variant.ToSByte(), Variant.ToSByteArray(), Variant.ToString(), Variant.ToStringArray(), Variant.ToUInt16(), Variant.ToUInt16Array(), Variant.ToUInt32(), Variant.ToUInt32Array(), Variant.ToUInt64(), and Variant.ToUInt64Array().
|
get |
Indicates whether the Variant contains Flatbuffers
ObjectDisposedException | Cannot access a disposed object |
Definition at line 880 of file Variant.cs.
Referenced by Variant.ToFlatbuffers().
|
get |
Indicates whether the Variant is null
ObjectDisposedException | Cannot access a disposed object |
Definition at line 794 of file Variant.cs.
Referenced by Variant.CheckConvert(), Variant.ToBool(), Variant.ToBoolArray(), Variant.ToByte(), Variant.ToByteArray(), Variant.ToDouble(), Variant.ToDoubleArray(), Variant.ToFlatbuffers(), Variant.ToFloat(), Variant.ToFloatArray(), Variant.ToInt16(), Variant.ToInt16Array(), Variant.ToInt32(), Variant.ToInt32Array(), Variant.ToInt64(), Variant.ToInt64Array(), Variant.ToRawByteArray(), Variant.ToSByte(), Variant.ToSByteArray(), Variant.ToString(), Variant.ToStringArray(), Variant.ToUInt16(), Variant.ToUInt16Array(), Variant.ToUInt32(), Variant.ToUInt32Array(), Variant.ToUInt64(), and Variant.ToUInt64Array().
|
get |
Indicates whether the Variant contains a numeric value Returns false for numeric arrays and booleans
ObjectDisposedException | Cannot access a disposed object |
Definition at line 863 of file Variant.cs.
|
get |
Indicates whether the Variant contains a string value
ObjectDisposedException | Cannot access a disposed object |
Definition at line 828 of file Variant.cs.
|
get |
Gets the Json data type of the Variant
ObjectDisposedException | Cannot access a disposed object |
Definition at line 1595 of file Variant.cs.
|
get |
Gets the Timestamp
ObjectDisposedException | Cannot access a disposed object |
Definition at line 730 of file Variant.cs.
|
get |
Gets the value
ObjectDisposedException | Cannot access a disposed object |
Definition at line 747 of file Variant.cs.
Referenced by Variant.Equals(), and Variant.GetHashCode().