DotNetOpenAuth.OpenId.Realm.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns the hash code used for storing this object in a hash table.
public GetHashCode ( ) : int
return int
		public override int GetHashCode() {
			return this.uri.GetHashCode() + (this.DomainWildcard ? 1 : 0);
		}