Compartir a través de


TableBatchOperation.Retrieve Método

Definición

Sobrecargas

Retrieve(String, String)
Retrieve<TElement>(String, String, List<String>)
Retrieve<TResult>(String, String, EntityResolver<TResult>, List<String>)

Retrieve(String, String)

public void Retrieve (string partitionKey, string rowKey);
member this.Retrieve : string * string -> unit
Public Sub Retrieve (partitionKey As String, rowKey As String)

Parámetros

partitionKey
String
rowKey
String

Se aplica a

Retrieve<TElement>(String, String, List<String>)

public void Retrieve<TElement> (string partitionKey, string rowkey, System.Collections.Generic.List<string> selectedColumns = default) where TElement : Microsoft.WindowsAzure.Storage.Table.ITableEntity;
member this.Retrieve : string * string * System.Collections.Generic.List<string> -> unit (requires 'Element :> Microsoft.WindowsAzure.Storage.Table.ITableEntity)
Public Sub Retrieve(Of TElement As ITableEntity) (partitionKey As String, rowkey As String, Optional selectedColumns As List(Of String) = Nothing)

Parámetros de tipo

TElement

Parámetros

partitionKey
String
rowkey
String
selectedColumns
List<String>

Se aplica a

Retrieve<TResult>(String, String, EntityResolver<TResult>, List<String>)

public void Retrieve<TResult> (string partitionKey, string rowkey, Microsoft.WindowsAzure.Storage.Table.EntityResolver<TResult> resolver, System.Collections.Generic.List<string> selectedColumns = default);
member this.Retrieve : string * string * Microsoft.WindowsAzure.Storage.Table.EntityResolver<'Result> * System.Collections.Generic.List<string> -> unit
Public Sub Retrieve(Of TResult) (partitionKey As String, rowkey As String, resolver As EntityResolver(Of TResult), Optional selectedColumns As List(Of String) = Nothing)

Parámetros de tipo

TResult

Parámetros

partitionKey
String
rowkey
String
resolver
EntityResolver<TResult>
selectedColumns
List<String>

Se aplica a