C# Class NetServ.Net.Json.Disposable

Defines a base for a class which implements the Disposable pattern. This class is abstract.
Inheritance: System.MarshalByRefObject, IDisposable
Mostra file Open project: appcelerator/entourage

Protected Methods

Method Description
CheckDisposed ( ) : void

Helper method to throw a System.ObjectDisposedException if this instance has been disposed of.

Dispose ( bool disposing ) : void

Disposes of this instance.

Private Methods

Method Description
IDisposable ( ) : void

Method Details

CheckDisposed() protected method

Helper method to throw a System.ObjectDisposedException if this instance has been disposed of.
protected CheckDisposed ( ) : void
return void

Dispose() protected method

Disposes of this instance.
protected Dispose ( bool disposing ) : void
disposing bool True if being called explicitly, otherwise; false /// to indicate being called implicitly by the GC.
return void