Ejemplo n.º 1
0
 /// <summary>
 /// Copies ClaimType and ClaimValue from the other claim.
 /// </summary>
 /// <param name="other">The claim to initialize from.</param>
 public virtual void FromClaim(ClaimInfo other)
 {
     Type  = other.Type;
     Value = other.Value;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes by copying ClaimType and ClaimValue from the other claim.
 /// </summary>
 /// <param name="other">The claim to initialize from.</param>
 public ClaimInfo(ClaimInfo other) : this(other.Type, other.Value)
 {
 }