14 types derived from XmlSchemaAnnotated
System.Xml (14)
System\Xml\Schema\XmlSchemaAnyAttribute.cs (1)
18public class XmlSchemaAnyAttribute : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaAttribute.cs (1)
18public class XmlSchemaAttribute : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaAttributeGroup.cs (1)
17public class XmlSchemaAttributeGroup : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaAttributeGroupref.cs (1)
17public class XmlSchemaAttributeGroupRef : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaContent.cs (1)
17public abstract class XmlSchemaContent : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaContentModel.cs (1)
16public abstract class XmlSchemaContentModel : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaFacet.cs (1)
30public abstract class XmlSchemaFacet : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaGroup.cs (1)
16public class XmlSchemaGroup : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaIdEntityConstraint.cs (2)
18public class XmlSchemaIdentityConstraint : XmlSchemaAnnotated { 84public class XmlSchemaXPath : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaNotation.cs (1)
16public class XmlSchemaNotation : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaParticle.cs (1)
16public abstract class XmlSchemaParticle : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaSimpleTypeContent.cs (1)
14public abstract class XmlSchemaSimpleTypeContent : XmlSchemaAnnotated {
System\Xml\Schema\XmlSchemaType.cs (1)
19public class XmlSchemaType : XmlSchemaAnnotated {
33 references to XmlSchemaAnnotated
System.Data (22)
fx\src\data\System\Data\XMLSchema.cs (22)
333internal static String GetMsdataAttribute(XmlSchemaAnnotated node, String ln) { 471foreach (XmlSchemaAnnotated el in items){ 529XmlSchemaAnnotated cContent = ((XmlSchemaSimpleContent) (ct.ContentModel)).Content; 650foreach (XmlSchemaAnnotated el in items){ 775foreach (XmlSchemaAnnotated item in items){ 894XmlSchemaAnnotated cContent = ((XmlSchemaComplexContent) (ct.ContentModel)).Content; 929XmlSchemaAnnotated cContent = ((XmlSchemaSimpleContent) (ct.ContentModel)).Content; 968XmlSchemaAnnotated cContent = ((XmlSchemaComplexContent) (ct.ContentModel)).Content; 1026internal bool GetBooleanAttribute(XmlSchemaAnnotated element, String attrName, bool defVal) { 1041internal String GetStringAttribute(XmlSchemaAnnotated element, String attrName, String defVal) { 1314internal string GetInstanceName(XmlSchemaAnnotated node) { 1662internal XmlSchemaAnnotated FindTypeNode(XmlSchemaAnnotated node) { 1677XmlSchemaAnnotated typeNode; 1681typeNode = (XmlSchemaAnnotated) (isAttr ? attr.SchemaType : el.SchemaType); 1683typeNode = isAttr ? FindTypeNode((XmlSchemaAnnotated)attributes[attr.RefName]) :FindTypeNode((XmlSchemaAnnotated)elementsTable[el.RefName]); 1686typeNode = (XmlSchemaAnnotated)schemaTypes[isAttr ? ((XmlSchemaAttribute)node).SchemaTypeName : ((XmlSchemaElement)node).SchemaTypeName]; 1905XmlSchemaAnnotated typeNode = FindTypeNode(attr); 2047XmlSchemaAnnotated typeNode = FindTypeNode(el); 2274foreach (XmlSchemaAnnotated el in items){ 2308foreach (XmlSchemaAnnotated choiceEl in choiceItems) {
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (2)
36{ typeof(XmlSchemaAnnotated), EmptyHandler }, 86{ typeof(XmlSchemaAnnotated), EmptyHandler },
System.Xml (9)
System\Xml\Schema\Preprocessor.cs (3)
1771if (schemaObject is XmlSchemaAnnotated) { 1772XmlSchemaAnnotated annotated = schemaObject as XmlSchemaAnnotated;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
1419XmlSchemaAnnotated annotated = schemaObject as XmlSchemaAnnotated;
System\Xml\Schema\SchemaSetCompiler.cs (2)
2556private void CopyPosition(XmlSchemaAnnotated to, XmlSchemaAnnotated from, bool copyParent) {
System\Xml\Serialization\ImportContext.cs (2)
433if (typeof(XmlSchemaAnnotated).IsAssignableFrom(t)) { 434XmlAttribute[] attrs = (XmlAttribute[])((XmlSchemaAnnotated)item).UnhandledAttributes;