public void Remove(ClaimConfigElement claim)
 {
     if (BaseIndexOf(claim) >= 0)
     {
         BaseRemove(claim.ClaimType);
     }
 }
        public ClaimsCollection()
        {
            // Add one url to the collection.  This is
            // not necessary; could leave the collection
            // empty until items are added to it outside
            // the constructor.
            ClaimConfigElement url =
                (ClaimConfigElement)CreateNewElement();

            Add(url);
        }
 public void Add(ClaimConfigElement claim)
 {
     BaseAdd(claim);
     // Add custom code here.
 }
 public int IndexOf(ClaimConfigElement claim)
 {
     return(BaseIndexOf(claim));
 }
 public void Remove(ClaimConfigElement claim)
 {
     if (BaseIndexOf(claim) >= 0)
         BaseRemove(claim.ClaimType);
 }
 public int IndexOf(ClaimConfigElement claim)
 {
     return BaseIndexOf(claim);
 }
 public void Add(ClaimConfigElement claim)
 {
     BaseAdd(claim);
     // Add custom code here.
 }