C# Class Opc.Ua.WcfChannelBase.WcfChannelAsyncResult

An async result object that wraps the WCF channel.
Inheritance: AsyncResultBase
Afficher le fichier Open project: OPCFoundation/UA-.NETStandardLibrary

Méthodes publiques

Méthode Description
OnOperationCompleted ( IAsyncResult ar ) : void

Called when asynchronous operation completes.

WaitForComplete ( IAsyncResult ar ) : WcfChannelAsyncResult

Checks for a valid IAsyncResult object and waits for the operation to complete.

WcfChannelAsyncResult ( TChannel channel, AsyncCallback callback, object callbackData ) : System

Initializes a new instance of the WcfChannelAsyncResult class.

Method Details

OnOperationCompleted() public méthode

Called when asynchronous operation completes.
public OnOperationCompleted ( IAsyncResult ar ) : void
ar IAsyncResult The asynchronous result object.
Résultat void

WaitForComplete() public static méthode

Checks for a valid IAsyncResult object and waits for the operation to complete.
public static WaitForComplete ( IAsyncResult ar ) : WcfChannelAsyncResult
ar IAsyncResult The IAsyncResult object for the operation.
Résultat WcfChannelAsyncResult

WcfChannelAsyncResult() public méthode

Initializes a new instance of the WcfChannelAsyncResult class.
public WcfChannelAsyncResult ( TChannel channel, AsyncCallback callback, object callbackData ) : System
channel TChannel The channel.
callback AsyncCallback The callback.
callbackData object The callback data.
Résultat System