public Subject(XmlElement element) { Name = new SamlName(element); Confirmations = buildConfirmations(element).ToArray(); }
protected bool Equals(SamlName other) { return Equals(Format, other.Format) && Type == other.Type && string.Equals(Value, other.Value); }
public SubjectConfirmation(XmlElement element) { Method = element.GetAttribute(MethodAtt).ToUri(); Name = new SamlName(element); ConfirmationData = buildData(element).ToArray(); }
protected bool Equals(SamlName other) { return(Equals(Format, other.Format) && Type == other.Type && string.Equals(Value, other.Value)); }