@@ -5,15 +5,15 @@ namespace XmlSchemaClassGenerator
55{
66 public interface IXmlSchemaNode
77 {
8- string Name { get ; }
8+ // string Name { get; }
99 string DefaultValue { get ; }
1010 string FixedValue { get ; }
1111 XmlSchemaForm Form { get ; }
1212 XmlQualifiedName QualifiedName { get ; }
1313 XmlQualifiedName RefName { get ; }
14- XmlSchemaType SchemaType { get ; }
15- XmlSchemaType NodeSchemaType { get ; }
16- XmlQualifiedName SchemaTypeName { get ; }
14+ //XmlQualifiedName SchemaTypeName { get; }
15+ // XmlSchemaType SchemaType { get; }
16+ //XmlSchemaType NodeSchemaType { get; }
1717
1818 XmlSchemaAnnotated Base { get ; }
1919 XmlSchemaForm FormDefault { get ; }
@@ -25,23 +25,23 @@ public sealed class XmlSchemaAttributeEx : IXmlSchemaNode
2525
2626 public XmlSchemaAttribute Real { get ; }
2727
28- public string Name => Real . Name ;
28+ // public string Name => Real.Name;
2929 public string DefaultValue => Real . DefaultValue ;
3030 public string FixedValue => Real . FixedValue ;
3131 public XmlSchemaForm Form => Real . Form ;
3232 public XmlQualifiedName QualifiedName => Real . QualifiedName ;
3333 public XmlQualifiedName RefName => Real . RefName ;
34- public XmlQualifiedName SchemaTypeName => Real . SchemaTypeName ;
35- public XmlSchemaSimpleType SchemaType => Real . SchemaType ;
34+ // public XmlQualifiedName SchemaTypeName => Real.SchemaTypeName;
35+ // public XmlSchemaSimpleType SchemaType => Real.SchemaType;
3636 public XmlSchemaSimpleType AttributeSchemaType => Real . AttributeSchemaType ;
3737
3838 public XmlSchemaAnnotated Base => Real ;
3939
4040 public XmlSchemaForm FormDefault => Base . GetSchema ( ) . AttributeFormDefault ;
4141
42- XmlSchemaType IXmlSchemaNode . SchemaType => SchemaType ;
42+ // XmlSchemaType IXmlSchemaNode.SchemaType => SchemaType;
4343
44- XmlSchemaType IXmlSchemaNode . NodeSchemaType => AttributeSchemaType ;
44+ // XmlSchemaType IXmlSchemaNode.NodeSchemaType => AttributeSchemaType;
4545
4646 public XmlSchemaUse Use => Real . Use ;
4747
@@ -55,23 +55,23 @@ public sealed class XmlSchemaElementEx : IXmlSchemaNode
5555
5656 public XmlSchemaElement Real { get ; }
5757
58- public string Name => Real . Name ;
58+ // public string Name => Real.Name;
5959 public string DefaultValue => Real . DefaultValue ;
6060 public string FixedValue => Real . FixedValue ;
6161 public XmlSchemaForm Form => Real . Form ;
6262 public XmlQualifiedName QualifiedName => Real . QualifiedName ;
6363 public XmlQualifiedName RefName => Real . RefName ;
64- public XmlQualifiedName SchemaTypeName => Real . SchemaTypeName ;
65- public XmlSchemaType SchemaType => Real . SchemaType ;
64+ // public XmlQualifiedName SchemaTypeName => Real.SchemaTypeName;
65+ // public XmlSchemaType SchemaType => Real.SchemaType;
6666 public XmlSchemaType ElementSchemaType => Real . ElementSchemaType ;
6767
6868 public XmlSchemaAnnotated Base => Real ;
6969
7070 public XmlSchemaForm FormDefault => Base . GetSchema ( ) . ElementFormDefault ;
7171
72- XmlSchemaType IXmlSchemaNode . SchemaType => SchemaType ;
72+ // XmlSchemaType IXmlSchemaNode.SchemaType => SchemaType;
7373
74- XmlSchemaType IXmlSchemaNode . NodeSchemaType => ElementSchemaType ;
74+ // XmlSchemaType IXmlSchemaNode.NodeSchemaType => ElementSchemaType;
7575
7676 public bool IsNillable => Real . IsNillable ;
7777
0 commit comments