RemoveCallback() private method

private RemoveCallback ( System.Threading.CancellationTokenRegistration tokenReg ) : void
tokenReg System.Threading.CancellationTokenRegistration
return void
Ejemplo n.º 1
0
 public void Dispose()
 {
     if (source != null)
     {
         source.RemoveCallback(this);
     }
 }
Ejemplo n.º 2
0
		public void Dispose ()
		{
			// Remove the corresponding callback from source
			source.RemoveCallback (this);
		}
 public void Dispose()
 {
     source.RemoveCallback(this);
 }