2 writes to values
System.Private.Xml (2)
System\Xml\Schema\SchemaDeclBase.cs (2)
100
values
??= new List<string>();
107
set {
values
= value; }
8 references to values
System.Private.Xml (8)
System\Xml\Schema\SchemaAttDef.cs (5)
178
(
values
!= null) &&
179
(
values
.Count <= 2))
181
string s1 =
values
[0].ToString();
183
if (
values
.Count == 2)
185
string s2 =
values
[1].ToString();
System\Xml\Schema\SchemaDeclBase.cs (3)
101
values
.Add(value);
106
get { return
values
; }
124
return (datatype.TokenizedType != XmlTokenizedType.NOTATION && datatype.TokenizedType != XmlTokenizedType.ENUMERATION) ||
values
!.Contains(pVal.ToString()!);