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
- HtmlMeta.cs
- QuotedStringFormatReader.cs
- EntityException.cs
- Translator.cs
- DecoderBestFitFallback.cs
- DriveInfo.cs
- DbInsertCommandTree.cs
- WebFormDesignerActionService.cs
- Permission.cs
- X509Extension.cs
- SafePEFileHandle.cs
- XmlCharType.cs
- ComponentChangedEvent.cs
- ExpressionCopier.cs
- ExceptionDetail.cs
- SecurityRuntime.cs
- DBConnection.cs
- DocumentSchemaValidator.cs
- TextEditorParagraphs.cs
- VirtualDirectoryMapping.cs
- AttachInfo.cs
- CommandConverter.cs
- Quaternion.cs
- HMACSHA1.cs
- DisposableCollectionWrapper.cs
- SqlClientMetaDataCollectionNames.cs
- OracleFactory.cs
- DbConnectionStringCommon.cs
- FormView.cs
- XmlSerializerNamespaces.cs
- TransformedBitmap.cs
- ReadOnlyDataSource.cs
- Int32EqualityComparer.cs
- ListControl.cs
- OdbcEnvironment.cs
- OleDbDataReader.cs
- safelink.cs
- MemberCollection.cs
- RuntimeHandles.cs
- JsonByteArrayDataContract.cs
- QueryReaderSettings.cs
- MemberHolder.cs
- GridSplitterAutomationPeer.cs
- DiagnosticsConfiguration.cs
- UmAlQuraCalendar.cs
- Permission.cs
- ECDsaCng.cs
- ServicePoint.cs
- SortedList.cs
- XslAstAnalyzer.cs
- ClientRuntimeConfig.cs
- QueueAccessMode.cs
- FileLevelControlBuilderAttribute.cs
- WpfXamlLoader.cs
- EmptyQuery.cs
- RenderTargetBitmap.cs
- Schema.cs
- RuntimeCompatibilityAttribute.cs
- PeerSecurityManager.cs
- ChtmlSelectionListAdapter.cs
- XmlAttributeHolder.cs
- ProjectionPathBuilder.cs
- UriScheme.cs
- ObjectViewFactory.cs
- MetadataSerializer.cs
- Win32Native.cs
- DataAdapter.cs
- TableLayoutStyle.cs
- DivideByZeroException.cs
- X509Utils.cs
- IResourceProvider.cs
- TabControlAutomationPeer.cs
- TypeToken.cs
- PowerModeChangedEventArgs.cs
- FacetChecker.cs
- ListChangedEventArgs.cs
- XmlSchemaException.cs
- HybridCollection.cs
- MetadataException.cs
- ErrorItem.cs
- shaperfactoryquerycachekey.cs
- ControlPaint.cs
- HostElement.cs
- ExpandCollapsePattern.cs
- HttpAsyncResult.cs
- SocketException.cs
- regiisutil.cs
- BitmapEffectDrawing.cs
- OperandQuery.cs
- InputLanguage.cs
- SHA256.cs
- PrinterUnitConvert.cs
- UnorderedHashRepartitionStream.cs
- TransformationRules.cs
- UriTemplateTable.cs
- StorageAssociationSetMapping.cs
- ObjectItemConventionAssemblyLoader.cs
- WebBrowserUriTypeConverter.cs
- HtmlSelect.cs
- Matrix3DStack.cs