3 types derived from XmlSchemaIdentityConstraint
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaIdentityConstraint.cs (3)
112public class XmlSchemaUnique : XmlSchemaIdentityConstraint 120public class XmlSchemaKey : XmlSchemaIdentityConstraint 128public class XmlSchemaKeyref : XmlSchemaIdentityConstraint
29 references to XmlSchemaIdentityConstraint
dotnet-svcutil-lib (29)
FrameworkFork\Microsoft.Xml\Xml\schema\BaseProcessor.cs (1)
154else if (item is XmlSchemaIdentityConstraint)
FrameworkFork\Microsoft.Xml\Xml\schema\CompiledIdentityConstraint.cs (1)
51public CompiledIdentityConstraint(XmlSchemaIdentityConstraint constraint, XmlNamespaceManager nsmgr)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
1461XmlSchemaIdentityConstraint identityConstraint = (XmlSchemaIdentityConstraint)element.Constraints[i]; 1467private void PreprocessIdentityConstraint(XmlSchemaIdentityConstraint constraint)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (7)
231foreach (XmlSchemaIdentityConstraint identityConstraint in _schema.IdentityConstraints.Values) 383((XmlSchemaIdentityConstraint)element.Constraints[i]).CompiledConstraint = null; 2197private void CompileIdentityConstraint(XmlSchemaIdentityConstraint xi) 2219XmlSchemaIdentityConstraint ic = (XmlSchemaIdentityConstraint)_schema.IdentityConstraints[((XmlSchemaKeyref)xi).Refer]; 2403XmlSchemaIdentityConstraint constraint = (XmlSchemaIdentityConstraint)constraints[i];
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (2)
1108PreprocessIdentityConstraint((XmlSchemaIdentityConstraint)element.Constraints[i]); 1112private void PreprocessIdentityConstraint(XmlSchemaIdentityConstraint constraint)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (8)
110foreach (XmlSchemaIdentityConstraint ic in schema.IdentityConstraints.Values) 225foreach (XmlSchemaIdentityConstraint identityConstraint in _identityConstraints.Values) 385((XmlSchemaIdentityConstraint)element.Constraints[i]).CompiledConstraint = null; 2628private void CompileIdentityConstraint(XmlSchemaIdentityConstraint xi) 2650XmlSchemaIdentityConstraint ic = (XmlSchemaIdentityConstraint)_identityConstraints[((XmlSchemaKeyref)xi).Refer]; 2846XmlSchemaIdentityConstraint constraint = (XmlSchemaIdentityConstraint)constraints[i];
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
671private XmlSchemaIdentityConstraint _identityConstraint; 1070_identityConstraint = (XmlSchemaIdentityConstraint)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
122else if (o is XmlSchemaIdentityConstraint) 124return ((XmlSchemaIdentityConstraint)o).QualifiedName; 379else if (t == typeof(XmlSchemaIdentityConstraint)) 381Write48_XmlSchemaIdentityConstraint((XmlSchemaIdentityConstraint)o); 1054private void Write48_XmlSchemaIdentityConstraint(XmlSchemaIdentityConstraint o)