AuthenticationService.BeginLogout 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.]
Begins an asynchronous Logout operation.
Namespace: System.ServiceModel.DomainServices.Client.ApplicationServices
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
Protected Friend MustOverride Function BeginLogout ( _
callback As AsyncCallback, _
state As Object _
) As IAsyncResult
'Usage
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
returnValue = Me.BeginLogout(callback, _
state)
protected internal abstract IAsyncResult BeginLogout(
AsyncCallback callback,
Object state
)
protected public:
virtual IAsyncResult^ BeginLogout(
AsyncCallback^ callback,
Object^ state
) abstract
abstract BeginLogout :
callback:AsyncCallback *
state:Object -> IAsyncResult
abstract function BeginLogout(
callback : AsyncCallback,
state : Object
) : IAsyncResult
Parameters
- callback
Type: System.AsyncCallback
A callback that should be invoked when the asynchronous call completes.
If the asynchronous call is canceled, the callback should not be invoked. This parameter is optional.
- state
Type: System.Object
The state that should be set into the IAsyncResult this method returns. This parameter is optional.
Return Value
Type: System.IAsyncResult
A handle that can be used to reference this asynchronous call.
Remarks
This method is invoked from Logout. Exceptions thrown from this method will prevent the operation from starting and then will be thrown from Logout.
See Also
Reference
System.ServiceModel.DomainServices.Client.ApplicationServices Namespace