EntityResolver Delegate
From Windows Runtime Azure Storage Client Library
Returns a delegate for resolving entities.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
| Visual Basic |
|---|
Dim instance As New EntityResolver(Of T)(AddressOf HandlerMethod) |
Syntax
| Visual Basic |
|---|
Public Delegate Function EntityResolver(Of T) ( _ partitionKey As String, _ rowKey As String, _ timestamp As DateTimeOffset, _ properties As IDictionary(Of String, EntityProperty), _ etag As String _ ) As T |
| C# |
|---|
public delegate T EntityResolver<T> ( string partitionKey, string rowKey, DateTimeOffset timestamp, IDictionary<string,EntityProperty> properties, string etag ) |
| C++ |
|---|
generic<typename T> public delegate T EntityResolver ( String^ partitionKey, String^ rowKey, DateTimeOffset timestamp, IDictionary<String^, EntityProperty^>^ properties, String^ etag ) |
| J# |
|---|
| JScript |
|---|
GenericParameters
- T
The type into which the query results are projected.