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