System.Net.Security.SslSessionsCache.SslCredKey.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
              public static bool operator == (SslCredKey sslCredKey1,
                                              SslCredKey sslCredKey2)
              {
                  if ((object)sslCredKey1 == (object)sslCredKey2) {
                      return true;
                  }
                  if ((object)sslCredKey1 == null || (object)sslCredKey2 == null) {
                      return false;
                  }
                  return sslCredKey1.Equals(sslCredKey2);
              }
              //