Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaComplexContent.cs / 1 / XmlSchemaComplexContent.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Xml.Serialization;
///
///
/// [To be supplied.]
///
public class XmlSchemaComplexContent : XmlSchemaContentModel {
XmlSchemaContent content;
bool isMixed;
bool hasMixedAttribute;
///
///
/// [To be supplied.]
///
[XmlAttribute("mixed")]
public bool IsMixed {
get { return isMixed; }
set { isMixed = value; hasMixedAttribute = true; }
}
///
///
/// [To be supplied.]
///
[XmlElement("restriction", typeof(XmlSchemaComplexContentRestriction)),
XmlElement("extension", typeof(XmlSchemaComplexContentExtension))]
public override XmlSchemaContent Content {
get { return content; }
set { content = value; }
}
[XmlIgnore]
internal bool HasMixedAttribute {
get { return hasMixedAttribute; }
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SubpageParaClient.cs
- EditorPart.cs
- XmlDataSourceDesigner.cs
- EventRouteFactory.cs
- ConsoleKeyInfo.cs
- HandlerBase.cs
- CultureSpecificStringDictionary.cs
- PointCollection.cs
- DesignerVerb.cs
- DesignerActionPanel.cs
- SessionKeyExpiredException.cs
- ObjectListItem.cs
- ProviderUtil.cs
- ProcessThreadCollection.cs
- DbProviderSpecificTypePropertyAttribute.cs
- mda.cs
- OracleBinary.cs
- DefaultValueTypeConverter.cs
- ComponentConverter.cs
- RenderData.cs
- FontFamilyConverter.cs
- PropertyBuilder.cs
- PropertyFilterAttribute.cs
- DiscoveryDefaults.cs
- SendKeys.cs
- QilScopedVisitor.cs
- Utils.cs
- DataGridViewAccessibleObject.cs
- LineGeometry.cs
- nulltextnavigator.cs
- VirtualPathProvider.cs
- WebBrowserNavigatingEventHandler.cs
- WebEncodingValidator.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- ComponentResourceManager.cs
- WebConvert.cs
- ErrorTableItemStyle.cs
- GridLength.cs
- GenericXmlSecurityToken.cs
- DataService.cs
- XamlInt32CollectionSerializer.cs
- TrackBar.cs
- WebPermission.cs
- Win32SafeHandles.cs
- EndpointIdentityExtension.cs
- Control.cs
- Lasso.cs
- IPAddress.cs
- NavigationProgressEventArgs.cs
- InternalConfigHost.cs
- nulltextnavigator.cs
- RectangleConverter.cs
- NumericUpDownAccelerationCollection.cs
- ChangeBlockUndoRecord.cs
- AppDomainUnloadedException.cs
- QueryContinueDragEvent.cs
- ClientUtils.cs
- ContextTokenTypeConverter.cs
- DiagnosticTraceRecords.cs
- HttpModuleActionCollection.cs
- RadioButtonDesigner.cs
- NegationPusher.cs
- WebPartCatalogCloseVerb.cs
- UrlRoutingHandler.cs
- DataGridViewRowCollection.cs
- CharacterShapingProperties.cs
- WbmpConverter.cs
- HttpContextServiceHost.cs
- XmlBinaryReaderSession.cs
- HttpCookiesSection.cs
- DataStorage.cs
- WebUtil.cs
- ReflectPropertyDescriptor.cs
- FileDialog_Vista.cs
- ListViewGroupItemCollection.cs
- AbstractExpressions.cs
- DataColumnMapping.cs
- AlignmentXValidation.cs
- DemultiplexingClientMessageFormatter.cs
- TextUtf8RawTextWriter.cs
- SqlGatherProducedAliases.cs
- InstanceHandleConflictException.cs
- NativeMethods.cs
- CustomCredentialPolicy.cs
- DialogResultConverter.cs
- BaseAutoFormat.cs
- WindowsSecurityTokenAuthenticator.cs
- _Events.cs
- XsdBuilder.cs
- PathData.cs
- PersistenceException.cs
- ProgressChangedEventArgs.cs
- ResourceDefaultValueAttribute.cs
- UpdatePanelTrigger.cs
- XmlDocumentType.cs
- WindowsGraphicsCacheManager.cs
- XmlDomTextWriter.cs
- WebServiceErrorEvent.cs
- ChangesetResponse.cs
- XmlSchemaAnyAttribute.cs