Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaComplexContentRestriction.cs / 1 / XmlSchemaComplexContentRestriction.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Collections;
using System.Xml.Serialization;
///
///
/// [To be supplied.]
///
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.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SimpleTextLine.cs
- BamlCollectionHolder.cs
- Padding.cs
- CodeMethodInvokeExpression.cs
- CompilerTypeWithParams.cs
- StandardMenuStripVerb.cs
- XpsDigitalSignature.cs
- InheritedPropertyChangedEventArgs.cs
- DeviceSpecificDesigner.cs
- ParallelTimeline.cs
- SecurityTokenSerializer.cs
- DataGridRow.cs
- XPathAxisIterator.cs
- XmlNodeChangedEventManager.cs
- DBNull.cs
- AssemblyBuilderData.cs
- AccessViolationException.cs
- DataServiceHostWrapper.cs
- DefaultValueMapping.cs
- AttachmentCollection.cs
- ConfigurationManagerInternalFactory.cs
- MemberAccessException.cs
- CrossAppDomainChannel.cs
- _StreamFramer.cs
- ColumnPropertiesGroup.cs
- SqlSupersetValidator.cs
- StorageMappingItemCollection.cs
- lengthconverter.cs
- ListViewInsertEventArgs.cs
- KeyboardDevice.cs
- DictionarySectionHandler.cs
- ImageInfo.cs
- FlowDocumentScrollViewer.cs
- xmlfixedPageInfo.cs
- InertiaTranslationBehavior.cs
- RadioButtonBaseAdapter.cs
- CalendarTable.cs
- BaseAutoFormat.cs
- HostingPreferredMapPath.cs
- CommandBinding.cs
- SerialPinChanges.cs
- ResourceSetExpression.cs
- SecurityContext.cs
- HttpHandlersSection.cs
- BamlCollectionHolder.cs
- MobileTextWriter.cs
- PersonalizationState.cs
- AssemblyInfo.cs
- ApplicationInterop.cs
- CursorConverter.cs
- Block.cs
- NavigationProperty.cs
- TrackingMemoryStream.cs
- Socket.cs
- StylusDownEventArgs.cs
- WeakRefEnumerator.cs
- Menu.cs
- TrustExchangeException.cs
- FocusWithinProperty.cs
- AuthorizationContext.cs
- LoginName.cs
- IPEndPointCollection.cs
- OleDbInfoMessageEvent.cs
- Listbox.cs
- TryLoadRunnableWorkflowCommand.cs
- SortedList.cs
- Lease.cs
- Crc32.cs
- ValidationEventArgs.cs
- StorageBasedPackageProperties.cs
- UnauthorizedWebPart.cs
- OdbcUtils.cs
- DbException.cs
- HandledMouseEvent.cs
- ColumnHeaderConverter.cs
- EventWaitHandle.cs
- SQLInt32Storage.cs
- ProcessInfo.cs
- Grant.cs
- TypeConverter.cs
- DispatcherExceptionFilterEventArgs.cs
- UniqueCodeIdentifierScope.cs
- TypeLibConverter.cs
- DataGridViewTextBoxColumn.cs
- DockProviderWrapper.cs
- CqlQuery.cs
- LingerOption.cs
- Brush.cs
- SQLConvert.cs
- TagMapInfo.cs
- SparseMemoryStream.cs
- Journal.cs
- BooleanSwitch.cs
- XhtmlBasicLiteralTextAdapter.cs
- TextSchema.cs
- VirtualPath.cs
- ServiceReference.cs
- DateTimeParse.cs
- SQLBytesStorage.cs
- AdapterUtil.cs