Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaGroup.cs / 1 / XmlSchemaGroup.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Xml.Serialization; ////// /// public class XmlSchemaGroup : XmlSchemaAnnotated { string name; XmlSchemaGroupBase particle; XmlSchemaParticle canonicalParticle; XmlQualifiedName qname = XmlQualifiedName.Empty; XmlSchemaGroup redefined; int selfReferenceCount; ///[To be supplied.] ////// /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } ///[To be supplied.] ////// /// [XmlElement("choice", typeof(XmlSchemaChoice)), XmlElement("all", typeof(XmlSchemaAll)), XmlElement("sequence", typeof(XmlSchemaSequence))] public XmlSchemaGroupBase Particle { get { return particle; } set { particle = value; } } [XmlIgnore] public XmlQualifiedName QualifiedName { get { return qname; } } [XmlIgnore] internal XmlSchemaParticle CanonicalParticle { get { return canonicalParticle; } set { canonicalParticle = value; } } [XmlIgnore] internal XmlSchemaGroup Redefined { get { return redefined; } set { redefined = value; } } [XmlIgnore] internal int SelfReferenceCount { get { return selfReferenceCount; } set { selfReferenceCount = value; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } internal void SetQualifiedName(XmlQualifiedName value) { qname = value; } internal override XmlSchemaObject Clone() { XmlSchemaGroup newGroup = (XmlSchemaGroup)MemberwiseClone(); if (XmlSchemaComplexType.HasParticleRef(this.particle)) { newGroup.particle = XmlSchemaComplexType.CloneParticle(this.particle) as XmlSchemaGroupBase; } newGroup.canonicalParticle = XmlSchemaParticle.Empty; return newGroup; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TagPrefixAttribute.cs
- WebServicesSection.cs
- DataGridViewColumnEventArgs.cs
- XmlSchemaObjectTable.cs
- PrtTicket_Public.cs
- OperatorExpressions.cs
- ComplexBindingPropertiesAttribute.cs
- CompilerWrapper.cs
- CreateParams.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- WindowsListViewItemStartMenu.cs
- SizeAnimationBase.cs
- FileLevelControlBuilderAttribute.cs
- SQLMoneyStorage.cs
- SqlColumnizer.cs
- FixUp.cs
- SettingsProperty.cs
- FixedBufferAttribute.cs
- WebPartDisplayMode.cs
- HttpRuntimeSection.cs
- EDesignUtil.cs
- MarkupCompilePass1.cs
- TraceUtils.cs
- TimeSpanConverter.cs
- Codec.cs
- DeviceContext2.cs
- ErrorInfoXmlDocument.cs
- SqlConnectionPoolGroupProviderInfo.cs
- WebPartCancelEventArgs.cs
- MediaContextNotificationWindow.cs
- TileModeValidation.cs
- TrackingMemoryStreamFactory.cs
- ConfigurationManagerInternal.cs
- AndMessageFilterTable.cs
- WebPartMenu.cs
- HtmlInputFile.cs
- XmlWriterTraceListener.cs
- HwndPanningFeedback.cs
- FixedLineResult.cs
- ServiceDescriptionImporter.cs
- NativeMethods.cs
- Overlapped.cs
- StructureChangedEventArgs.cs
- InvalidCastException.cs
- ObjectParameterCollection.cs
- DriveInfo.cs
- RotateTransform3D.cs
- RuntimeComponentFilter.cs
- BitmapEffectGroup.cs
- FieldAccessException.cs
- SettingsAttributeDictionary.cs
- StringValidator.cs
- BindingSource.cs
- AttributeData.cs
- QilFunction.cs
- SafeRightsManagementPubHandle.cs
- ZipIOModeEnforcingStream.cs
- SharedDp.cs
- ListViewGroupCollectionEditor.cs
- PathSegment.cs
- XmlAggregates.cs
- _ScatterGatherBuffers.cs
- ControlEvent.cs
- Rectangle.cs
- SignatureGenerator.cs
- DesignerActionListCollection.cs
- AlignmentYValidation.cs
- Decimal.cs
- WindowsAltTab.cs
- EnumerableValidator.cs
- StylesEditorDialog.cs
- SettingsBase.cs
- SingletonChannelAcceptor.cs
- EntityType.cs
- TemplateBaseAction.cs
- MessageQueueInstaller.cs
- DesignerActionItemCollection.cs
- UIElementAutomationPeer.cs
- FixedSOMLineRanges.cs
- smtppermission.cs
- UriParserTemplates.cs
- StickyNoteHelper.cs
- XmlComment.cs
- TextDecorationCollection.cs
- TokenBasedSet.cs
- XPathDocumentIterator.cs
- SchemaElement.cs
- SqlConnectionHelper.cs
- AutoSizeComboBox.cs
- ResourceDescriptionAttribute.cs
- InputLangChangeRequestEvent.cs
- WorkflowInstanceExtensionProvider.cs
- VirtualizedItemPattern.cs
- XsltOutput.cs
- DataGridViewHitTestInfo.cs
- DBConnectionString.cs
- OSFeature.cs
- RequestCacheManager.cs
- SystemIPGlobalProperties.cs
- AttributeUsageAttribute.cs