Share via


IAttributeStore.EndExecuteQuery Method (IAsyncResult)

 

Called by the Active Directory® Federation Services (AD FS) 2.0 policy engine to get the result of query execution.

Namespace:   Microsoft.IdentityServer.ClaimsPolicy.Engine.AttributeStore
Assembly:  Microsoft.IdentityServer.ClaimsPolicy (in Microsoft.IdentityServer.ClaimsPolicy.dll)

Syntax

string[][] EndExecuteQuery(
    IAsyncResult result
)
array<array<String^>^>^ EndExecuteQuery(
    IAsyncResult^ result
)
abstract EndExecuteQuery : 
        result:IAsyncResult -> string[][]
Function EndExecuteQuery (
    result As IAsyncResult
) As String()()

Parameters

Return Value

Type: System.String[][]

A two dimensional string array that contains the result of the query. The columns in the array represent claim types, and the rows represent claim values.

Remarks

This method should block until the query completes.

For a detailed overview of AD FS 2.0 attribute stores, as well as information, including code samples, about how to implement custom attribute stores, see AD FS 2.0 Attribute Store Overview.

See Also

IAttributeStore Interface
Microsoft.IdentityServer.ClaimsPolicy.Engine.AttributeStore Namespace

Return to top