ConnectionCredential.GetHashCode Method

Definition

Returns the hash code of the connection credentials.

public:
 override int GetHashCode();
public override int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer

Returns

The hash code of the ConnectionCredential object.

Examples

The following example computes the hash code.

public override int GetHashCode() {
    if (UseSystemAccount) {
        return UseSystemAccount.GetHashCode();
    } else {
        return String.Concat(Domain, Password, UserName,
            UseBasicAuthentication.ToString()).GetHashCode();
    }
} 

Applies to