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