System.Threading.CancellationTokenRegistration.cs

ylbtech-System.Threading.CancellationTokenRegistration.cs

 

1. Back to top
1、
#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
#endregion

namespace System.Threading
{
    // 
    // Summary:
     //      represent System.Threading.CancellationToken callback delegate has been registered. 
    public  struct CancellationTokenRegistration: the IEquatable <CancellationTokenRegistration> , the IDisposable
    {
        // 
        // Summary:
         //      release all resources System.Threading.CancellationTokenRegistration the current instance of the class is used. 
        public  void the Dispose ();
         // 
        // Summary:
         //      determines whether the current instance of the specified System.Threading.CancellationTokenRegistration System.Threading.CancellationTokenRegistration
         //      equal.
        // 
        // Parameters:
         //    obj:
         //      to another object with this instance to compare.
        // 
        // Returns:
         //      If this instance and obj are equal, then true. Otherwise false. If two System.Threading.CancellationTokenRegistration
         //     Examples are references to the same output System.Threading.CancellationToken Register single method invocation, the two instances are equal. 
        public  the override  BOOL Equals ( Object obj);
         // 
        // Summary:
         //      determines whether the current instance of the specified System.Threading.CancellationTokenRegistration System.Threading.CancellationTokenRegistration
         //      equal.
        // 
        // Parameters:
         //    OTHER:
         //      to with this instance other System.Threading.CancellationTokenRegistration comparison.
        // 
        // Returns:
         //      If this and other instances are equal, then true. Otherwise false. If two System.Threading.CancellationTokenRegistration
        //      instances reference to the same output System.Threading.CancellationToken Register single method invocation, the two instances are equal. 
        public  BOOL Equals (CancellationTokenRegistration OTHER);
         // 
        // Summary:
         //      as System.Threading.CancellationTokenRegistration hash function.
        // 
        // Returns:
         //      hash code of the current System.Threading.CancellationTokenRegistration instance. 
        public  the override  int GetHashCode ();

        // 
        // Summary:
         //      determine System.Threading.CancellationTokenRegistration two instances are equal.
        // 
        // Parameters:
         //    left:
         //      first instance.
        // 
        //    right:
         //      second instance.
        // 
        // Returns:
         //      if instances are equal, then true; otherwise false. 
        public  static  BOOL  operator == (CancellationTokenRegistration left, CancellationTokenRegistration right);
         // 
        // Summary:
         //     Determining System.Threading.CancellationTokenRegistration two instances are not equal.
        // 
        // Parameters:
         //    left:
         //      first instance.
        // 
        //    right:
         //      second instance.
        // 
        // Returns:
         //      if instances are not equal, then true; otherwise false. 
        public  static  BOOL  operator ! = (CancellationTokenRegistration left, right CancellationTokenRegistration);
    }
}
2、
2. Return to top
 
3. Back to top
 
4. Top
 
5. Top
 
 
6. Back to top
 
warn Author: ylbtech
Source: http://ylbtech.cnblogs.com/
This article belongs to the author and blog Park total, welcome to reprint, but without the author's consent declared by this section must be retained, and given the original connection in the apparent position of the article page, otherwise reserves the right to pursue legal responsibilities.

Guess you like

Origin www.cnblogs.com/storebook/p/12584212.html