5 instantiations of CommaDelimitedStringCollection
System.Configuration (2)
System\Configuration\CommaDelimitedStringAttributeCollectionConverter.cs (1)
36CommaDelimitedStringCollection attributeCollection = new CommaDelimitedStringCollection();
System\Configuration\StringAttributeCollection.cs (1)
161copy = new CommaDelimitedStringCollection();
System.Web (3)
Configuration\AuthorizationRule.cs (3)
247_Verbs = new CommaDelimitedStringCollection(); 275_Users = new CommaDelimitedStringCollection(); 300_Roles = new CommaDelimitedStringCollection();
30 references to CommaDelimitedStringCollection
System.Configuration (6)
System\Configuration\CommaDelimitedStringAttributeCollectionConverter.cs (4)
25ValidateType(value, typeof(CommaDelimitedStringCollection)); 26CommaDelimitedStringCollection internalValue = value as CommaDelimitedStringCollection; 36CommaDelimitedStringCollection attributeCollection = new CommaDelimitedStringCollection();
System\Configuration\StringAttributeCollection.cs (2)
158public CommaDelimitedStringCollection Clone() { 159CommaDelimitedStringCollection copy;
System.Web (24)
Configuration\AuthorizationRule.cs (24)
27typeof(CommaDelimitedStringCollection), 34typeof(CommaDelimitedStringCollection), 41typeof(CommaDelimitedStringCollection), 52private CommaDelimitedStringCollection _Roles = null; 53private CommaDelimitedStringCollection _Verbs = null; 54private CommaDelimitedStringCollection _Users = null; 136CommaDelimitedStringCollection roles; 137CommaDelimitedStringCollection users; 138CommaDelimitedStringCollection verbs; 140roles = (CommaDelimitedStringCollection)Roles; 141users = (CommaDelimitedStringCollection)Users; 142verbs = (CommaDelimitedStringCollection)Verbs; 160return _ActionModified || base.IsModified() || (((CommaDelimitedStringCollection)Users).IsModified) || 161(((CommaDelimitedStringCollection)Roles).IsModified) || 162(((CommaDelimitedStringCollection)Verbs).IsModified); 206((CommaDelimitedStringCollection)Users).SetReadOnly(); 207((CommaDelimitedStringCollection)Roles).SetReadOnly(); 208((CommaDelimitedStringCollection)Verbs).SetReadOnly(); 242CommaDelimitedStringCollection propertyBagValue; 244propertyBagValue = (CommaDelimitedStringCollection)base[_propVerbs]; 270CommaDelimitedStringCollection propertyBagValue; 272propertyBagValue = (CommaDelimitedStringCollection)base[_propUsers]; 295CommaDelimitedStringCollection propertyBagValue; 297propertyBagValue = (CommaDelimitedStringCollection)base[_propRoles];