Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ServiceHost::OnClosed Method ()

 

Disposes of disposable services that are being hosted when the service host is closed.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

protected:
virtual void OnClosed() override

When overriding the OnClosed method you must ensure the base.OnClosed method is called, even if an exception occurs. The following code illustrates how to do this.

protected override void OnClosed()
{
    try
    {
        if (FaultFlagService.faultFlag == ThrowDuring.OnClosed)
        {
            FaultFlagService.faultFlag = ThrowDuring.Never;
            throw new ServiceActivationException("Faulting the service because FaultFlagService.faultFlag = ThrowDuring.OnClosed");
        }
    }
    finally
    {
        base.OnClosed();
    }
}

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft