Share via


AuthenticationOperation.EndCore Method

[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]

Invokes the corresponding End method in the underlying asynchronous result implementation.

Namespace:  System.ServiceModel.DomainServices.Client.ApplicationServices
Assembly:  System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)

Syntax

'Declaration
Protected MustOverride Function EndCore ( _
    asyncResult As IAsyncResult _
) As Object
'Usage
Dim asyncResult As IAsyncResult
Dim returnValue As Object

returnValue = Me.EndCore(asyncResult)
protected abstract Object EndCore(
    IAsyncResult asyncResult
)
protected:
virtual Object^ EndCore(
    IAsyncResult^ asyncResult
) abstract
abstract EndCore : 
        asyncResult:IAsyncResult -> Object 
protected abstract function EndCore(
    asyncResult : IAsyncResult
) : Object

Parameters

  • asyncResult
    Type: System.IAsyncResult
    The asynchronous result returned by the underlying Begin call.

Return Value

Type: System.Object
The result of the End call to store in OperationBase.Result.

Remarks

This method is invoked by the callback passed into BeginCore. Any exceptions thrown will be captured in the OperationBase.Error.

See Also

Reference

AuthenticationOperation Class

System.ServiceModel.DomainServices.Client.ApplicationServices Namespace