RoleEnvironmentStoppingEventArgs Class
Represents the arguments for the Stopping event, which occurs when a role instance is being stopped.
Namespace: Microsoft.WindowsAzure.ServiceRuntime
Assembly: Microsoft.WindowsAzure.ServiceRuntime (in Microsoft.WindowsAzure.ServiceRuntime.dll)
Assembly: Microsoft.WindowsAzure.ServiceRuntime (in Microsoft.WindowsAzure.ServiceRuntime.dll)
You typically handle the Stopping event in the OnStart method for the role.
The following code example shows how to run code when the role instance is being stopped:
public override bool OnStart() { RoleEnvironment.Stopping += RoleEnvironmentStopping; return base.OnStart(); } private void RoleEnvironmentStopping(object sender, RoleEnvironmentStoppingEventArgs e) { // Add code that is run when the role instance is being stopped }
System.Object
System.EventArgs
Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironmentStoppingEventArgs
System.EventArgs
Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironmentStoppingEventArgs
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Development Platforms
Windows Vista, Windows 7 and Windows Server 2008Target Platforms