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