Share via


TVVMbase.Dispose Method

Performs the tasks associated with freeing, releasing, and resetting resources. This is part of the standard dispose pattern. This method can be overridden for the derived class that is disposing of managed and unmanaged resources.

Overload List

  public virtual void Dispose();
protected virtual void Dispose(
  bool  disposing
);

Parameters

disposing

System.Boolean. If true, the method has been called directly or indirectly by the iTVVM application code. Managed and unmanaged resources can be disposed.

If false, the method has been called by the .NET runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed.

Return Value

This method does not return a value.

Requirements

Reference: Microsoft.MediaCenter.ITVVM

Namespace: Microsoft.MediaCenter.TVVM

Assembly: Microsoft.MediaCenter.ITVVM.dll

Platform: Windows 7

See Also