HttpClient.ViewController.ReleaseDesignerOutlets C# (CSharp) Method

ReleaseDesignerOutlets() private method

private ReleaseDesignerOutlets ( ) : void
return void
		void ReleaseDesignerOutlets ()
		{
			if (TheButton != null) {
				TheButton.Dispose ();
				TheButton = null;
			}

			if (TheTable != null) {
				TheTable.Dispose ();
				TheTable = null;
			}

			if (TheLog != null) {
				TheLog.Dispose ();
				TheLog = null;
			}
		}
	}