TableAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET