TableOperation.Retrieve 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.
Overloads
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
Parameters
- partitionKey
- String
- rowkey
- String
Returns
Applies to
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
Type Parameters
- TElement
Parameters
- partitionKey
- String
- rowkey
- String
Returns
Applies to
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
Type Parameters
- TResult
Parameters
- partitionKey
- String
- rowkey
- String
- resolver
- EntityResolver<TResult>
Returns
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET