MonoMac.Security.SecProtocol.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator !=(SecProtocol a, SecProtocol b)
        {
            if (a == null)
                return b != null;
            else if (b == null)
                return true;
            return a.Handle != b.Handle;
        }