/// <summary> /// Gets the hash code /// </summary> /// <returns>Hash code</returns> public override int GetHashCode() { unchecked // Overflow is fine, just wrap { var hashCode = 41; // Suitable nullity checks etc, of course :) if (ClientId != null) { hashCode = hashCode * 59 + ClientId.GetHashCode(); } if (Name != null) { hashCode = hashCode * 59 + Name.GetHashCode(); } if (AllowedGrantTypes != null) { hashCode = hashCode * 59 + AllowedGrantTypes.GetHashCode(); } if (RedirectUris != null) { hashCode = hashCode * 59 + RedirectUris.GetHashCode(); } if (AllowedCorsOrigins != null) { hashCode = hashCode * 59 + AllowedCorsOrigins.GetHashCode(); } if (PostLogoutRedirectUris != null) { hashCode = hashCode * 59 + PostLogoutRedirectUris.GetHashCode(); } if (AllowedScopes != null) { hashCode = hashCode * 59 + AllowedScopes.GetHashCode(); } if (ClientSecrets != null) { hashCode = hashCode * 59 + ClientSecrets.GetHashCode(); } if (HashedClientSecrets != null) { hashCode = hashCode * 59 + HashedClientSecrets.GetHashCode(); } hashCode = hashCode * 59 + AllowedOfflineAccess.GetHashCode(); hashCode = hashCode * 59 + AccessTokenLifetime.GetHashCode(); hashCode = hashCode * 59 + IdentityTokenLifetime.GetHashCode(); hashCode = hashCode * 59 + RequireConsent.GetHashCode(); return(hashCode); } }