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
- TypedAsyncResult.cs
- Emitter.cs
- _HeaderInfoTable.cs
- ByteAnimationBase.cs
- DocumentApplicationJournalEntry.cs
- DataGridComponentEditor.cs
- PathNode.cs
- WindowsFormsDesignerOptionService.cs
- WebControlParameterProxy.cs
- RectAnimationUsingKeyFrames.cs
- SimpleTableProvider.cs
- ExpressionConverter.cs
- CodePropertyReferenceExpression.cs
- GacUtil.cs
- ItemChangedEventArgs.cs
- Group.cs
- FileBasedResourceGroveler.cs
- DataGridViewAutoSizeModeEventArgs.cs
- BitmapEffectGeneralTransform.cs
- HybridObjectCache.cs
- SafePEFileHandle.cs
- WebPartTransformer.cs
- TextRunTypographyProperties.cs
- DelimitedListTraceListener.cs
- PrintPreviewGraphics.cs
- DateTimeOffsetStorage.cs
- WebPartConnectionCollection.cs
- PreProcessInputEventArgs.cs
- ElementHostPropertyMap.cs
- SettingsContext.cs
- _ConnectStream.cs
- EndPoint.cs
- AudioBase.cs
- DataProviderNameConverter.cs
- LongCountAggregationOperator.cs
- IPAddressCollection.cs
- HttpPostedFile.cs
- ArcSegment.cs
- PropertyDescriptorCollection.cs
- EntityContainerEmitter.cs
- NavigationPropertyEmitter.cs
- EventLogTraceListener.cs
- ImportCatalogPart.cs
- DataRelation.cs
- RadioButtonList.cs
- Ticks.cs
- DbException.cs
- BaseCAMarshaler.cs
- TakeOrSkipQueryOperator.cs
- IRCollection.cs
- MissingMemberException.cs
- ToolStripPanelDesigner.cs
- FunctionNode.cs
- FixedSOMContainer.cs
- SecurityException.cs
- HelloOperation11AsyncResult.cs
- ProfessionalColors.cs
- ColumnResizeUndoUnit.cs
- CqlLexer.cs
- WindowVisualStateTracker.cs
- TypeDescriptorContext.cs
- MetadataUtil.cs
- SqlAliasesReferenced.cs
- ZipIOExtraField.cs
- HashAlgorithm.cs
- SafeHandle.cs
- XmlQualifiedName.cs
- Resources.Designer.cs
- RectAnimationClockResource.cs
- DataGridViewHitTestInfo.cs
- UIElement.cs
- Button.cs
- TimersDescriptionAttribute.cs
- Freezable.cs
- SqlErrorCollection.cs
- SelectedPathEditor.cs
- NameValueConfigurationCollection.cs
- RuntimeArgumentHandle.cs
- ProgressChangedEventArgs.cs
- ClientRoleProvider.cs
- ToolStripOverflowButton.cs
- DockPattern.cs
- CreateUserErrorEventArgs.cs
- PagedDataSource.cs
- XmlProcessingInstruction.cs
- xmlfixedPageInfo.cs
- ConstNode.cs
- XmlSigningNodeWriter.cs
- ResourceManager.cs
- StateBag.cs
- RubberbandSelector.cs
- PrefixQName.cs
- CodeGeneratorOptions.cs
- PropertyValueUIItem.cs
- DataTableExtensions.cs
- PathGeometry.cs
- ProfileSettingsCollection.cs
- RawStylusInput.cs
- DynamicValidatorEventArgs.cs
- ToolStripGripRenderEventArgs.cs