Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaGroup.cs / 2 / 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
- TemplateInstanceAttribute.cs
- XmlSignificantWhitespace.cs
- SiteMapNodeItem.cs
- MenuScrollingVisibilityConverter.cs
- WebPartManager.cs
- GridViewRowPresenter.cs
- ListViewUpdateEventArgs.cs
- SHA256Cng.cs
- NamedPipeProcessProtocolHandler.cs
- XmlDigitalSignatureProcessor.cs
- HtmlLinkAdapter.cs
- IProducerConsumerCollection.cs
- PropertyChangingEventArgs.cs
- Double.cs
- DefaultMemberAttribute.cs
- StringAnimationBase.cs
- ControlIdConverter.cs
- XmlSchemaDocumentation.cs
- MenuItemBindingCollection.cs
- BevelBitmapEffect.cs
- DbProviderFactory.cs
- GlyphRunDrawing.cs
- StrokeCollectionConverter.cs
- SplashScreenNativeMethods.cs
- StructuredTypeInfo.cs
- D3DImage.cs
- ServiceEndpoint.cs
- InvokeProviderWrapper.cs
- EncodingInfo.cs
- AuthorizationSection.cs
- Application.cs
- SerialErrors.cs
- HttpCachePolicyElement.cs
- ContextMarshalException.cs
- XsltArgumentList.cs
- SqlNodeAnnotations.cs
- Decoder.cs
- KeysConverter.cs
- SafeHandles.cs
- Int16KeyFrameCollection.cs
- ClaimTypes.cs
- ColorPalette.cs
- HtmlEmptyTagControlBuilder.cs
- SHA256.cs
- ObjectTag.cs
- DbExpressionVisitor.cs
- FileStream.cs
- StyleSelector.cs
- nulltextcontainer.cs
- AppSettingsExpressionBuilder.cs
- AttributeCollection.cs
- EditingCoordinator.cs
- FlowDocumentPage.cs
- TemplateControlBuildProvider.cs
- IDReferencePropertyAttribute.cs
- SelectionChangedEventArgs.cs
- PageCodeDomTreeGenerator.cs
- MessageBox.cs
- SoapIgnoreAttribute.cs
- ToolboxItemImageConverter.cs
- CachedCompositeFamily.cs
- OutKeywords.cs
- TraceContext.cs
- TrackingServices.cs
- Filter.cs
- RIPEMD160Managed.cs
- MachineKeyConverter.cs
- SelectionItemPattern.cs
- CompilerResults.cs
- SqlMethodTransformer.cs
- FormView.cs
- ControlAdapter.cs
- EdmTypeAttribute.cs
- HtmlElementEventArgs.cs
- DataControlPagerLinkButton.cs
- ApplicationSecurityManager.cs
- CompiledQuery.cs
- bidPrivateBase.cs
- PrintPreviewDialog.cs
- _ProxyChain.cs
- CodeDirectoryCompiler.cs
- BitmapEffectDrawingContextState.cs
- WebPartEventArgs.cs
- CompilerError.cs
- PresentationAppDomainManager.cs
- RuntimeEnvironment.cs
- SqlBulkCopy.cs
- SelectionItemPatternIdentifiers.cs
- SqlUtils.cs
- CodeDelegateInvokeExpression.cs
- XMLSchema.cs
- TranslateTransform.cs
- PieceDirectory.cs
- XDRSchema.cs
- InfoCard.cs
- ButtonBase.cs
- LexicalChunk.cs
- TextLine.cs
- WsatTransactionInfo.cs
- FormatterServicesNoSerializableCheck.cs