| File: System\Xml\Schema\XmlSchemaSimpleContentRestriction.cs | Web Access |
| Project: src\runtime\src\libraries\System.Private.Xml\src\System.Private.Xml.csproj (System.Private.Xml) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Xml.Serialization; namespace System.Xml.Schema { public class XmlSchemaSimpleContentRestriction : XmlSchemaContent { private XmlQualifiedName _baseTypeName = XmlQualifiedName.Empty; private XmlSchemaSimpleType? _baseType; private readonly XmlSchemaObjectCollection _facets = new XmlSchemaObjectCollection(); private XmlSchemaObjectCollection _attributes = new XmlSchemaObjectCollection(); private XmlSchemaAnyAttribute? _anyAttribute; [XmlAttribute("base")] public XmlQualifiedName BaseTypeName { get { return _baseTypeName; } set { _baseTypeName = value ?? XmlQualifiedName.Empty; } } [XmlElement("simpleType", typeof(XmlSchemaSimpleType))] public XmlSchemaSimpleType? BaseType { get { return _baseType; } set { _baseType = value; } } [XmlElement("length", typeof(XmlSchemaLengthFacet)), XmlElement("minLength", typeof(XmlSchemaMinLengthFacet)), XmlElement("maxLength", typeof(XmlSchemaMaxLengthFacet)), XmlElement("pattern", typeof(XmlSchemaPatternFacet)), XmlElement("enumeration", typeof(XmlSchemaEnumerationFacet)), XmlElement("maxInclusive", typeof(XmlSchemaMaxInclusiveFacet)), XmlElement("maxExclusive", typeof(XmlSchemaMaxExclusiveFacet)), XmlElement("minInclusive", typeof(XmlSchemaMinInclusiveFacet)), XmlElement("minExclusive", typeof(XmlSchemaMinExclusiveFacet)), XmlElement("totalDigits", typeof(XmlSchemaTotalDigitsFacet)), XmlElement("fractionDigits", typeof(XmlSchemaFractionDigitsFacet)), XmlElement("whiteSpace", typeof(XmlSchemaWhiteSpaceFacet))] public XmlSchemaObjectCollection Facets { get { return _facets; } } [XmlElement("attribute", typeof(XmlSchemaAttribute)), XmlElement("attributeGroup", typeof(XmlSchemaAttributeGroupRef))] public XmlSchemaObjectCollection Attributes { get { return _attributes; } } [XmlElement("anyAttribute")] public XmlSchemaAnyAttribute? AnyAttribute { get { return _anyAttribute; } set { _anyAttribute = value; } } internal void SetAttributes(XmlSchemaObjectCollection newAttributes) { _attributes = newAttributes; } } }