5 instantiations of CommaDelimitedStringCollection
System.Configuration (2)
System\Configuration\CommaDelimitedStringAttributeCollectionConverter.cs (1)
36
CommaDelimitedStringCollection attributeCollection = new
CommaDelimitedStringCollection
();
System\Configuration\StringAttributeCollection.cs (1)
161
copy = 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)
25
ValidateType(value, typeof(
CommaDelimitedStringCollection
));
26
CommaDelimitedStringCollection
internalValue = value as
CommaDelimitedStringCollection
;
36
CommaDelimitedStringCollection
attributeCollection = new CommaDelimitedStringCollection();
System\Configuration\StringAttributeCollection.cs (2)
158
public
CommaDelimitedStringCollection
Clone() {
159
CommaDelimitedStringCollection
copy;
System.Web (24)
Configuration\AuthorizationRule.cs (24)
27
typeof(
CommaDelimitedStringCollection
),
34
typeof(
CommaDelimitedStringCollection
),
41
typeof(
CommaDelimitedStringCollection
),
52
private
CommaDelimitedStringCollection
_Roles = null;
53
private
CommaDelimitedStringCollection
_Verbs = null;
54
private
CommaDelimitedStringCollection
_Users = null;
136
CommaDelimitedStringCollection
roles;
137
CommaDelimitedStringCollection
users;
138
CommaDelimitedStringCollection
verbs;
140
roles = (
CommaDelimitedStringCollection
)Roles;
141
users = (
CommaDelimitedStringCollection
)Users;
142
verbs = (
CommaDelimitedStringCollection
)Verbs;
160
return _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();
242
CommaDelimitedStringCollection
propertyBagValue;
244
propertyBagValue = (
CommaDelimitedStringCollection
)base[_propVerbs];
270
CommaDelimitedStringCollection
propertyBagValue;
272
propertyBagValue = (
CommaDelimitedStringCollection
)base[_propUsers];
295
CommaDelimitedStringCollection
propertyBagValue;
297
propertyBagValue = (
CommaDelimitedStringCollection
)base[_propRoles];