C#C++F#VB
EntityResolver<T><T><'T>(Of T) Delegate
Returns a delegate for resolving entities.
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
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 )
type EntityResolver<'T> = delegate of partitionKey:string * rowKey:string * timestamp:DateTimeOffset * properties:IDictionary<string, EntityProperty> * etag:string -> 'T
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
Return Value
Type: TType Parameters
- T
The type into which the query results are projected.