Activity.Dispose Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Dispose(Boolean) |
When overriden by a derived type, this method releases any allocated resources. |
Dispose() |
Stops the activity if it is already started and notifies any event listeners. Nothing will happen otherwise. |
Dispose(Boolean)
- Source:
- Activity.cs
- Source:
- Activity.cs
- Source:
- Activity.cs
When overriden by a derived type, this method releases any allocated resources.
protected:
virtual void Dispose(bool disposing);
protected virtual void Dispose (bool disposing);
abstract member Dispose : bool -> unit
override this.Dispose : bool -> unit
Protected Overridable Sub Dispose (disposing As Boolean)
Parameters
- disposing
- Boolean
false
if the method is being called from the finalizer; true
if calling from user code.
Applies to
Dispose()
- Source:
- Activity.cs
- Source:
- Activity.cs
- Source:
- Activity.cs
Stops the activity if it is already started and notifies any event listeners. Nothing will happen otherwise.
public:
virtual void Dispose();
public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()