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

Equals() public method

Checks whether one Realm is equal to another.
/// The parameter is null. ///
public Equals ( object obj ) : bool
obj object The to compare with the current .
return bool
		public override bool Equals(object obj) {
			Realm other = obj as Realm;
			if (other == null) {
				return false;
			}
			return this.uri.Equals(other.uri) && this.DomainWildcard == other.DomainWildcard;
		}