TableOperation.Retrieve Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Retrieve(String, String, List<String>) | |
Retrieve<TElement>(String, String, List<String>) | |
Retrieve<TResult>(String, String, EntityResolver<TResult>, List<String>) |
Retrieve(String, String, List<String>)
public static Microsoft.WindowsAzure.Storage.Table.TableOperation Retrieve (string partitionKey, string rowkey, System.Collections.Generic.List<string> selectedColumns = default);
static member Retrieve : string * string * System.Collections.Generic.List<string> -> Microsoft.WindowsAzure.Storage.Table.TableOperation
Public Shared Function Retrieve (partitionKey As String, rowkey As String, Optional selectedColumns As List(Of String) = Nothing) As TableOperation
Parâmetros
- partitionKey
- String
- rowkey
- String
Retornos
Aplica-se a
Retrieve<TElement>(String, String, List<String>)
public static Microsoft.WindowsAzure.Storage.Table.TableOperation Retrieve<TElement> (string partitionKey, string rowkey, System.Collections.Generic.List<string> selectColumns = default) where TElement : Microsoft.WindowsAzure.Storage.Table.ITableEntity;
static member Retrieve : string * string * System.Collections.Generic.List<string> -> Microsoft.WindowsAzure.Storage.Table.TableOperation (requires 'Element :> Microsoft.WindowsAzure.Storage.Table.ITableEntity)
Public Shared Function Retrieve(Of TElement As ITableEntity) (partitionKey As String, rowkey As String, Optional selectColumns As List(Of String) = Nothing) As TableOperation
Parâmetros de tipo
- TElement
Parâmetros
- partitionKey
- String
- rowkey
- String
Retornos
Aplica-se a
Retrieve<TResult>(String, String, EntityResolver<TResult>, List<String>)
public static Microsoft.WindowsAzure.Storage.Table.TableOperation Retrieve<TResult> (string partitionKey, string rowkey, Microsoft.WindowsAzure.Storage.Table.EntityResolver<TResult> resolver, System.Collections.Generic.List<string> selectedColumns = default);
static member Retrieve : string * string * Microsoft.WindowsAzure.Storage.Table.EntityResolver<'Result> * System.Collections.Generic.List<string> -> Microsoft.WindowsAzure.Storage.Table.TableOperation
Public Shared Function Retrieve(Of TResult) (partitionKey As String, rowkey As String, resolver As EntityResolver(Of TResult), Optional selectedColumns As List(Of String) = Nothing) As TableOperation
Parâmetros de tipo
- TResult
Parâmetros
- partitionKey
- String
- rowkey
- String
- resolver
- EntityResolver<TResult>
Retornos
Aplica-se a
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.
Azure SDK for .NET