AuthenticationService.EndLogin 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.]

Ends an asynchronous Login operation.

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

Syntax

'Declaration
Protected Friend MustOverride Function EndLogin ( _
    asyncResult As IAsyncResult _
) As LoginResult
'Usage
Dim asyncResult As IAsyncResult
Dim returnValue As LoginResult

returnValue = Me.EndLogin(asyncResult)
protected internal abstract LoginResult EndLogin(
    IAsyncResult asyncResult
)
protected public:
virtual LoginResult^ EndLogin(
    IAsyncResult^ asyncResult
) abstract
abstract EndLogin : 
        asyncResult:IAsyncResult -> LoginResult 
 abstract function EndLogin(
    asyncResult : IAsyncResult
) : LoginResult

Parameters

Return Value

Type: System.ServiceModel.DomainServices.Client.ApplicationServices.LoginResult
The result of the operation.

Exceptions

Exception Condition
InvalidOperationException

asyncResult was not returned from BeginLogin or the asynchronous call has already been concluded with a previous call to cancel or end.

Remarks

This method is invoked when a Login operation completes. Depending on state of the operation, the RIA Services framework calls either this method or the CancelLogin method, but not both methods.

Exceptions thrown from this method will be available in Error.

See Also

Reference

AuthenticationService Class

System.ServiceModel.DomainServices.Client.ApplicationServices Namespace