MonoMobile.Views.RefreshTableHeaderView.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void
		protected override void Dispose(bool disposing)
		{
			if (disposing)
			{
				_ArrowImage.Dispose();

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

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

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

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

			base.Dispose(disposing);
		}
		public override void LayoutSubviews()