2 instantiations of XmlSchemaNotation
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
2035builder._xso = builder._notation = new XmlSchemaNotation();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12703o = new Microsoft.Xml.Schema.XmlSchemaNotation();
30 references to XmlSchemaNotation
dotnet-svcutil-lib (30)
FrameworkFork\Microsoft.Xml\Xml\schema\BaseProcessor.cs (1)
150else if (item is XmlSchemaNotation)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (5)
794else if (schemaItems[i] is XmlSchemaNotation) 796XmlSchemaNotation notation = (XmlSchemaNotation)schemaItems[i]; 844foreach (XmlSchemaNotation notation in includedSchema.Notations.Values) 1901private void PreprocessNotation(XmlSchemaNotation notation)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (1)
286foreach (XmlSchemaNotation notation in _schema.Notations.Values)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (5)
527foreach (XmlSchemaNotation notation in includedSchema.Notations.Values) 575else if (schema.Items[i] is XmlSchemaNotation) 577XmlSchemaNotation notation = (XmlSchemaNotation)schema.Items[i]; 1544private void PreprocessNotation(XmlSchemaNotation notation)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
106foreach (XmlSchemaNotation notation in schema.Notations.Values) 155foreach (XmlSchemaNotation notation in _notations.Values)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (1)
367XmlElement("notation", typeof(XmlSchemaNotation))]
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
670private XmlSchemaNotation _notation; 1032_notation = (XmlSchemaNotation)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (2)
93else if (o is XmlSchemaNotation) 95return ((XmlSchemaNotation)o).QualifiedName;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (5)
358else if (type == typeof(XmlSchemaNotation)) 548if (o is XmlSchemaNotation) 550return ((XmlSchemaNotation)o).Name; 615if (o is XmlSchemaNotation) 617item = string.Format(ResXml.XmlSchemaNamedItem, ns, "notation", ((XmlSchemaNotation)o).Name, details);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
2404else if (ai is Microsoft.Xml.Schema.XmlSchemaNotation) 2406Write65_XmlSchemaNotation(@"notation", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.XmlSchemaNotation)ai), false, false); 4857private void Write65_XmlSchemaNotation(string n, string ns, Microsoft.Xml.Schema.XmlSchemaNotation o, bool isNullable, bool needType) 4867if (t == typeof(Microsoft.Xml.Schema.XmlSchemaNotation)) 12687private Microsoft.Xml.Schema.XmlSchemaNotation Read65_XmlSchemaNotation(bool isNullable, bool checkType) 12702Microsoft.Xml.Schema.XmlSchemaNotation o;