public WebhookNotificationEventArgs(IdentifierSet identifierSet, string operation) { if (identifierSet != null && !string.IsNullOrEmpty(operation)) { IdentifierSet = identifierSet; Operation = operation; } }
public bool Equals(WebhookNotificationEventArgs other) { if (other != null && ReferenceEquals(this, other)) { return(true); } return(Operation.Equals(other.Operation, StringComparison.Ordinal) && IdentifierSet.Equals(other.IdentifierSet)); }