Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaSimpleTypeRestriction.cs / 1305376 / 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RenderOptions.cs
- DataControlFieldHeaderCell.cs
- HandleRef.cs
- Accessible.cs
- XPathParser.cs
- TextTrailingWordEllipsis.cs
- ImageMapEventArgs.cs
- ToolStripSystemRenderer.cs
- SvcMapFileSerializer.cs
- DBCommand.cs
- WebSysDefaultValueAttribute.cs
- EventDescriptorCollection.cs
- DelegatingConfigHost.cs
- SignedXml.cs
- PKCS1MaskGenerationMethod.cs
- SqlParameterizer.cs
- MetadataSerializer.cs
- RectangleHotSpot.cs
- SqlNotificationEventArgs.cs
- recordstate.cs
- Application.cs
- RecognitionEventArgs.cs
- TypedTableHandler.cs
- TextDecoration.cs
- CornerRadius.cs
- WindowsComboBox.cs
- WorkflowOwnershipException.cs
- HtmlHistory.cs
- EnumConverter.cs
- XmlCountingReader.cs
- HttpWebRequestElement.cs
- PerformanceCounterLib.cs
- DataServiceExpressionVisitor.cs
- ConstraintConverter.cs
- JoinElimination.cs
- SmiContextFactory.cs
- PackageProperties.cs
- ProviderIncompatibleException.cs
- TreeNodeCollection.cs
- ApplicationBuildProvider.cs
- Property.cs
- GridViewAutomationPeer.cs
- HttpResponseHeader.cs
- CustomError.cs
- Quad.cs
- Journaling.cs
- GreenMethods.cs
- UnsafeNativeMethods.cs
- PageWrapper.cs
- LocatorManager.cs
- ExceptionUtil.cs
- TreeNodeStyle.cs
- querybuilder.cs
- DataGrid.cs
- FrameworkElement.cs
- GridViewCommandEventArgs.cs
- InstanceKeyNotReadyException.cs
- WebPartTransformerAttribute.cs
- SqlDataSourceQueryEditor.cs
- ApplicationBuildProvider.cs
- LayoutEngine.cs
- baseaxisquery.cs
- ByteRangeDownloader.cs
- BufferedGraphicsContext.cs
- CommonDialog.cs
- TextTreeObjectNode.cs
- EnvironmentPermission.cs
- OletxCommittableTransaction.cs
- VirtualPathProvider.cs
- IdentitySection.cs
- VisualTarget.cs
- GetBrowserTokenRequest.cs
- DataViewManagerListItemTypeDescriptor.cs
- precedingsibling.cs
- WebPartDisplayModeEventArgs.cs
- UnsafeNativeMethods.cs
- TextEditorContextMenu.cs
- Stopwatch.cs
- ArrayElementGridEntry.cs
- TextTreePropertyUndoUnit.cs
- EntityCommandCompilationException.cs
- ColumnHeaderCollectionEditor.cs
- DataTemplate.cs
- CommandManager.cs
- CopyAttributesAction.cs
- unitconverter.cs
- UserControlCodeDomTreeGenerator.cs
- Brush.cs
- LocalizableAttribute.cs
- ToolStripPanelRow.cs
- EditingCoordinator.cs
- COM2ColorConverter.cs
- TextUtf8RawTextWriter.cs
- DbModificationClause.cs
- HotSpotCollection.cs
- CachedCompositeFamily.cs
- ServiceEndpointElementCollection.cs
- CryptoKeySecurity.cs
- EventListenerClientSide.cs
- KeyToListMap.cs