OperationContext::OperationCompleted Event
Occurs when the operation has completed.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Use the OperationCompleted event to dispose parameters or a return value if you set OperationBehaviorAttribute::AutoDisposeParameters to false. Normally you set OperationBehaviorAttribute::AutoDisposeParameters to false to prevent WCF from calling IDisposable::Dispose on the parameter and return value objects. However, if some parameters need to be preserved while others need to be disposed, this event is the best place to dispose those parameters.
Also, with duplex bindings, this event can be used to send a request on the callback channel after the reply for the current operation is sent.
Note |
|---|
If a caller is listening for the OperationContext::OperationCompleted event for an OperationContractAttribute::IsTerminating operation, it is possible to block when the response is received. The proper way to handle this is to schedule work on another thread when OperationCompleted is raised and then immediately return from that event handler. |
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
