示例#1
0
        public Boolean OptionalEquals(HTTPSNotification other)

        => Method.Equals(other.Method) &&
        URL.Equals(other.URL) &&
        RemotePort.Equals(other.RemotePort) &&

        String.Equals(BasicAuth_Login, other.BasicAuth_Login) &&
        String.Equals(BasicAuth_Password, other.BasicAuth_Password) &&
        String.Equals(APIKey, other.APIKey) &&

        String.Equals(Description, other.Description) &&

        _NotificationMessageTypes.SetEquals(other._NotificationMessageTypes);
示例#2
0
        public Boolean Equals(HTTPSNotification other)

        => URL.Equals(other.URL) &&
        RemotePort.Equals(other.RemotePort) &&
        Method.Equals(other.Method);