You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,150 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="XmlSchemaFacet.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
// <owner current="true" primary="true">[....]</owner>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Xml.Schema {
|
||||
|
||||
using System.ComponentModel;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
internal enum FacetType {
|
||||
None,
|
||||
Length,
|
||||
MinLength,
|
||||
MaxLength,
|
||||
Pattern,
|
||||
Whitespace,
|
||||
Enumeration,
|
||||
MinExclusive,
|
||||
MinInclusive,
|
||||
MaxExclusive,
|
||||
MaxInclusive,
|
||||
TotalDigits,
|
||||
FractionDigits,
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaFacet"]/*' />
|
||||
public abstract class XmlSchemaFacet : XmlSchemaAnnotated {
|
||||
string value;
|
||||
bool isFixed;
|
||||
FacetType facetType;
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaFacet.Value"]/*' />
|
||||
[XmlAttribute("value")]
|
||||
public string Value {
|
||||
get { return this.value; }
|
||||
set { this.value = value; }
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaFacet.IsFixed"]/*' />
|
||||
[XmlAttribute("fixed"), DefaultValue(false)]
|
||||
public virtual bool IsFixed {
|
||||
get { return isFixed; }
|
||||
set {
|
||||
if (!(this is XmlSchemaEnumerationFacet) && !(this is XmlSchemaPatternFacet)) {
|
||||
isFixed = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal FacetType FacetType {
|
||||
get {
|
||||
return facetType;
|
||||
}
|
||||
set {
|
||||
facetType = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaNumericFacet"]/*' />
|
||||
public abstract class XmlSchemaNumericFacet : XmlSchemaFacet { }
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaLengthFacet"]/*' />
|
||||
public class XmlSchemaLengthFacet : XmlSchemaNumericFacet {
|
||||
public XmlSchemaLengthFacet() {
|
||||
FacetType = FacetType.Length;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaMinLengthFacet"]/*' />
|
||||
public class XmlSchemaMinLengthFacet : XmlSchemaNumericFacet {
|
||||
public XmlSchemaMinLengthFacet() {
|
||||
FacetType = FacetType.MinLength;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaMaxLengthFacet"]/*' />
|
||||
public class XmlSchemaMaxLengthFacet : XmlSchemaNumericFacet {
|
||||
public XmlSchemaMaxLengthFacet() {
|
||||
FacetType = FacetType.MaxLength;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaPatternFacet"]/*' />
|
||||
public class XmlSchemaPatternFacet : XmlSchemaFacet {
|
||||
public XmlSchemaPatternFacet() {
|
||||
FacetType = FacetType.Pattern;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaEnumerationFacet"]/*' />
|
||||
public class XmlSchemaEnumerationFacet : XmlSchemaFacet {
|
||||
public XmlSchemaEnumerationFacet() {
|
||||
FacetType = FacetType.Enumeration;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaMinExclusiveFacet"]/*' />
|
||||
public class XmlSchemaMinExclusiveFacet : XmlSchemaFacet {
|
||||
public XmlSchemaMinExclusiveFacet() {
|
||||
FacetType = FacetType.MinExclusive;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaMinInclusiveFacet"]/*' />
|
||||
public class XmlSchemaMinInclusiveFacet : XmlSchemaFacet {
|
||||
public XmlSchemaMinInclusiveFacet() {
|
||||
FacetType = FacetType.MinInclusive;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaMaxExclusiveFacet"]/*' />
|
||||
public class XmlSchemaMaxExclusiveFacet : XmlSchemaFacet {
|
||||
public XmlSchemaMaxExclusiveFacet() {
|
||||
FacetType = FacetType.MaxExclusive;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaMaxInclusiveFacet"]/*' />
|
||||
public class XmlSchemaMaxInclusiveFacet : XmlSchemaFacet {
|
||||
public XmlSchemaMaxInclusiveFacet() {
|
||||
FacetType = FacetType.MaxInclusive;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaTotalDigitsFacet"]/*' />
|
||||
public class XmlSchemaTotalDigitsFacet : XmlSchemaNumericFacet {
|
||||
public XmlSchemaTotalDigitsFacet() {
|
||||
FacetType = FacetType.TotalDigits;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaFractionDigitsFacet"]/*' />
|
||||
public class XmlSchemaFractionDigitsFacet : XmlSchemaNumericFacet {
|
||||
public XmlSchemaFractionDigitsFacet() {
|
||||
FacetType = FacetType.FractionDigits;
|
||||
}
|
||||
}
|
||||
|
||||
/// <include file='doc\XmlSchemaFacet.uex' path='docs/doc[@for="XmlSchemaWhiteSpaceFacet"]/*' />
|
||||
public class XmlSchemaWhiteSpaceFacet : XmlSchemaFacet {
|
||||
public XmlSchemaWhiteSpaceFacet() {
|
||||
FacetType = FacetType.Whitespace;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user