2 instantiations of XmlSchemaNotation
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
10283o = new global::System.Xml.Schema.XmlSchemaNotation();
System.Xml (1)
System\Xml\Schema\XsdBuilder.cs (1)
1870builder.xso = builder.notation = new XmlSchemaNotation();
34 references to XmlSchemaNotation
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (2)
62{ typeof(XmlSchemaNotation), ErrorHandler }, 112{ typeof(XmlSchemaNotation), ErrorHandler },
System.Web.Services (8)
System\Web\Services\Description\SchemaCompiler.cs (2)
91if (o is XmlSchemaNotation) { 92item = Res.GetString(Res.XmlSchemaNamedItem, ns, "notation", ((XmlSchemaNotation)o).Name, details);
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
1882else if (ai is global::System.Xml.Schema.XmlSchemaNotation) { 1883Write65_XmlSchemaNotation(@"notation", @"http://www.w3.org/2001/XMLSchema", ((global::System.Xml.Schema.XmlSchemaNotation)ai), false, false); 3851void Write65_XmlSchemaNotation(string n, string ns, global::System.Xml.Schema.XmlSchemaNotation o, bool isNullable, bool needType) { 3858if (t == typeof(global::System.Xml.Schema.XmlSchemaNotation)) { 10270global::System.Xml.Schema.XmlSchemaNotation Read65_XmlSchemaNotation(bool isNullable, bool checkType) { 10282global::System.Xml.Schema.XmlSchemaNotation o;
System.Xml (24)
System\Xml\Schema\BaseProcessor.cs (1)
121else if (item is XmlSchemaNotation) {
System\Xml\Schema\Preprocessor.cs (5)
669else if (schemaItems[i] is XmlSchemaNotation) { 670XmlSchemaNotation notation = (XmlSchemaNotation)schemaItems[i]; 709foreach (XmlSchemaNotation notation in includedSchema.Notations.Values) { 1541private void PreprocessNotation(XmlSchemaNotation notation) {
System\Xml\Schema\SchemaCollectionCompiler.cs (1)
231foreach (XmlSchemaNotation notation in this.schema.Notations.Values) {
System\Xml\Schema\SchemaCollectionpreProcessor.cs (5)
431foreach (XmlSchemaNotation notation in includedSchema.Notations.Values) { 471else if (schema.Items[i] is XmlSchemaNotation) { 472XmlSchemaNotation notation = (XmlSchemaNotation)schema.Items[i]; 1227private void PreprocessNotation(XmlSchemaNotation notation) {
System\Xml\Schema\SchemaSetCompiler.cs (2)
89foreach (XmlSchemaNotation notation in schema.Notations.Values) { 128foreach (XmlSchemaNotation notation in notations.Values) {
System\Xml\Schema\XmlSchema.cs (1)
341XmlElement("notation", typeof(XmlSchemaNotation))]
System\Xml\Schema\XsdBuilder.cs (2)
659private XmlSchemaNotation notation; 986this.notation = (XmlSchemaNotation)container;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
79else if (o is XmlSchemaNotation) { 80return ((XmlSchemaNotation)o).QualifiedName;
System\Xml\Serialization\XmlSchemas.cs (5)
308else if (type == typeof(XmlSchemaNotation)) { 458if (o is XmlSchemaNotation) { 459return ((XmlSchemaNotation)o).Name; 509if (o is XmlSchemaNotation) { 510item = Res.GetString(Res.XmlSchemaNamedItem, ns, "notation", ((XmlSchemaNotation)o).Name, details);