AzureTableDataManager<T>.ReadSingleTableEntryAsync Method
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.
Read a single table entry from the storage table.
public System.Threading.Tasks.Task<Tuple<T,string>> ReadSingleTableEntryAsync (string partitionKey, string rowKey);
member this.ReadSingleTableEntryAsync : string * string -> System.Threading.Tasks.Task<'T * string>
Public Function ReadSingleTableEntryAsync (partitionKey As String, rowKey As String) As Task(Of Tuple(Of T, String))
Parameters
- partitionKey
- String
The partition key for the entry.
- rowKey
- String
The row key for the entry.
Returns
Value promise for tuple containing the data entry and its corresponding etag.