Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaSimpleTypeRestriction.cs / 1 / XmlSchemaSimpleTypeRestriction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.Xml.Serialization; ////// /// public class XmlSchemaSimpleTypeRestriction : XmlSchemaSimpleTypeContent { XmlQualifiedName baseTypeName = XmlQualifiedName.Empty; XmlSchemaSimpleType baseType; XmlSchemaObjectCollection facets = new XmlSchemaObjectCollection(); ///[To be supplied.] ////// /// [XmlAttribute("base")] public XmlQualifiedName BaseTypeName { get { return baseTypeName; } set { baseTypeName = (value == null ? XmlQualifiedName.Empty : value); } } ///[To be supplied.] ////// /// [XmlElement("simpleType", typeof(XmlSchemaSimpleType))] public XmlSchemaSimpleType BaseType { get { return baseType; } set { baseType = value; } } ///[To be supplied.] ////// /// [XmlElement("length", typeof(XmlSchemaLengthFacet)), XmlElement("minLength", typeof(XmlSchemaMinLengthFacet)), XmlElement("maxLength", typeof(XmlSchemaMaxLengthFacet)), XmlElement("pattern", typeof(XmlSchemaPatternFacet)), XmlElement("enumeration", typeof(XmlSchemaEnumerationFacet)), XmlElement("maxInclusive", typeof(XmlSchemaMaxInclusiveFacet)), XmlElement("maxExclusive", typeof(XmlSchemaMaxExclusiveFacet)), XmlElement("minInclusive", typeof(XmlSchemaMinInclusiveFacet)), XmlElement("minExclusive", typeof(XmlSchemaMinExclusiveFacet)), XmlElement("totalDigits", typeof(XmlSchemaTotalDigitsFacet)), XmlElement("fractionDigits", typeof(XmlSchemaFractionDigitsFacet)), XmlElement("whiteSpace", typeof(XmlSchemaWhiteSpaceFacet))] public XmlSchemaObjectCollection Facets { get { return facets; } } internal override XmlSchemaObject Clone() { XmlSchemaSimpleTypeRestriction newRestriction = (XmlSchemaSimpleTypeRestriction)MemberwiseClone(); newRestriction.BaseTypeName = baseTypeName.Clone(); return newRestriction; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PrtCap_Base.cs
- Html32TextWriter.cs
- BoolLiteral.cs
- ListSourceHelper.cs
- Rect3D.cs
- Component.cs
- RenderContext.cs
- TrackingValidationObjectDictionary.cs
- HttpFileCollection.cs
- HandoffBehavior.cs
- Vector.cs
- DiagnosticTrace.cs
- XmlMemberMapping.cs
- RawStylusInput.cs
- LogManagementAsyncResult.cs
- ParameterModifier.cs
- UIElementIsland.cs
- RedistVersionInfo.cs
- ActivityExecutor.cs
- ComIntegrationManifestGenerator.cs
- Int32CollectionConverter.cs
- DeviceFilterDictionary.cs
- SqlNotificationRequest.cs
- LoadItemsEventArgs.cs
- GeneralTransform2DTo3DTo2D.cs
- parserscommon.cs
- ComponentDesigner.cs
- GrammarBuilderDictation.cs
- HttpInputStream.cs
- TextEditorCharacters.cs
- HttpListenerPrefixCollection.cs
- SafeCertificateContext.cs
- DataGridViewRowsRemovedEventArgs.cs
- StringBlob.cs
- SiteMapSection.cs
- Image.cs
- ZipFileInfoCollection.cs
- PairComparer.cs
- DbConnectionPoolCounters.cs
- ControlBuilder.cs
- Stylesheet.cs
- DetailsViewPageEventArgs.cs
- ObjectDataSourceEventArgs.cs
- SizeChangedEventArgs.cs
- UIElement.cs
- SettingsSavedEventArgs.cs
- StorageTypeMapping.cs
- StickyNoteHelper.cs
- ChannelListenerBase.cs
- Graphics.cs
- StylusSystemGestureEventArgs.cs
- GC.cs
- DbDataRecord.cs
- _LocalDataStore.cs
- AdapterUtil.cs
- __FastResourceComparer.cs
- CryptoKeySecurity.cs
- RequestCacheValidator.cs
- XmlSchemaSet.cs
- WindowsSecurityTokenAuthenticator.cs
- FlowPosition.cs
- ResourceProviderFactory.cs
- InspectionWorker.cs
- StringStorage.cs
- CommentGlyph.cs
- TextParagraphCache.cs
- GraphicsPath.cs
- Translator.cs
- CompositeScriptReference.cs
- NextPreviousPagerField.cs
- IDReferencePropertyAttribute.cs
- DataServiceHostWrapper.cs
- ControlValuePropertyAttribute.cs
- TextRangeEditTables.cs
- ZeroOpNode.cs
- Part.cs
- BaseParagraph.cs
- SlipBehavior.cs
- CharacterBuffer.cs
- ParameterElement.cs
- SoapExtensionTypeElement.cs
- XmlMessageFormatter.cs
- ItemsPanelTemplate.cs
- EdmTypeAttribute.cs
- ImageField.cs
- ProvidersHelper.cs
- GridViewDeleteEventArgs.cs
- ByteViewer.cs
- SamlAuthenticationStatement.cs
- CurrentTimeZone.cs
- DbExpressionBuilder.cs
- DataGridViewImageCell.cs
- CellLabel.cs
- DbDataReader.cs
- TextModifier.cs
- WebColorConverter.cs
- FontCollection.cs
- FlowchartDesigner.xaml.cs
- FunctionCommandText.cs
- ReflectionUtil.cs