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; ////// /// 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 ///[To be supplied.] ///[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
- ConstructorNeedsTagAttribute.cs
- BinaryMessageFormatter.cs
- EmptyQuery.cs
- WebBrowserUriTypeConverter.cs
- _NetworkingPerfCounters.cs
- SortAction.cs
- TreeNode.cs
- XmlDataLoader.cs
- ManifestResourceInfo.cs
- WpfXamlMember.cs
- CompareInfo.cs
- RawAppCommandInputReport.cs
- TokenizerHelper.cs
- ListViewItem.cs
- SvcMapFileLoader.cs
- SingleConverter.cs
- TextChangedEventArgs.cs
- ValueQuery.cs
- BroadcastEventHelper.cs
- RecordConverter.cs
- OneOfScalarConst.cs
- RC2.cs
- FixedSOMLineRanges.cs
- ProtectedProviderSettings.cs
- FacetValues.cs
- FileRecordSequenceCompletedAsyncResult.cs
- FontSource.cs
- StandardToolWindows.cs
- DynamicUpdateCommand.cs
- DesignerActionTextItem.cs
- ColumnResizeAdorner.cs
- CaretElement.cs
- Typography.cs
- compensatingcollection.cs
- HtmlEncodedRawTextWriter.cs
- PersonalizationStateQuery.cs
- HtmlInputReset.cs
- oledbmetadatacollectionnames.cs
- _ListenerResponseStream.cs
- SafeViewOfFileHandle.cs
- BaseInfoTable.cs
- _SingleItemRequestCache.cs
- MaskInputRejectedEventArgs.cs
- ParameterBuilder.cs
- PropertyValueUIItem.cs
- PerfCounters.cs
- CategoryGridEntry.cs
- ActivityBindForm.Designer.cs
- PeerApplicationLaunchInfo.cs
- BufferedStream.cs
- SignatureDescription.cs
- RegexTree.cs
- SchemaEntity.cs
- StreamReader.cs
- FormViewInsertEventArgs.cs
- ProcessModule.cs
- FormParameter.cs
- MultilineStringEditor.cs
- Invariant.cs
- OdbcConnectionFactory.cs
- UnmanagedMemoryStreamWrapper.cs
- MembershipPasswordException.cs
- FloatMinMaxAggregationOperator.cs
- X509UI.cs
- SecurityKeyType.cs
- AdPostCacheSubstitution.cs
- ConstraintStruct.cs
- ConditionalDesigner.cs
- Section.cs
- TreeIterators.cs
- EventProviderWriter.cs
- TCPListener.cs
- PageStatePersister.cs
- WizardPanelChangingEventArgs.cs
- SoapFormatter.cs
- ObjectListShowCommandsEventArgs.cs
- CommonDialog.cs
- TreeViewEvent.cs
- Int16Converter.cs
- PieceNameHelper.cs
- EntityClassGenerator.cs
- MessageQueuePermissionEntryCollection.cs
- COAUTHIDENTITY.cs
- Timer.cs
- InplaceBitmapMetadataWriter.cs
- TimerElapsedEvenArgs.cs
- SiblingIterators.cs
- HttpDictionary.cs
- PerformanceCounterPermissionEntryCollection.cs
- DataGridViewHitTestInfo.cs
- InheritanceService.cs
- ConcurrentDictionary.cs
- ServiceModelSecurityTokenTypes.cs
- TreeNodeStyleCollection.cs
- TreeNodeStyleCollection.cs
- FixedHyperLink.cs
- Mapping.cs
- BitmapEffectInput.cs
- EqualityComparer.cs
- CalendarAutoFormatDialog.cs