You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
55
external/referencesource/System.Xml/System/Xml/Schema/XmlSchemaSimpleContentExtension.cs
vendored
Normal file
55
external/referencesource/System.Xml/System/Xml/Schema/XmlSchemaSimpleContentExtension.cs
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="XmlSchemaSimpleContentExtension.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
// <owner current="true" primary="true">[....]</owner>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Xml.Schema {
|
||||
|
||||
using System.Xml.Serialization;
|
||||
|
||||
/// <include file='doc\XmlSchemaSimpleContentExtension.uex' path='docs/doc[@for="XmlSchemaSimpleContentExtension"]/*' />
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public class XmlSchemaSimpleContentExtension : XmlSchemaContent {
|
||||
XmlSchemaObjectCollection attributes = new XmlSchemaObjectCollection();
|
||||
XmlSchemaAnyAttribute anyAttribute;
|
||||
XmlQualifiedName baseTypeName = XmlQualifiedName.Empty;
|
||||
|
||||
/// <include file='doc\XmlSchemaSimpleContentExtension.uex' path='docs/doc[@for="XmlSchemaSimpleContentExtension.BaseTypeName"]/*' />
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
[XmlAttribute("base")]
|
||||
public XmlQualifiedName BaseTypeName {
|
||||
get { return baseTypeName; }
|
||||
set { baseTypeName = (value == null ? XmlQualifiedName.Empty : value); }
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaSimpleContentExtension.uex' path='docs/doc[@for="XmlSchemaSimpleContentExtension.Attributes"]/*' />
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
[XmlElement("attribute", typeof(XmlSchemaAttribute)),
|
||||
XmlElement("attributeGroup", typeof(XmlSchemaAttributeGroupRef))]
|
||||
public XmlSchemaObjectCollection Attributes {
|
||||
get { return attributes; }
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaSimpleContentExtension.uex' path='docs/doc[@for="XmlSchemaSimpleContentExtension.AnyAttribute"]/*' />
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
[XmlElement("anyAttribute")]
|
||||
public XmlSchemaAnyAttribute AnyAttribute {
|
||||
get { return anyAttribute; }
|
||||
set { anyAttribute = value; }
|
||||
}
|
||||
|
||||
internal void SetAttributes(XmlSchemaObjectCollection newAttributes) {
|
||||
attributes = newAttributes;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user