Click or drag to resize

OperationContinuationSetCallback Method

Sets the callback to be called when the outcome is set.

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

Parameters

callback
Type: SystemActionOperationOutcome
The callback to call when the operation completes.
Remarks

This method can only be called once. If the outcome is already set, the this OperationContinuation will be set to completed and the callback will be called immediately. Otherwise the callback will be stored and called when the operation does complete.

See Also