HtmlKit.HtmlWriter.Dispose C# (CSharp) Method

Dispose() public method

Releases all resource used by the HtmlKit.HtmlWriter object.
Call Dispose() when you are finished using the HtmlKit.HtmlWriter. The Dispose() method leaves the HtmlKit.HtmlWriter in an unusable state. After calling Dispose(), you must release all references to the HtmlKit.HtmlWriter so the garbage collector can reclaim the memory that the HtmlKit.HtmlWriter was occupying.
public Dispose ( ) : void
return void
		public void Dispose ()
		{
			Dispose (true);

			GC.SuppressFinalize (this);
		}
	}

Same methods

HtmlWriter::Dispose ( bool disposing ) : void