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 / 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
- StrongNameUtility.cs
- EditCommandColumn.cs
- Configuration.cs
- ToolStripDropTargetManager.cs
- ButtonChrome.cs
- RectangleHotSpot.cs
- WindowCollection.cs
- Int32Rect.cs
- StatusBarItemAutomationPeer.cs
- GC.cs
- DataColumnPropertyDescriptor.cs
- pingexception.cs
- SafeLocalAllocation.cs
- NonClientArea.cs
- CompositeDataBoundControl.cs
- RadioButtonFlatAdapter.cs
- CodeFieldReferenceExpression.cs
- DrawListViewSubItemEventArgs.cs
- EndpointNotFoundException.cs
- QualifiedCellIdBoolean.cs
- DateTimeConverter2.cs
- TreeBuilderBamlTranslator.cs
- CSharpCodeProvider.cs
- FilterQuery.cs
- URI.cs
- MachineSettingsSection.cs
- LinqDataSourceSelectEventArgs.cs
- TypeAccessException.cs
- BindingList.cs
- QueryCacheKey.cs
- AffineTransform3D.cs
- TabItemAutomationPeer.cs
- MatrixAnimationBase.cs
- DoubleLink.cs
- CollectionEditorDialog.cs
- ProfileGroupSettings.cs
- PseudoWebRequest.cs
- Slider.cs
- CodeMethodReturnStatement.cs
- SchemaHelper.cs
- XPathNavigatorReader.cs
- PagesChangedEventArgs.cs
- ConfigXmlCDataSection.cs
- LifetimeServices.cs
- StatusBarItem.cs
- BackgroundWorker.cs
- SkipStoryboardToFill.cs
- Error.cs
- ColorContextHelper.cs
- ConfigurationProperty.cs
- ClientTargetSection.cs
- Transform.cs
- ADRole.cs
- ExtenderControl.cs
- MarshalDirectiveException.cs
- LocalIdKeyIdentifierClause.cs
- TrackingRecord.cs
- SqlNotificationRequest.cs
- SqlGatherConsumedAliases.cs
- SecurityCriticalDataForSet.cs
- MediaPlayer.cs
- XmlSchemaCollection.cs
- OletxVolatileEnlistment.cs
- LightweightEntityWrapper.cs
- MessageRpc.cs
- OrthographicCamera.cs
- HMACSHA1.cs
- _SslState.cs
- SqlNamer.cs
- DataGridViewCellParsingEventArgs.cs
- EntityClientCacheKey.cs
- basenumberconverter.cs
- ShaderEffect.cs
- XPathMultyIterator.cs
- Span.cs
- EncoderExceptionFallback.cs
- Psha1DerivedKeyGenerator.cs
- RoamingStoreFileUtility.cs
- SoapInteropTypes.cs
- DeploymentExceptionMapper.cs
- TextElementEnumerator.cs
- VisualStyleTypesAndProperties.cs
- WebRequestModuleElement.cs
- Reference.cs
- URLIdentityPermission.cs
- GeometryConverter.cs
- MasterPageCodeDomTreeGenerator.cs
- WizardPanelChangingEventArgs.cs
- serverconfig.cs
- TextSegment.cs
- EmptyReadOnlyDictionaryInternal.cs
- HttpCacheVaryByContentEncodings.cs
- SchemaNotation.cs
- DateTimeFormat.cs
- HtmlInputSubmit.cs
- ToolStripRenderer.cs
- StrokeDescriptor.cs
- XmlAttributeCache.cs
- TimeStampChecker.cs
- DateTimeOffsetAdapter.cs