Click or drag to resize

OperationResultSetCallback Method

Sets the callback to call when a pending operation completes.

Namespace:  FastProxy
Assembly:  FastProxy (in FastProxy.dll) Version: 0.2.0.0
Syntax
C#
public void SetCallback(
	Action<OperationOutcome> callback
)

Parameters

callback
Type: SystemActionOperationOutcome
Remarks

Operation results that are created through a OperationContinuation will have their output set at a later time. This method assigns the callback to be called when that operation does complete.

If this operation result is not created through a OperationContinuation, the callback will be called immediately with the actual outcome.

See Also