2 instantiations of XmlSchemaKeyref
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
2171
builder._xso = builder._identityConstraint = new
XmlSchemaKeyref
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
10943
o = new Microsoft.Xml.Schema.
XmlSchemaKeyref
();
29 references to XmlSchemaKeyref
dotnet-svcutil-lib (29)
FrameworkFork\Microsoft.Xml\Xml\schema\CompiledIdentityConstraint.cs (1)
91
this.refer = ((
XmlSchemaKeyref
)constraint).Refer;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1502
if (constraint is
XmlSchemaKeyref
)
1504
XmlSchemaKeyref
keyref = (
XmlSchemaKeyref
)constraint;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (4)
2217
if (xi is
XmlSchemaKeyref
)
2219
XmlSchemaIdentityConstraint ic = (XmlSchemaIdentityConstraint)_schema.IdentityConstraints[((
XmlSchemaKeyref
)xi).Refer];
2222
throw new XmlSchemaException(ResXml.Sch_UndeclaredIdentityConstraint, ((
XmlSchemaKeyref
)xi).Refer.ToString(), xi);
2227
throw new XmlSchemaException(ResXml.Sch_RefInvalidIdentityConstraint, ((
XmlSchemaKeyref
)xi).Refer.ToString(), xi);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (3)
1147
if (constraint is
XmlSchemaKeyref
)
1149
XmlSchemaKeyref
keyref = (
XmlSchemaKeyref
)constraint;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (4)
2648
if (xi is
XmlSchemaKeyref
)
2650
XmlSchemaIdentityConstraint ic = (XmlSchemaIdentityConstraint)_identityConstraints[((
XmlSchemaKeyref
)xi).Refer];
2653
throw new XmlSchemaException(ResXml.Sch_UndeclaredIdentityConstraint, ((
XmlSchemaKeyref
)xi).Refer.ToString(), xi);
2658
throw new XmlSchemaException(ResXml.Sch_RefInvalidIdentityConstraint, ((
XmlSchemaKeyref
)xi).Refer.ToString(), xi);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaElement.cs (1)
203
XmlElement("keyref", typeof(
XmlSchemaKeyref
)),
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
2184
if (builder._identityConstraint is
XmlSchemaKeyref
)
2186
((
XmlSchemaKeyref
)builder._identityConstraint).Refer = builder.ParseQName(value, "refer");
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
389
else if (t == typeof(
XmlSchemaKeyref
))
391
Write50_XmlSchemaKeyref((
XmlSchemaKeyref
)o);
1063
else if (t == typeof(
XmlSchemaKeyref
))
1065
Write50_XmlSchemaKeyref((
XmlSchemaKeyref
)o);
1086
private void Write50_XmlSchemaKeyref(
XmlSchemaKeyref
o)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
2898
if (ai is Microsoft.Xml.Schema.
XmlSchemaKeyref
)
2900
Write51_XmlSchemaKeyref(@"keyref", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.
XmlSchemaKeyref
)ai), false, false);
3063
private void Write51_XmlSchemaKeyref(string n, string ns, Microsoft.Xml.Schema.
XmlSchemaKeyref
o, bool isNullable, bool needType)
3073
if (t == typeof(Microsoft.Xml.Schema.
XmlSchemaKeyref
))
10927
private Microsoft.Xml.Schema.
XmlSchemaKeyref
Read51_XmlSchemaKeyref(bool isNullable, bool checkType)
10942
Microsoft.Xml.Schema.
XmlSchemaKeyref
o;