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