Code:
/ FX-1434 / FX-1434 / 1.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
- HandleCollector.cs
- Pkcs7Recipient.cs
- ProfileParameter.cs
- ReadOnlyDictionary.cs
- DataGridViewRowsRemovedEventArgs.cs
- ControlCachePolicy.cs
- SchemaConstraints.cs
- MethodInfo.cs
- TextClipboardData.cs
- RadialGradientBrush.cs
- DesignerActionUI.cs
- ProtectedConfigurationProviderCollection.cs
- XmlSchemaCompilationSettings.cs
- BidOverLoads.cs
- ArraySortHelper.cs
- CopyOfAction.cs
- SerializationInfoEnumerator.cs
- X509Extension.cs
- PowerModeChangedEventArgs.cs
- ColumnMapTranslator.cs
- ToolbarAUtomationPeer.cs
- CaretElement.cs
- ExpandCollapseProviderWrapper.cs
- WSHttpTransportSecurityElement.cs
- CallbackValidator.cs
- FixedHighlight.cs
- TypeDependencyAttribute.cs
- OSFeature.cs
- CqlIdentifiers.cs
- ListenerBinder.cs
- GenericRootAutomationPeer.cs
- DetailsViewActionList.cs
- TemplateNameScope.cs
- ContextProperty.cs
- QueryOutputWriter.cs
- CapabilitiesState.cs
- WsdlImporter.cs
- EncoderNLS.cs
- CalendarDesigner.cs
- XmlCDATASection.cs
- EventOpcode.cs
- InkCanvasFeedbackAdorner.cs
- SimpleBitVector32.cs
- OdbcUtils.cs
- Simplifier.cs
- ScriptModule.cs
- Ipv6Element.cs
- FunctionParameter.cs
- TableCellCollection.cs
- X509AsymmetricSecurityKey.cs
- WpfGeneratedKnownProperties.cs
- FilePresentation.cs
- TdsParserStaticMethods.cs
- WebBrowserSiteBase.cs
- HttpCacheVaryByContentEncodings.cs
- BooleanAnimationUsingKeyFrames.cs
- FaultDesigner.cs
- TailCallAnalyzer.cs
- DataChangedEventManager.cs
- WindowsToolbarItemAsMenuItem.cs
- DataGridViewColumnEventArgs.cs
- SmtpSection.cs
- ManagedIStream.cs
- ContentType.cs
- PictureBox.cs
- UIElementCollection.cs
- ProvidePropertyAttribute.cs
- CommandID.cs
- TableAutomationPeer.cs
- CacheDependency.cs
- EventLogPermissionEntryCollection.cs
- XamlClipboardData.cs
- COM2FontConverter.cs
- KeyConverter.cs
- Maps.cs
- FixedPageAutomationPeer.cs
- ObjectListShowCommandsEventArgs.cs
- OperationCanceledException.cs
- ResponseBodyWriter.cs
- TextTreeRootTextBlock.cs
- XmlEntityReference.cs
- SpeechAudioFormatInfo.cs
- SchemaObjectWriter.cs
- Deserializer.cs
- CompilerCollection.cs
- ResourceSet.cs
- DelimitedListTraceListener.cs
- ConfigurationPropertyAttribute.cs
- CodeTypeDelegate.cs
- DataGridViewLinkCell.cs
- TransactedReceiveData.cs
- ConfigurationElementProperty.cs
- SolidColorBrush.cs
- BitmapEffectDrawing.cs
- ObjectTypeMapping.cs
- FolderNameEditor.cs
- ExpressionLexer.cs
- RelOps.cs
- SkipQueryOptionExpression.cs
- XmlComplianceUtil.cs