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
- CmsInterop.cs
- CompatibleIComparer.cs
- WindowHideOrCloseTracker.cs
- RightsManagementInformation.cs
- PkcsUtils.cs
- AttributeEmitter.cs
- ObjectPropertyMapping.cs
- RequestResizeEvent.cs
- LayoutTableCell.cs
- ApplicationInfo.cs
- HtmlGenericControl.cs
- TextServicesCompartmentContext.cs
- ISFClipboardData.cs
- If.cs
- TraceUtility.cs
- CompressedStack.cs
- ActivatableWorkflowsQueryResult.cs
- ObjectKeyFrameCollection.cs
- XmlSchemaExporter.cs
- RegistrationProxy.cs
- sortedlist.cs
- BoolExpressionVisitors.cs
- SystemWebSectionGroup.cs
- HexParser.cs
- UnsafeNativeMethods.cs
- EtwTrace.cs
- DesigntimeLicenseContext.cs
- DataException.cs
- __Error.cs
- Message.cs
- XmlDataProvider.cs
- NotImplementedException.cs
- DialogResultConverter.cs
- Literal.cs
- WebPartUtil.cs
- unsafenativemethodsother.cs
- PropertyItem.cs
- DesignerTextBoxAdapter.cs
- RegistryDataKey.cs
- HostExecutionContextManager.cs
- HighlightComponent.cs
- WriterOutput.cs
- ButtonColumn.cs
- ContentDefinition.cs
- Condition.cs
- NullableBoolConverter.cs
- NotifyInputEventArgs.cs
- ByteKeyFrameCollection.cs
- XmlAnyElementAttributes.cs
- CodeGotoStatement.cs
- CallContext.cs
- CodeExpressionCollection.cs
- DirectoryLocalQuery.cs
- ObjectSpanRewriter.cs
- ECDiffieHellmanPublicKey.cs
- InvalidPipelineStoreException.cs
- ConnectorSelectionGlyph.cs
- SoapIgnoreAttribute.cs
- WebPartHelpVerb.cs
- LambdaCompiler.Address.cs
- TextReader.cs
- XsltLoader.cs
- ObjectNotFoundException.cs
- Cursors.cs
- WasAdminWrapper.cs
- XmlSchemaAttributeGroup.cs
- XmlILTrace.cs
- DesignerSerializerAttribute.cs
- CreateUserWizardStep.cs
- PtsHelper.cs
- DataGridPagerStyle.cs
- BidirectionalDictionary.cs
- GridViewColumn.cs
- FilteredAttributeCollection.cs
- DocobjHost.cs
- DescendantQuery.cs
- MissingMethodException.cs
- RelationshipConverter.cs
- GreenMethods.cs
- NetworkAddressChange.cs
- IndexedString.cs
- DataGridViewUtilities.cs
- ProcessModuleCollection.cs
- HttpRuntimeSection.cs
- TimeManager.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- CreateParams.cs
- ImageEditor.cs
- MachineKeySection.cs
- SchemaElementLookUpTable.cs
- CellLabel.cs
- UserControlCodeDomTreeGenerator.cs
- DocumentPageTextView.cs
- ResourceSet.cs
- TokenDescriptor.cs
- ReadOnlyDictionary.cs
- KeyValueInternalCollection.cs
- SafeEventLogWriteHandle.cs
- GeometryCombineModeValidation.cs
- Compiler.cs