Struct RealmValue
Assembly: Realm.dll
Syntax
[Preserve(AllMembers = true)]
public readonly struct RealmValue : IEquatable<RealmValue>
Examples
public class MyClass : RealmObject
{
public RealmValue MyValue { get; set; }
}
var obj = new MyClass();
obj.MyValue = 123;
obj.MyValue = "abc";
if (obj.Type == RealmValueType.Int)
{
var myInt = obj.MyValue.AsLong();
}
Properties
|
Improve this Doc
View Source
Null
Gets a RealmValue representing null
.
Declaration
public static readonly RealmValue Null { get; }
Property Value
|
Improve this Doc
View Source
ObjectType
Gets the name of the type of the object contained in RealmValue.
If it does not contain an object, it will return null.
Declaration
public readonly string ObjectType { get; }
Property Value
Type |
Description |
String |
The name of the type stored in RealmValue if an object, null otherwise.
|
|
Improve this Doc
View Source
Type
Declaration
public readonly RealmValueType Type { get; }
Property Value
Methods
|
Improve this Doc
View Source
As<T>()
Returns the stored value converted to T
.
Declaration
public readonly T As<T>()
Returns
Type |
Description |
T |
The underlying value converted to T .
|
Type Parameters
Name |
Description |
T |
The type to which to convert the value.
|
Exceptions
|
Improve this Doc
View Source
AsAny()
Returns the stored value boxed in Object.
Declaration
public readonly object AsAny()
Returns
Type |
Description |
Object |
The underlying value.
|
|
Improve this Doc
View Source
AsBool()
Returns the stored value as a Boolean.
Declaration
public readonly bool AsBool()
Returns
Type |
Description |
Boolean |
A boolean representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsByte()
Returns the stored value as a Byte.
Declaration
public readonly byte AsByte()
Returns
Type |
Description |
Byte |
An 8-bit unsigned integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsByteRealmInteger()
Returns the stored value as a RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<byte> AsByteRealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsChar()
Returns the stored value as a Char.
Declaration
public readonly char AsChar()
Returns
Type |
Description |
Char |
A UTF-16 code unit representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsData()
Returns the stored value as an array of bytes.
Declaration
public readonly byte[] AsData()
Returns
Type |
Description |
Byte[] |
An array of bytes representing the value stored in the database. It will be null if Type is Null.
|
Exceptions
|
Improve this Doc
View Source
AsDate()
Declaration
public readonly DateTimeOffset AsDate()
Returns
Type |
Description |
DateTimeOffset |
A DateTimeOffset value representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsDecimal()
Returns the stored value as a Decimal.
Declaration
public readonly decimal AsDecimal()
Returns
Type |
Description |
Decimal |
A 96-bit decimal number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsDecimal128()
Returns the stored value as a MongoDB.Bson.Decimal128.
Declaration
public readonly Decimal128 AsDecimal128()
Returns
Type |
Description |
MongoDB.Bson.Decimal128 |
A 128-bit decimal number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsDouble()
Returns the stored value as a Double.
Declaration
public readonly double AsDouble()
Returns
Type |
Description |
Double |
A 64-bit floating point number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsFloat()
Returns the stored value as a Single.
Declaration
public readonly float AsFloat()
Returns
Type |
Description |
Single |
A 32-bit floating point number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsGuid()
Returns the stored value as a Guid.
Declaration
public readonly Guid AsGuid()
Returns
Type |
Description |
Guid |
A Guid representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsInt16()
Returns the stored value as a Int16 (Int16).
Declaration
public readonly short AsInt16()
Returns
Type |
Description |
Int16 |
A 16-bit integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsInt16RealmInteger()
Returns the stored value as a RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<short> AsInt16RealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsInt32()
Returns the stored value as an Int32 (Int32).
Declaration
public readonly int AsInt32()
Returns
Type |
Description |
Int32 |
A 32-bit integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsInt32RealmInteger()
Returns the stored value as a RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<int> AsInt32RealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsInt64()
Returns the stored value as a Int64 (Int64).
Declaration
public readonly long AsInt64()
Returns
Type |
Description |
Int64 |
A 64-bit integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsInt64RealmInteger()
Returns the stored value as a RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<long> AsInt64RealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsIRealmObject()
Declaration
public readonly IRealmObjectBase AsIRealmObject()
Returns
Exceptions
|
Improve this Doc
View Source
AsNullableBool()
Returns the stored value as a nullable Boolean.
Declaration
public readonly bool? AsNullableBool()
Returns
Type |
Description |
Nullable<Boolean> |
A nullable boolean representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableByte()
Returns the stored value as a nullable Byte.
Declaration
public readonly byte? AsNullableByte()
Returns
Type |
Description |
Nullable<Byte> |
A nullable 8-bit unsigned integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableByteRealmInteger()
Returns the stored value as a nullable RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<byte>? AsNullableByteRealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableChar()
Returns the stored value as a nullable Char.
Declaration
public readonly char? AsNullableChar()
Returns
Type |
Description |
Nullable<Char> |
A nullable UTF-16 code unit representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableDate()
Declaration
public readonly DateTimeOffset? AsNullableDate()
Returns
Type |
Description |
Nullable<DateTimeOffset> |
A nullable DateTimeOffset value representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableDecimal()
Returns the stored value as a nullable Decimal.
Declaration
public readonly decimal? AsNullableDecimal()
Returns
Type |
Description |
Nullable<Decimal> |
A nullable 96-bit decimal number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableDecimal128()
Returns the stored value as a nullable MongoDB.Bson.Decimal128.
Declaration
public readonly Decimal128? AsNullableDecimal128()
Returns
Type |
Description |
Nullable<MongoDB.Bson.Decimal128> |
A nullable 128-bit decimal number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableDouble()
Returns the stored value as a nullable Double.
Declaration
public readonly double? AsNullableDouble()
Returns
Type |
Description |
Nullable<Double> |
A nullable 64-bit floating point number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableFloat()
Returns the stored value as a nullable Single.
Declaration
public readonly float? AsNullableFloat()
Returns
Type |
Description |
Nullable<Single> |
A nullable 32-bit floating point number representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableGuid()
Returns the stored value as a nullable Guid.
Declaration
public readonly Guid? AsNullableGuid()
Returns
Type |
Description |
Nullable<Guid> |
A nullable Guid representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsNullableInt16()
Returns the stored value as a nullable Int16.
Declaration
public readonly short? AsNullableInt16()
Returns
Type |
Description |
Nullable<Int16> |
A nullable 16-bit integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableInt16RealmInteger()
Returns the stored value as a nullable RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<short>? AsNullableInt16RealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableInt32()
Returns the stored value as a nullable Int32.
Declaration
public readonly int? AsNullableInt32()
Returns
Type |
Description |
Nullable<Int32> |
A nullable 32-bit integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableInt32RealmInteger()
Returns the stored value as a nullable RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<int>? AsNullableInt32RealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableInt64()
Returns the stored value as a nullable Int64.
Declaration
public readonly long? AsNullableInt64()
Returns
Type |
Description |
Nullable<Int64> |
A nullable 64-bit integer representing the value stored in the database.
|
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableInt64RealmInteger()
Returns the stored value as a nullable RealmInteger<T>. It offers Increment/Decrement API that preserve intent when merging
conflicts.
Declaration
public readonly RealmInteger<long>? AsNullableInt64RealmInteger()
Returns
Exceptions
See Also
|
Improve this Doc
View Source
AsNullableObjectId()
Returns the stored value as a nullable MongoDB.Bson.ObjectId.
Declaration
public readonly ObjectId? AsNullableObjectId()
Returns
Type |
Description |
Nullable<MongoDB.Bson.ObjectId> |
A nullable ObjectId representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsObjectId()
Returns the stored value as an MongoDB.Bson.ObjectId.
Declaration
public readonly ObjectId AsObjectId()
Returns
Type |
Description |
MongoDB.Bson.ObjectId |
An ObjectId representing the value stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsRealmObject()
Declaration
public readonly RealmObjectBase AsRealmObject()
Returns
Exceptions
|
Improve this Doc
View Source
AsRealmObject<T>()
Declaration
public readonly T AsRealmObject<T>()
where T : IRealmObjectBase
Returns
Type |
Description |
T |
A RealmObjectBase instance representing the value stored in the database. It will be null if Type is Null.
|
Type Parameters
Name |
Description |
T |
The type of the object stored in the database.
|
Exceptions
|
Improve this Doc
View Source
AsString()
Returns the stored value as a string.
Declaration
public readonly string AsString()
Returns
Type |
Description |
String |
A string representing the value stored in the database. It will be null if Type is Null.
|
Exceptions
|
Improve this Doc
View Source
Equals(RealmValue)
Indicates whether the current object is equal to another object of the same type.
Declaration
public readonly bool Equals(RealmValue other)
Parameters
Type |
Name |
Description |
RealmValue |
other |
An object to compare with this object.
|
Returns
Type |
Description |
Boolean |
true if the current object is equal to the other parameter; otherwise, false.
|
|
Improve this Doc
View Source
ToString()
Returns the string representation of this RealmValue.
Declaration
public override readonly string ToString()
Returns
Type |
Description |
String |
A string describing the value.
|
Overrides
Operators
|
Improve this Doc
View Source
Equality(RealmValue, RealmValue)
Declaration
public static bool operator ==(RealmValue left, RealmValue right)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Decimal128)
Declaration
public static explicit operator Decimal128(RealmValue val)
Parameters
Returns
Type |
Description |
MongoDB.Bson.Decimal128 |
|
|
Improve this Doc
View Source
Explicit(RealmValue to ObjectId)
Declaration
public static explicit operator ObjectId(RealmValue val)
Parameters
Returns
Type |
Description |
MongoDB.Bson.ObjectId |
|
|
Improve this Doc
View Source
Explicit(RealmValue to RealmInteger<Byte>)
Declaration
public static explicit operator RealmInteger<byte>(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to RealmInteger<Int16>)
Declaration
public static explicit operator RealmInteger<short>(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to RealmInteger<Int32>)
Declaration
public static explicit operator RealmInteger<int>(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to RealmInteger<Int64>)
Declaration
public static explicit operator RealmInteger<long>(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to RealmObjectBase)
Declaration
public static explicit operator RealmObjectBase(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Boolean)
Declaration
public static explicit operator bool (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Byte)
Declaration
public static explicit operator byte (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Byte[])
Declaration
public static explicit operator byte[](RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Char)
Declaration
public static explicit operator char (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to DateTimeOffset)
Declaration
public static explicit operator DateTimeOffset(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Decimal)
Declaration
public static explicit operator decimal (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Double)
Declaration
public static explicit operator double (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Guid)
Declaration
public static explicit operator Guid(RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Int16)
Declaration
public static explicit operator short (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Int32)
Declaration
public static explicit operator int (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Int64)
Declaration
public static explicit operator long (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Decimal128>)
Declaration
public static explicit operator Decimal128? (RealmValue val)
Parameters
Returns
Type |
Description |
Nullable<MongoDB.Bson.Decimal128> |
|
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<ObjectId>)
Declaration
public static explicit operator ObjectId? (RealmValue val)
Parameters
Returns
Type |
Description |
Nullable<MongoDB.Bson.ObjectId> |
|
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<RealmInteger<Byte>>)
Declaration
public static explicit operator RealmInteger<byte>? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<RealmInteger<Int16>>)
Declaration
public static explicit operator RealmInteger<short>? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<RealmInteger<Int32>>)
Declaration
public static explicit operator RealmInteger<int>? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<RealmInteger<Int64>>)
Declaration
public static explicit operator RealmInteger<long>? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Boolean>)
Declaration
public static explicit operator bool? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Byte>)
Declaration
public static explicit operator byte? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Char>)
Declaration
public static explicit operator char? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<DateTimeOffset>)
Declaration
public static explicit operator DateTimeOffset? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Decimal>)
Declaration
public static explicit operator decimal? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Double>)
Declaration
public static explicit operator double? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Guid>)
Declaration
public static explicit operator Guid? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Int16>)
Declaration
public static explicit operator short? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Int32>)
Declaration
public static explicit operator int? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Int64>)
Declaration
public static explicit operator long? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Nullable<Single>)
Declaration
public static explicit operator float? (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to Single)
Declaration
public static explicit operator float (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Explicit(RealmValue to String)
Declaration
public static explicit operator string (RealmValue val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Decimal128 to RealmValue)
Declaration
public static implicit operator RealmValue(Decimal128 val)
Parameters
Type |
Name |
Description |
MongoDB.Bson.Decimal128 |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(ObjectId to RealmValue)
Declaration
public static implicit operator RealmValue(ObjectId val)
Parameters
Type |
Name |
Description |
MongoDB.Bson.ObjectId |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(RealmInteger<Byte> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<byte> val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(RealmInteger<Int16> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<short> val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(RealmInteger<Int32> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<int> val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(RealmInteger<Int64> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<long> val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(RealmObjectBase to RealmValue)
Declaration
public static implicit operator RealmValue(RealmObjectBase val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Boolean to RealmValue)
Declaration
public static implicit operator RealmValue(bool val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Byte to RealmValue)
Declaration
public static implicit operator RealmValue(byte val)
Parameters
Type |
Name |
Description |
Byte |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Byte[] to RealmValue)
Declaration
public static implicit operator RealmValue(byte[] val)
Parameters
Type |
Name |
Description |
Byte[] |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Char to RealmValue)
Declaration
public static implicit operator RealmValue(char val)
Parameters
Type |
Name |
Description |
Char |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(DateTimeOffset to RealmValue)
Declaration
public static implicit operator RealmValue(DateTimeOffset val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Decimal to RealmValue)
Declaration
public static implicit operator RealmValue(decimal val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Double to RealmValue)
Declaration
public static implicit operator RealmValue(double val)
Parameters
Type |
Name |
Description |
Double |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Guid to RealmValue)
Declaration
public static implicit operator RealmValue(Guid val)
Parameters
Type |
Name |
Description |
Guid |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Int16 to RealmValue)
Declaration
public static implicit operator RealmValue(short val)
Parameters
Type |
Name |
Description |
Int16 |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Int32 to RealmValue)
Declaration
public static implicit operator RealmValue(int val)
Parameters
Type |
Name |
Description |
Int32 |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Int64 to RealmValue)
Declaration
public static implicit operator RealmValue(long val)
Parameters
Type |
Name |
Description |
Int64 |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Decimal128> to RealmValue)
Declaration
public static implicit operator RealmValue(Decimal128? val)
Parameters
Type |
Name |
Description |
Nullable<MongoDB.Bson.Decimal128> |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Nullable<ObjectId> to RealmValue)
Declaration
public static implicit operator RealmValue(ObjectId? val)
Parameters
Type |
Name |
Description |
Nullable<MongoDB.Bson.ObjectId> |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(Nullable<RealmInteger<Byte>> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<byte>? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<RealmInteger<Int16>> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<short>? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<RealmInteger<Int32>> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<int>? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<RealmInteger<Int64>> to RealmValue)
Declaration
public static implicit operator RealmValue(RealmInteger<long>? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Boolean> to RealmValue)
Declaration
public static implicit operator RealmValue(bool? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Byte> to RealmValue)
Declaration
public static implicit operator RealmValue(byte? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Char> to RealmValue)
Declaration
public static implicit operator RealmValue(char? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<DateTimeOffset> to RealmValue)
Declaration
public static implicit operator RealmValue(DateTimeOffset? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Decimal> to RealmValue)
Declaration
public static implicit operator RealmValue(decimal? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Double> to RealmValue)
Declaration
public static implicit operator RealmValue(double? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Guid> to RealmValue)
Declaration
public static implicit operator RealmValue(Guid? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Int16> to RealmValue)
Declaration
public static implicit operator RealmValue(short? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Int32> to RealmValue)
Declaration
public static implicit operator RealmValue(int? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Int64> to RealmValue)
Declaration
public static implicit operator RealmValue(long? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Nullable<Single> to RealmValue)
Declaration
public static implicit operator RealmValue(float? val)
Parameters
Returns
|
Improve this Doc
View Source
Implicit(Single to RealmValue)
Declaration
public static implicit operator RealmValue(float val)
Parameters
Type |
Name |
Description |
Single |
val |
|
Returns
|
Improve this Doc
View Source
Implicit(String to RealmValue)
Declaration
public static implicit operator RealmValue(string val)
Parameters
Type |
Name |
Description |
String |
val |
|
Returns
|
Improve this Doc
View Source
Inequality(RealmValue, RealmValue)
Declaration
public static bool operator !=(RealmValue left, RealmValue right)
Parameters
Returns
Implements