RemoveCallback() private method

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