예제 #1
0
 public Subject(XmlElement element)
 {
     Name = new SamlName(element);
     Confirmations = buildConfirmations(element).ToArray();
 }
예제 #2
0
 public Subject(XmlElement element)
 {
     Name          = new SamlName(element);
     Confirmations = buildConfirmations(element).ToArray();
 }
예제 #3
0
 protected bool Equals(SamlName other)
 {
     return Equals(Format, other.Format) && Type == other.Type && string.Equals(Value, other.Value);
 }
예제 #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();
 }
예제 #6
0
 protected bool Equals(SamlName other)
 {
     return(Equals(Format, other.Format) && Type == other.Type && string.Equals(Value, other.Value));
 }