Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaFacet.cs / 1 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DSACryptoServiceProvider.cs
- URLAttribute.cs
- Grid.cs
- DateTimeOffsetConverter.cs
- SRDisplayNameAttribute.cs
- CustomErrorCollection.cs
- ConcurrencyBehavior.cs
- TdsRecordBufferSetter.cs
- ObjectAnimationUsingKeyFrames.cs
- PreviewKeyDownEventArgs.cs
- StrongNameKeyPair.cs
- UserNameSecurityToken.cs
- DebugView.cs
- CodeAttributeDeclaration.cs
- ConnectionPoolManager.cs
- ResourceSet.cs
- XhtmlTextWriter.cs
- configsystem.cs
- HttpTransportBindingElement.cs
- VersionedStreamOwner.cs
- BlurBitmapEffect.cs
- UpnEndpointIdentity.cs
- CodeIterationStatement.cs
- TextTreeUndoUnit.cs
- ToolStripProgressBar.cs
- NullRuntimeConfig.cs
- TemplateInstanceAttribute.cs
- LongTypeConverter.cs
- DBConnection.cs
- SchemaImporterExtensionElementCollection.cs
- KeyValueSerializer.cs
- QilReplaceVisitor.cs
- DataListCommandEventArgs.cs
- XmlText.cs
- OLEDB_Enum.cs
- ProtocolsConfiguration.cs
- M3DUtil.cs
- RoleGroupCollection.cs
- WorkflowTransactionService.cs
- SafeNativeMethods.cs
- InvokeHandlers.cs
- CodeParameterDeclarationExpression.cs
- GlyphRun.cs
- ReachNamespaceInfo.cs
- ValidationSummary.cs
- AutoCompleteStringCollection.cs
- Utils.cs
- TextEditorTyping.cs
- CreateRefExpr.cs
- JournalEntryStack.cs
- NamespaceEmitter.cs
- ComplexTypeEmitter.cs
- StreamGeometryContext.cs
- TraceUtils.cs
- SynchronizedDisposablePool.cs
- TcpActivation.cs
- Crypto.cs
- RelationshipConstraintValidator.cs
- ToolStripPanelRow.cs
- GlyphRunDrawing.cs
- AutomationTextAttribute.cs
- Misc.cs
- WizardStepBase.cs
- Run.cs
- StructuralObject.cs
- OleDbPropertySetGuid.cs
- QuaternionAnimationUsingKeyFrames.cs
- EntitySetBase.cs
- _AcceptOverlappedAsyncResult.cs
- ToolStripRendererSwitcher.cs
- RuntimeConfigLKG.cs
- TextLineBreak.cs
- ExpandCollapseProviderWrapper.cs
- WindowsGraphics.cs
- ControlFilterExpression.cs
- DrawingState.cs
- CustomPopupPlacement.cs
- WebEncodingValidator.cs
- CompilationPass2TaskInternal.cs
- FlowDocumentScrollViewer.cs
- SplitterPanel.cs
- SqlInternalConnectionSmi.cs
- CloseSequenceResponse.cs
- UIElementHelper.cs
- TypeUnloadedException.cs
- ProviderCollection.cs
- SqlCachedBuffer.cs
- _emptywebproxy.cs
- OleDbPermission.cs
- XamlInt32CollectionSerializer.cs
- _AcceptOverlappedAsyncResult.cs
- DbDataReader.cs
- MetadataConversionError.cs
- AssemblyName.cs
- OdbcParameterCollection.cs
- StateItem.cs
- DataGridViewSelectedCellCollection.cs
- QilGeneratorEnv.cs
- ContextBase.cs
- SimpleWebHandlerParser.cs