23 references to SchemaElements
System.ServiceModel.Discovery (23)
System\ServiceModel\Discovery\SchemaUtility.cs (23)
35SchemaElements elementsFound = SchemaElements.None; 78SchemaElements elementsFound = SchemaElements.XAddrs | SchemaElements.MetadataVersion; 201static void AddElements(DiscoveryVersion discoveryVersion, SchemaElements elementsFound, XmlSchema discoverySchema) 203if ((elementsFound & SchemaElements.Types) == 0) 207if ((elementsFound & SchemaElements.Scopes) == 0) 211if ((elementsFound & SchemaElements.XAddrs) == 0) 215if ((elementsFound & SchemaElements.MetadataVersion) == 0) 558static void LocateSchemaElements(DiscoveryVersion discoveryVersion, XmlSchema schema, ref SchemaElements elementsFound) 560if (((elementsFound & SchemaElements.Types) != SchemaElements.Types) && 563elementsFound |= SchemaElements.Types; 565if (((elementsFound & SchemaElements.Scopes) != SchemaElements.Scopes) && 568elementsFound |= SchemaElements.Scopes; 570if (((elementsFound & SchemaElements.XAddrs) != SchemaElements.XAddrs) && 573elementsFound |= SchemaElements.XAddrs; 575if (((elementsFound & SchemaElements.MetadataVersion) != SchemaElements.MetadataVersion) && 578elementsFound |= SchemaElements.MetadataVersion;