BaconographyWP8.View.LinkedPictureView.albumPivot_UnloadingPivotItem C# (CSharp) Method

albumPivot_UnloadingPivotItem() private method

private albumPivot_UnloadingPivotItem ( object sender, PivotItemEventArgs e ) : void
sender object
e PivotItemEventArgs
return void
		private void albumPivot_UnloadingPivotItem(object sender, PivotItemEventArgs e)
		{
            if (e.Item != null)
			{
                ClearItem(e.Item);
                if(_gcCount <= 0)
                    Task.Factory.StartNew(RunGC, TaskCreationOptions.LongRunning);
			}
		}