Condividi tramite


TableAttribute Constructors

Definition

Overloads

TableAttribute(String)

Initializes a new instance of the TableAttribute class.

TableAttribute(String, String)

Initializes a new instance of the TableAttribute class.

TableAttribute(String, String, String)

Initializes a new instance of the TableAttribute class.

TableAttribute(String)

Source:
TableAttribute.cs

Initializes a new instance of the TableAttribute class.

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

Parameters

tableName
String

The name of the table to which to bind.

Applies to

TableAttribute(String, String)

Source:
TableAttribute.cs

Initializes a new instance of the TableAttribute class.

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)

Parameters

tableName
String

The name of the table containing the entity.

partitionKey
String

The partition key of the entity.

Applies to

TableAttribute(String, String, String)

Source:
TableAttribute.cs

Initializes a new instance of the TableAttribute class.

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)

Parameters

tableName
String

The name of the table containing the entity.

partitionKey
String

The partition key of the entity.

rowKey
String

The row key of the entity.

Applies to