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

TableAttribute 构造函数

定义

重载

TableAttribute(String)

初始化 TableAttribute 类的新实例。

TableAttribute(String, String)

初始化 TableAttribute 类的新实例。

TableAttribute(String, String, String)

初始化 TableAttribute 类的新实例。

TableAttribute(String)

Source:
TableAttribute.cs

初始化 TableAttribute 类的新实例。

public TableAttribute (string tableName);
new Microsoft.Azure.WebJobs.TableAttribute : string -> Microsoft.Azure.WebJobs.TableAttribute
Public Sub New (tableName As String)

参数

tableName
String

要绑定到的表的名称。

适用于

TableAttribute(String, String)

Source:
TableAttribute.cs

初始化 TableAttribute 类的新实例。

public TableAttribute (string tableName, string partitionKey);
new Microsoft.Azure.WebJobs.TableAttribute : string * string -> Microsoft.Azure.WebJobs.TableAttribute
Public Sub New (tableName As String, partitionKey As String)

参数

tableName
String

包含实体的表的名称。

partitionKey
String

实体的分区键。

适用于

TableAttribute(String, String, String)

Source:
TableAttribute.cs

初始化 TableAttribute 类的新实例。

public TableAttribute (string tableName, string partitionKey, string rowKey);
new Microsoft.Azure.WebJobs.TableAttribute : string * string * string -> Microsoft.Azure.WebJobs.TableAttribute
Public Sub New (tableName As String, partitionKey As String, rowKey As String)

参数

tableName
String

包含实体的表的名称。

partitionKey
String

实体的分区键。

rowKey
String

实体的行键。

适用于