C# Class Elmah.AsyncResult

Inheritance: IAsyncResult
Afficher le fichier Open project: elmah/Elmah Class Usage Examples

Méthodes publiques

Méthode Description
Complete ( ) : bool
Complete ( Exception exception ) : bool
Complete ( Exception exception, bool completedSynchronously ) : bool
End ( IAsyncResult result, object owner, string operationId ) : void

Méthodes protégées

Méthode Description
AsyncResult ( AsyncCallback asyncCallback, object state, object owner, string operationId ) : System
Completed ( Exception exception, bool completedSynchronously ) : void
Completing ( Exception exception, bool completedSynchronously ) : void
MakeCallback ( AsyncCallback callback, AsyncResult result ) : void

Private Methods

Méthode Description
CheckUsage ( object owner, string operationId ) : void
Process ( ) : void

Method Details

AsyncResult() protected méthode

protected AsyncResult ( AsyncCallback asyncCallback, object state, object owner, string operationId ) : System
asyncCallback AsyncCallback
state object
owner object
operationId string
Résultat System

Complete() public méthode

public Complete ( ) : bool
Résultat bool

Complete() public méthode

public Complete ( Exception exception ) : bool
exception System.Exception
Résultat bool

Complete() public méthode

public Complete ( Exception exception, bool completedSynchronously ) : bool
exception System.Exception
completedSynchronously bool
Résultat bool

Completed() protected méthode

protected Completed ( Exception exception, bool completedSynchronously ) : void
exception System.Exception
completedSynchronously bool
Résultat void

Completing() protected méthode

protected Completing ( Exception exception, bool completedSynchronously ) : void
exception System.Exception
completedSynchronously bool
Résultat void

End() public static méthode

public static End ( IAsyncResult result, object owner, string operationId ) : void
result IAsyncResult
owner object
operationId string
Résultat void

MakeCallback() protected méthode

protected MakeCallback ( AsyncCallback callback, AsyncResult result ) : void
callback AsyncCallback
result AsyncResult
Résultat void