Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

EntityResolver(T) Delegate (Microsoft.WindowsAzure.Storage.Table)

Returns a delegate for resolving entities.

Namespace:   Microsoft.WindowsAzure.Storage.Table
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
)
 
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(OfString, EntityProperty),
	etag As String
) As T

Return Value

Type: T

Type Parameters

T

The type into which the query results are projected.

Return to top