Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaParticle.cs / 1 / XmlSchemaParticle.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Xml.Serialization; ////// /// public abstract class XmlSchemaParticle : XmlSchemaAnnotated { [Flags] enum Occurs { None, Min, Max }; decimal minOccurs = decimal.One; decimal maxOccurs = decimal.One; Occurs flags = Occurs.None; ///[To be supplied.] ////// /// [XmlAttribute("minOccurs")] public string MinOccursString { get { return (flags & Occurs.Min) == 0 ? null : XmlConvert.ToString(minOccurs); } set { if (value == null) { minOccurs = decimal.One; flags &= ~Occurs.Min; } else { minOccurs = XmlConvert.ToInteger(value); if (minOccurs < decimal.Zero) { throw new XmlSchemaException(Res.Sch_MinOccursInvalidXsd, string.Empty); } flags |= Occurs.Min; } } } ///[To be supplied.] ////// /// [XmlAttribute("maxOccurs")] public string MaxOccursString { get { return (flags & Occurs.Max) == 0 ? null : (maxOccurs == decimal.MaxValue) ? "unbounded" : XmlConvert.ToString(maxOccurs); } set { if (value == null) { maxOccurs = decimal.One; flags &= ~Occurs.Max; } else { if (value == "unbounded") { maxOccurs = decimal.MaxValue; } else { maxOccurs = XmlConvert.ToInteger(value); if (maxOccurs < decimal.Zero) { throw new XmlSchemaException(Res.Sch_MaxOccursInvalidXsd, string.Empty); } else if (maxOccurs == decimal.Zero && (flags & Occurs.Min) == 0) { minOccurs = decimal.Zero; } } flags |= Occurs.Max; } } } ///[To be supplied.] ////// /// [XmlIgnore] public decimal MinOccurs { get { return minOccurs; } set { if (value < decimal.Zero || value != decimal.Truncate(value)) { throw new XmlSchemaException(Res.Sch_MinOccursInvalidXsd, string.Empty); } minOccurs = value; flags |= Occurs.Min; } } ///[To be supplied.] ////// /// [XmlIgnore] public decimal MaxOccurs { get { return maxOccurs; } set { if (value < decimal.Zero || value != decimal.Truncate(value)) { throw new XmlSchemaException(Res.Sch_MaxOccursInvalidXsd, string.Empty); } maxOccurs = value; if (maxOccurs == decimal.Zero && (flags & Occurs.Min) == 0) { minOccurs = decimal.Zero; } flags |= Occurs.Max; } } internal virtual bool IsEmpty { get { return maxOccurs == decimal.Zero; } } internal bool IsMultipleOccurrence { get { return maxOccurs > decimal.One; } } internal virtual string NameString { get { return string.Empty; } } internal XmlQualifiedName GetQualifiedName() { XmlSchemaElement elem = this as XmlSchemaElement; if (elem != null) { return elem.QualifiedName; } else { XmlSchemaAny any = this as XmlSchemaAny; if (any != null) { string ns = any.Namespace; if (ns != null) { ns = ns.Trim(); } else { ns = string.Empty; } return new XmlQualifiedName("*", ns.Length == 0 ? "##any" : ns); } } return XmlQualifiedName.Empty; //If ever called on other particles } class EmptyParticle : XmlSchemaParticle { internal override bool IsEmpty { get { return true; } } } internal static readonly XmlSchemaParticle Empty = new EmptyParticle(); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Xml.Serialization; ////// /// public abstract class XmlSchemaParticle : XmlSchemaAnnotated { [Flags] enum Occurs { None, Min, Max }; decimal minOccurs = decimal.One; decimal maxOccurs = decimal.One; Occurs flags = Occurs.None; ///[To be supplied.] ////// /// [XmlAttribute("minOccurs")] public string MinOccursString { get { return (flags & Occurs.Min) == 0 ? null : XmlConvert.ToString(minOccurs); } set { if (value == null) { minOccurs = decimal.One; flags &= ~Occurs.Min; } else { minOccurs = XmlConvert.ToInteger(value); if (minOccurs < decimal.Zero) { throw new XmlSchemaException(Res.Sch_MinOccursInvalidXsd, string.Empty); } flags |= Occurs.Min; } } } ///[To be supplied.] ////// /// [XmlAttribute("maxOccurs")] public string MaxOccursString { get { return (flags & Occurs.Max) == 0 ? null : (maxOccurs == decimal.MaxValue) ? "unbounded" : XmlConvert.ToString(maxOccurs); } set { if (value == null) { maxOccurs = decimal.One; flags &= ~Occurs.Max; } else { if (value == "unbounded") { maxOccurs = decimal.MaxValue; } else { maxOccurs = XmlConvert.ToInteger(value); if (maxOccurs < decimal.Zero) { throw new XmlSchemaException(Res.Sch_MaxOccursInvalidXsd, string.Empty); } else if (maxOccurs == decimal.Zero && (flags & Occurs.Min) == 0) { minOccurs = decimal.Zero; } } flags |= Occurs.Max; } } } ///[To be supplied.] ////// /// [XmlIgnore] public decimal MinOccurs { get { return minOccurs; } set { if (value < decimal.Zero || value != decimal.Truncate(value)) { throw new XmlSchemaException(Res.Sch_MinOccursInvalidXsd, string.Empty); } minOccurs = value; flags |= Occurs.Min; } } ///[To be supplied.] ////// /// [XmlIgnore] public decimal MaxOccurs { get { return maxOccurs; } set { if (value < decimal.Zero || value != decimal.Truncate(value)) { throw new XmlSchemaException(Res.Sch_MaxOccursInvalidXsd, string.Empty); } maxOccurs = value; if (maxOccurs == decimal.Zero && (flags & Occurs.Min) == 0) { minOccurs = decimal.Zero; } flags |= Occurs.Max; } } internal virtual bool IsEmpty { get { return maxOccurs == decimal.Zero; } } internal bool IsMultipleOccurrence { get { return maxOccurs > decimal.One; } } internal virtual string NameString { get { return string.Empty; } } internal XmlQualifiedName GetQualifiedName() { XmlSchemaElement elem = this as XmlSchemaElement; if (elem != null) { return elem.QualifiedName; } else { XmlSchemaAny any = this as XmlSchemaAny; if (any != null) { string ns = any.Namespace; if (ns != null) { ns = ns.Trim(); } else { ns = string.Empty; } return new XmlQualifiedName("*", ns.Length == 0 ? "##any" : ns); } } return XmlQualifiedName.Empty; //If ever called on other particles } class EmptyParticle : XmlSchemaParticle { internal override bool IsEmpty { get { return true; } } } internal static readonly XmlSchemaParticle Empty = new EmptyParticle(); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OraclePermissionAttribute.cs
- StylusDownEventArgs.cs
- StorageEntityContainerMapping.cs
- BindingBase.cs
- DataProtection.cs
- Literal.cs
- HexParser.cs
- SectionRecord.cs
- ArrayConverter.cs
- GeneralTransform3D.cs
- Triplet.cs
- NamespaceMapping.cs
- Light.cs
- ApplicationSecurityInfo.cs
- GridViewHeaderRowPresenter.cs
- JapaneseLunisolarCalendar.cs
- SqlProvider.cs
- IndexerNameAttribute.cs
- CodeDirectionExpression.cs
- Win32.cs
- XmlUrlResolver.cs
- ActivityMarkupSerializer.cs
- XmlNotation.cs
- QuaternionRotation3D.cs
- GetPageCompletedEventArgs.cs
- CodeObjectCreateExpression.cs
- Win32KeyboardDevice.cs
- BasicExpressionVisitor.cs
- Decimal.cs
- PropertyFilterAttribute.cs
- TableLayoutSettings.cs
- EntityContainerAssociationSetEnd.cs
- StorageAssociationTypeMapping.cs
- Timeline.cs
- bindurihelper.cs
- ConfigUtil.cs
- ToolStripMenuItem.cs
- InheritanceContextChangedEventManager.cs
- TextSelectionProcessor.cs
- MemberAccessException.cs
- DataListItem.cs
- FormViewPageEventArgs.cs
- PartialArray.cs
- PermissionSet.cs
- ArrayConverter.cs
- MethodCallConverter.cs
- DelegatingTypeDescriptionProvider.cs
- SortFieldComparer.cs
- HtmlTable.cs
- SchemaComplexType.cs
- SynthesizerStateChangedEventArgs.cs
- InstanceOwnerException.cs
- SvcMapFileLoader.cs
- Connector.cs
- WindowsGraphics.cs
- PathFigureCollection.cs
- GeneralTransform3DGroup.cs
- PaperSource.cs
- SevenBitStream.cs
- Unit.cs
- ErrorInfoXmlDocument.cs
- WebPartMinimizeVerb.cs
- SuppressedPackageProperties.cs
- TreePrinter.cs
- Highlights.cs
- GridItemProviderWrapper.cs
- DeviceSpecific.cs
- HighlightVisual.cs
- GeneralTransform3DTo2DTo3D.cs
- ArraySortHelper.cs
- GridViewCommandEventArgs.cs
- ExceptionUtil.cs
- DocComment.cs
- PipeStream.cs
- ScriptingJsonSerializationSection.cs
- MemoryRecordBuffer.cs
- TakeQueryOptionExpression.cs
- IPAddressCollection.cs
- TryExpression.cs
- WhiteSpaceTrimStringConverter.cs
- Decoder.cs
- TraceSwitch.cs
- WinCategoryAttribute.cs
- ViewGenerator.cs
- PathGeometry.cs
- Encoder.cs
- WindowsListViewItemCheckBox.cs
- HttpCookieCollection.cs
- SafeProcessHandle.cs
- ClientSponsor.cs
- ClientCultureInfo.cs
- BrowsableAttribute.cs
- ValidationSummary.cs
- TextParaClient.cs
- AttributeAction.cs
- ErrorStyle.cs
- MergablePropertyAttribute.cs
- ConfigurationSectionGroup.cs
- MexNamedPipeBindingElement.cs
- HijriCalendar.cs