Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaSimpleTypeList.cs / 1 / XmlSchemaSimpleTypeList.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Xml.Serialization;
///
///
/// [To be supplied.]
///
public class XmlSchemaSimpleTypeList : XmlSchemaSimpleTypeContent {
XmlQualifiedName itemTypeName = XmlQualifiedName.Empty;
XmlSchemaSimpleType itemType;
XmlSchemaSimpleType baseItemType; //Compiled
///
///
/// [To be supplied.]
///
[XmlAttribute("itemType")]
public XmlQualifiedName ItemTypeName {
get { return itemTypeName; }
set { itemTypeName = (value == null ? XmlQualifiedName.Empty : value); }
}
///
///
/// [To be supplied.]
///
[XmlElement("simpleType", typeof(XmlSchemaSimpleType))]
public XmlSchemaSimpleType ItemType {
get { return itemType; }
set { itemType = value; }
}
//Compiled
///
[XmlIgnore]
public XmlSchemaSimpleType BaseItemType {
get { return baseItemType; }
set { baseItemType = value; }
}
internal override XmlSchemaObject Clone() {
XmlSchemaSimpleTypeList newList = (XmlSchemaSimpleTypeList)MemberwiseClone();
newList.ItemTypeName = itemTypeName.Clone();
return newList;
}
}
}
// 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
- SelectionEditor.cs
- ExpressionBuilderContext.cs
- TagPrefixCollection.cs
- MimeMapping.cs
- BitmapScalingModeValidation.cs
- WindowsStatusBar.cs
- DefaultPropertyAttribute.cs
- parserscommon.cs
- PropertyValue.cs
- BasePropertyDescriptor.cs
- TextPointerBase.cs
- ObjectDataSourceDisposingEventArgs.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- httpapplicationstate.cs
- BaseTemplateBuildProvider.cs
- BitHelper.cs
- XmlLanguage.cs
- DateTimeSerializationSection.cs
- smtpconnection.cs
- ReliabilityContractAttribute.cs
- FileDialog_Vista_Interop.cs
- FixedNode.cs
- MetaTable.cs
- RijndaelManagedTransform.cs
- RegexInterpreter.cs
- VersionedStreamOwner.cs
- NotifyIcon.cs
- WorkflowWebHostingModule.cs
- LowerCaseStringConverter.cs
- CatalogZoneBase.cs
- XPathDocumentBuilder.cs
- ThreadAttributes.cs
- SerializationHelper.cs
- SQLBinaryStorage.cs
- LocalizableAttribute.cs
- FileResponseElement.cs
- DataObjectEventArgs.cs
- CommentAction.cs
- SafeFileMappingHandle.cs
- WmlLinkAdapter.cs
- RequestCachingSection.cs
- ReadOnlyPropertyMetadata.cs
- CodeDOMUtility.cs
- Inflater.cs
- DataGridAddNewRow.cs
- HttpRawResponse.cs
- SafeViewOfFileHandle.cs
- MimeParameters.cs
- XmlUtil.cs
- Function.cs
- StorageInfo.cs
- BaseComponentEditor.cs
- NullableDoubleAverageAggregationOperator.cs
- RawMouseInputReport.cs
- FormattedTextSymbols.cs
- _ChunkParse.cs
- DoubleIndependentAnimationStorage.cs
- DescendentsWalkerBase.cs
- BitmapDownload.cs
- MenuItemBinding.cs
- MasterPageParser.cs
- SmtpNtlmAuthenticationModule.cs
- PartitionedDataSource.cs
- XamlTypeWithExplicitNamespace.cs
- QilName.cs
- ConfigXmlWhitespace.cs
- SwitchLevelAttribute.cs
- EmbeddedMailObjectsCollection.cs
- EmptyReadOnlyDictionaryInternal.cs
- SrgsSemanticInterpretationTag.cs
- CaseStatementProjectedSlot.cs
- HtmlImage.cs
- SystemIPGlobalStatistics.cs
- ReadOnlyNameValueCollection.cs
- SqlErrorCollection.cs
- SqlAggregateChecker.cs
- ViewValidator.cs
- DataMemberFieldConverter.cs
- HtmlShim.cs
- ProtocolsConfigurationEntry.cs
- SQLCharsStorage.cs
- QueryReaderSettings.cs
- ThousandthOfEmRealDoubles.cs
- Message.cs
- EntityDataSourceView.cs
- ViewManager.cs
- Panel.cs
- ServerValidateEventArgs.cs
- DefaultAssemblyResolver.cs
- CompositeFontInfo.cs
- ReadOnlyTernaryTree.cs
- AutoResetEvent.cs
- DataBoundControlDesigner.cs
- DataGridViewLinkCell.cs
- RadioButtonList.cs
- ResourcePermissionBase.cs
- UrlAuthorizationModule.cs
- CSharpCodeProvider.cs
- ClientTargetCollection.cs
- LinearQuaternionKeyFrame.cs