Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaFacet.cs / 2 / XmlSchemaFacet.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- 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, } ///public abstract class XmlSchemaFacet : XmlSchemaAnnotated { string value; bool isFixed; FacetType facetType; /// [XmlAttribute("value")] public string Value { get { return this.value; } set { this.value = value; } } /// [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; } } } /// public abstract class XmlSchemaNumericFacet : XmlSchemaFacet { } /// public class XmlSchemaLengthFacet : XmlSchemaNumericFacet { public XmlSchemaLengthFacet() { FacetType = FacetType.Length; } } /// public class XmlSchemaMinLengthFacet : XmlSchemaNumericFacet { public XmlSchemaMinLengthFacet() { FacetType = FacetType.MinLength; } } /// public class XmlSchemaMaxLengthFacet : XmlSchemaNumericFacet { public XmlSchemaMaxLengthFacet() { FacetType = FacetType.MaxLength; } } /// public class XmlSchemaPatternFacet : XmlSchemaFacet { public XmlSchemaPatternFacet() { FacetType = FacetType.Pattern; } } /// public class XmlSchemaEnumerationFacet : XmlSchemaFacet { public XmlSchemaEnumerationFacet() { FacetType = FacetType.Enumeration; } } /// public class XmlSchemaMinExclusiveFacet : XmlSchemaFacet { public XmlSchemaMinExclusiveFacet() { FacetType = FacetType.MinExclusive; } } /// public class XmlSchemaMinInclusiveFacet : XmlSchemaFacet { public XmlSchemaMinInclusiveFacet() { FacetType = FacetType.MinInclusive; } } /// public class XmlSchemaMaxExclusiveFacet : XmlSchemaFacet { public XmlSchemaMaxExclusiveFacet() { FacetType = FacetType.MaxExclusive; } } /// public class XmlSchemaMaxInclusiveFacet : XmlSchemaFacet { public XmlSchemaMaxInclusiveFacet() { FacetType = FacetType.MaxInclusive; } } /// public class XmlSchemaTotalDigitsFacet : XmlSchemaNumericFacet { public XmlSchemaTotalDigitsFacet() { FacetType = FacetType.TotalDigits; } } /// public class XmlSchemaFractionDigitsFacet : XmlSchemaNumericFacet { public XmlSchemaFractionDigitsFacet() { FacetType = FacetType.FractionDigits; } } /// public class XmlSchemaWhiteSpaceFacet : XmlSchemaFacet { public XmlSchemaWhiteSpaceFacet() { FacetType = FacetType.Whitespace; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DetailsView.cs
- InfiniteTimeSpanConverter.cs
- InfoCardKeyedHashAlgorithm.cs
- WithStatement.cs
- InternalEnumValidator.cs
- BindableAttribute.cs
- SvcMapFileLoader.cs
- Event.cs
- SQLInt32Storage.cs
- SecurityTokenSpecification.cs
- MultipleViewPatternIdentifiers.cs
- SqlVersion.cs
- TcpPortSharing.cs
- TableItemPattern.cs
- Internal.cs
- DbException.cs
- ListViewGroupItemCollection.cs
- TransformDescriptor.cs
- SymLanguageVendor.cs
- StaticDataManager.cs
- PackagePart.cs
- InkCanvasInnerCanvas.cs
- SamlSubject.cs
- Util.cs
- RenderCapability.cs
- UrlPath.cs
- XmlSchemaSimpleContentRestriction.cs
- Point3DCollectionConverter.cs
- recordstatescratchpad.cs
- SqlMethods.cs
- FlowDocumentFormatter.cs
- DataGridViewCellConverter.cs
- CertificateManager.cs
- GridItemCollection.cs
- XamlSerializationHelper.cs
- LabelTarget.cs
- SettingsProviderCollection.cs
- BitmapEffectCollection.cs
- DataGridAddNewRow.cs
- PathGradientBrush.cs
- CodeGeneratorAttribute.cs
- Pair.cs
- SuppressMergeCheckAttribute.cs
- Tablet.cs
- SortExpressionBuilder.cs
- NoPersistProperty.cs
- Rotation3DAnimationBase.cs
- DataSysAttribute.cs
- DataGridCellsPresenter.cs
- ConsumerConnectionPointCollection.cs
- ProxyWebPart.cs
- SvcMapFile.cs
- DbModificationClause.cs
- HttpApplicationFactory.cs
- DisplayNameAttribute.cs
- ListViewGroupItemCollection.cs
- DecimalConverter.cs
- PropertyToken.cs
- WebPartsSection.cs
- EntryIndex.cs
- ListBoxItemAutomationPeer.cs
- KeyTime.cs
- QueryOperator.cs
- XmlSchemaObject.cs
- Visual.cs
- SchemaCollectionPreprocessor.cs
- CatalogPartCollection.cs
- GridEntryCollection.cs
- SendDesigner.xaml.cs
- EntityModelBuildProvider.cs
- BaseDataBoundControl.cs
- TypeHelper.cs
- DocumentEventArgs.cs
- __Filters.cs
- BitmapEffectGroup.cs
- Timer.cs
- DataGridViewCellCollection.cs
- EpmAttributeNameBuilder.cs
- GraphicsPath.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- UrlPath.cs
- DataRowView.cs
- GeneralTransformCollection.cs
- PathSegmentCollection.cs
- BitmapImage.cs
- DescendantBaseQuery.cs
- TextServicesHost.cs
- FrameworkContentElementAutomationPeer.cs
- GlyphRunDrawing.cs
- TextTreeFixupNode.cs
- SharedPersonalizationStateInfo.cs
- ContainerParagraph.cs
- DoubleConverter.cs
- StateInitializationDesigner.cs
- NonceCache.cs
- ToolboxComponentsCreatedEventArgs.cs
- HandlerFactoryCache.cs
- DataControlFieldHeaderCell.cs
- CustomAttribute.cs
- FileEnumerator.cs