你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EntityProperty 构造函数

定义

重载

EntityProperty(Byte[])

使用属性的字节数组值初始化 EntityProperty 类的新实例。

EntityProperty(Nullable<Boolean>)

使用属性的 EntityProperty 值初始化 Boolean 类的新实例。

EntityProperty(Nullable<DateTime>)

使用属性的 EntityProperty 值初始化 DateTime 类的新实例。

EntityProperty(Nullable<DateTimeOffset>)

使用属性的 EntityProperty 值初始化 DateTimeOffset 类的新实例。

EntityProperty(Nullable<Double>)

使用属性的 EntityProperty 值初始化 Double 类的新实例。

EntityProperty(Nullable<Guid>)

使用属性的 EntityProperty 值初始化 Guid 类的新实例。

EntityProperty(Nullable<Int32>)

使用属性的 EntityProperty 值初始化 Int32 类的新实例。

EntityProperty(Nullable<Int64>)

使用属性的 EntityProperty 值初始化 Int64 类的新实例。

EntityProperty(String)

使用属性的 EntityProperty 值初始化 String 类的新实例。

EntityProperty(Byte[])

使用属性的字节数组值初始化 EntityProperty 类的新实例。

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

参数

input
Byte[]

EntityProperty 的值。

适用于

EntityProperty(Nullable<Boolean>)

使用属性的 EntityProperty 值初始化 Boolean 类的新实例。

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))

参数

input
Nullable<Boolean>

EntityProperty 的值。

适用于

EntityProperty(Nullable<DateTime>)

使用属性的 EntityProperty 值初始化 DateTime 类的新实例。

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))

参数

input
Nullable<DateTime>

EntityProperty 的值。

适用于

EntityProperty(Nullable<DateTimeOffset>)

使用属性的 EntityProperty 值初始化 DateTimeOffset 类的新实例。

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))

参数

input
Nullable<DateTimeOffset>

EntityProperty 的值。

适用于

EntityProperty(Nullable<Double>)

使用属性的 EntityProperty 值初始化 Double 类的新实例。

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))

参数

input
Nullable<Double>

EntityProperty 的值。

适用于

EntityProperty(Nullable<Guid>)

使用属性的 EntityProperty 值初始化 Guid 类的新实例。

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))

参数

input
Nullable<Guid>

EntityProperty 的值。

适用于

EntityProperty(Nullable<Int32>)

使用属性的 EntityProperty 值初始化 Int32 类的新实例。

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))

参数

input
Nullable<Int32>

EntityProperty 的值。

适用于

EntityProperty(Nullable<Int64>)

使用属性的 EntityProperty 值初始化 Int64 类的新实例。

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))

参数

input
Nullable<Int64>

EntityProperty 的值。

适用于

EntityProperty(String)

使用属性的 EntityProperty 值初始化 String 类的新实例。

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

参数

input
String

EntityProperty 的值。

适用于