Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaComplexContentRestriction.cs / 1305376 / XmlSchemaComplexContentRestriction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.Xml.Serialization; ////// /// public class XmlSchemaComplexContentRestriction : XmlSchemaContent { XmlSchemaParticle particle; XmlSchemaObjectCollection attributes = new XmlSchemaObjectCollection(); XmlSchemaAnyAttribute anyAttribute; XmlQualifiedName baseTypeName = XmlQualifiedName.Empty; ///[To be supplied.] ////// /// [XmlAttribute("base")] public XmlQualifiedName BaseTypeName { get { return baseTypeName; } set { baseTypeName = (value == null ? XmlQualifiedName.Empty : value); } } ///[To be supplied.] ////// /// [XmlElement("group", typeof(XmlSchemaGroupRef)), XmlElement("choice", typeof(XmlSchemaChoice)), XmlElement("all", typeof(XmlSchemaAll)), XmlElement("sequence", typeof(XmlSchemaSequence))] public XmlSchemaParticle Particle { get { return particle; } set { particle = value; } } ///[To be supplied.] ////// /// [XmlElement("attribute", typeof(XmlSchemaAttribute)), XmlElement("attributeGroup", typeof(XmlSchemaAttributeGroupRef))] public XmlSchemaObjectCollection Attributes { get { return attributes; } } ///[To be supplied.] ////// /// [XmlElement("anyAttribute")] public XmlSchemaAnyAttribute AnyAttribute { get { return anyAttribute; } set { anyAttribute = value; } } internal void SetAttributes(XmlSchemaObjectCollection newAttributes) { attributes = newAttributes; } } } // 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
- CounterCreationDataConverter.cs
- PresentationAppDomainManager.cs
- NavigatorOutput.cs
- MouseButton.cs
- RegularExpressionValidator.cs
- XmlSchemaExporter.cs
- SimpleRecyclingCache.cs
- ConfigErrorGlyph.cs
- NavigationCommands.cs
- FlowDocumentPage.cs
- OutArgumentConverter.cs
- Suspend.cs
- Thread.cs
- FileDialog.cs
- AsmxEndpointPickerExtension.cs
- UnsafeNativeMethodsCLR.cs
- SecondaryIndex.cs
- AccessedThroughPropertyAttribute.cs
- TableLayoutPanelCellPosition.cs
- Simplifier.cs
- Inline.cs
- HandleExceptionArgs.cs
- GradientStop.cs
- TemplateInstanceAttribute.cs
- WindowsFormsHost.cs
- DocComment.cs
- HostingEnvironmentSection.cs
- DiscreteKeyFrames.cs
- LazyTextWriterCreator.cs
- FunctionParameter.cs
- RuleCache.cs
- DockProviderWrapper.cs
- StorageMappingItemCollection.cs
- HtmlUtf8RawTextWriter.cs
- Restrictions.cs
- AssemblyInfo.cs
- ComponentChangedEvent.cs
- LocalizableAttribute.cs
- DocumentScope.cs
- SqlProfileProvider.cs
- LazyTextWriterCreator.cs
- HwndProxyElementProvider.cs
- ThaiBuddhistCalendar.cs
- CommandDesigner.cs
- XPathNodeList.cs
- TdsParserHelperClasses.cs
- PasswordPropertyTextAttribute.cs
- AutoResizedEvent.cs
- DataMember.cs
- HostingEnvironmentException.cs
- SelectedDatesCollection.cs
- ClassHandlersStore.cs
- UIElement3D.cs
- ChangeBlockUndoRecord.cs
- RestHandler.cs
- HttpServerUtilityWrapper.cs
- GetPolicyDetailsRequest.cs
- FontUnitConverter.cs
- HWStack.cs
- XmlDsigSep2000.cs
- ServiceModelSecurityTokenTypes.cs
- FileDetails.cs
- CompilerLocalReference.cs
- SelectionWordBreaker.cs
- ArrayListCollectionBase.cs
- SchemaSetCompiler.cs
- ObjectAnimationBase.cs
- EntityReference.cs
- QilTargetType.cs
- InstanceNameConverter.cs
- XmlCharType.cs
- Preprocessor.cs
- SecurityElement.cs
- DataListGeneralPage.cs
- Cursors.cs
- CancellationState.cs
- TextDecorations.cs
- TimersDescriptionAttribute.cs
- RadioButtonPopupAdapter.cs
- _IPv4Address.cs
- BitmapImage.cs
- SerialPort.cs
- SortDescriptionCollection.cs
- XmlSchemaDatatype.cs
- EventPropertyMap.cs
- WebExceptionStatus.cs
- ImageSource.cs
- SqlServices.cs
- SoapElementAttribute.cs
- HttpCachePolicyElement.cs
- TypeConverterBase.cs
- ParallelEnumerableWrapper.cs
- Block.cs
- TemporaryBitmapFile.cs
- CommandSet.cs
- FormViewCommandEventArgs.cs
- GB18030Encoding.cs
- Border.cs
- AssociatedControlConverter.cs
- ListControlDataBindingHandler.cs