Share via


EntityProperty Constructors

Definition

Overloads

EntityProperty(Byte[])

Initializes a new instance of the EntityProperty class by using the byte array value of the property.

EntityProperty(Nullable<Boolean>)

Initializes a new instance of the EntityProperty class by using the Boolean value of the property.

EntityProperty(Nullable<DateTime>)

Initializes a new instance of the EntityProperty class by using the DateTime value of the property.

EntityProperty(Nullable<DateTimeOffset>)

Initializes a new instance of the EntityProperty class by using the DateTimeOffset value of the property.

EntityProperty(Nullable<Double>)

Initializes a new instance of the EntityProperty class by using the Double value of the property.

EntityProperty(Nullable<Guid>)

Initializes a new instance of the EntityProperty class by using the Guid value of the property.

EntityProperty(Nullable<Int32>)

Initializes a new instance of the EntityProperty class by using the Int32 value of the property.

EntityProperty(Nullable<Int64>)

Initializes a new instance of the EntityProperty class by using the Int64 value of the property.

EntityProperty(String)

Initializes a new instance of the EntityProperty class by using the String value of the property.

EntityProperty(Byte[])

Initializes a new instance of the EntityProperty class by using the byte array value of the property.

public EntityProperty (byte[] input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : byte[] -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Byte())

Parameters

input
Byte[]

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<Boolean>)

Initializes a new instance of the EntityProperty class by using the Boolean value of the property.

public EntityProperty (bool? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<bool> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of Boolean))

Parameters

input
Nullable<Boolean>

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<DateTime>)

Initializes a new instance of the EntityProperty class by using the DateTime value of the property.

public EntityProperty (DateTime? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<DateTime> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of DateTime))

Parameters

input
Nullable<DateTime>

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<DateTimeOffset>)

Initializes a new instance of the EntityProperty class by using the DateTimeOffset value of the property.

public EntityProperty (DateTimeOffset? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<DateTimeOffset> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of DateTimeOffset))

Parameters

input
Nullable<DateTimeOffset>

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<Double>)

Initializes a new instance of the EntityProperty class by using the Double value of the property.

public EntityProperty (double? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<double> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of Double))

Parameters

input
Nullable<Double>

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<Guid>)

Initializes a new instance of the EntityProperty class by using the Guid value of the property.

public EntityProperty (Guid? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<Guid> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of Guid))

Parameters

input
Nullable<Guid>

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<Int32>)

Initializes a new instance of the EntityProperty class by using the Int32 value of the property.

public EntityProperty (int? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<int> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of Integer))

Parameters

input
Nullable<Int32>

The value for the new EntityProperty.

Applies to

EntityProperty(Nullable<Int64>)

Initializes a new instance of the EntityProperty class by using the Int64 value of the property.

public EntityProperty (long? input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : Nullable<int64> -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As Nullable(Of Long))

Parameters

input
Nullable<Int64>

The value for the new EntityProperty.

Applies to

EntityProperty(String)

Initializes a new instance of the EntityProperty class by using the String value of the property.

public EntityProperty (string input);
new Microsoft.Azure.Cosmos.Table.EntityProperty : string -> Microsoft.Azure.Cosmos.Table.EntityProperty
Public Sub New (input As String)

Parameters

input
String

The value for the new EntityProperty.

Applies to