4 writes to type
System.Xml (4)
System\Xml\Schema\NamespaceList.cs (4)
33type = ListType.Any; 36type = ListType.Other; 39type = ListType.Set; 275nslist.type = ListType.Set;
32 references to type
System.Xml (32)
System\Xml\Schema\NamespaceList.cs (32)
59if (type == ListType.Set) { 67get { return type; } 76switch (type) { 88switch (type) { 105switch (type) { 137if (super.type == ListType.Any) { 140else if (sub.type == ListType.Other && super.type == ListType.Other) { 143else if (sub.type == ListType.Set) { 144if (super.type == ListType.Other) { 148Debug.Assert(super.type == ListType.Set); 164if (o1.type == ListType.Any) { //clause 2 - o1 is Any 167else if (o2.type == ListType.Any) { //clause 2 - o2 is Any 170else if (o1.type == ListType.Set && o2.type == ListType.Set) { //clause 3 , both are sets 176else if (o1.type == ListType.Other && o2.type == ListType.Other) { //clause 4, both are negations 184else if (o1.type == ListType.Set && o2.type == ListType.Other) { 205else if (o2.type == ListType.Set && o1.type == ListType.Other) { 252if (o1.type == ListType.Any) { //clause 2 - o1 is any 255else if (o2.type == ListType.Any) { //clause 2 - o2 is any 258else if (o1.type == ListType.Set && o2.type == ListType.Other) { //Clause 3 o2 is other 265else if (o1.type == ListType.Other && o2.type == ListType.Set) { //Clause 3 o1 is other 272else if (o1.type == ListType.Set && o2.type == ListType.Set) { //clause 4 283else if (o1.type == ListType.Other && o2.type == ListType.Other) { 308return ((type == ListType.Set) && ((set == null) || set.Count == 0));