Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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
- XmlDictionary.cs
- StoreAnnotationsMap.cs
- FixedStringLookup.cs
- CaseInsensitiveOrdinalStringComparer.cs
- Validator.cs
- TrustSection.cs
- ListParagraph.cs
- StateChangeEvent.cs
- PathFigure.cs
- Base64Encoder.cs
- Message.cs
- ReadOnlyKeyedCollection.cs
- QilChoice.cs
- WebDisplayNameAttribute.cs
- SafeUserTokenHandle.cs
- SiteMap.cs
- CapacityStreamGeometryContext.cs
- MouseActionValueSerializer.cs
- ConditionalAttribute.cs
- MachineSettingsSection.cs
- PkcsMisc.cs
- DSACryptoServiceProvider.cs
- SelectionItemPattern.cs
- HttpRequestCacheValidator.cs
- LinkConverter.cs
- ResourcePermissionBaseEntry.cs
- MultiAsyncResult.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- GridItemPattern.cs
- IconEditor.cs
- VirtualDirectoryMappingCollection.cs
- UrlPath.cs
- diagnosticsswitches.cs
- EDesignUtil.cs
- JsonObjectDataContract.cs
- EventLogReader.cs
- ProtocolsConfigurationEntry.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- ConfigXmlWhitespace.cs
- RecordBuilder.cs
- HideDisabledControlAdapter.cs
- FixedSOMLineRanges.cs
- mediaeventshelper.cs
- Walker.cs
- ApplicationException.cs
- SafeViewOfFileHandle.cs
- ObservableCollection.cs
- AddInControllerImpl.cs
- DataSetUtil.cs
- SecurityKeyIdentifierClause.cs
- SignedXmlDebugLog.cs
- XsltArgumentList.cs
- AssociationEndMember.cs
- GorillaCodec.cs
- PenCursorManager.cs
- FontConverter.cs
- Compensate.cs
- ColorConvertedBitmap.cs
- DriveInfo.cs
- TabletDeviceInfo.cs
- CustomAttributeBuilder.cs
- StorageMappingItemCollection.cs
- ImmutableAssemblyCacheEntry.cs
- CodeCommentStatementCollection.cs
- configsystem.cs
- SmtpNegotiateAuthenticationModule.cs
- GeometryHitTestResult.cs
- ClassImporter.cs
- ProxyWebPart.cs
- TypeExtensionConverter.cs
- ProviderSettingsCollection.cs
- ISCIIEncoding.cs
- WindowsStatic.cs
- InstallerTypeAttribute.cs
- SortQuery.cs
- ImageInfo.cs
- SessionPageStatePersister.cs
- ComplexTypeEmitter.cs
- DesignColumn.cs
- MessageQueuePermission.cs
- ColumnResult.cs
- DrawingBrush.cs
- HostnameComparisonMode.cs
- LinearKeyFrames.cs
- Int32Rect.cs
- DeviceSpecificDesigner.cs
- TextPointerBase.cs
- RegexRunnerFactory.cs
- EdmScalarPropertyAttribute.cs
- IInstanceTable.cs
- RandomNumberGenerator.cs
- FocusTracker.cs
- RSAPKCS1KeyExchangeFormatter.cs
- SingleTagSectionHandler.cs
- SettingsProperty.cs
- ProtocolsConfiguration.cs
- NameValueConfigurationCollection.cs
- FtpWebResponse.cs
- WebPartUserCapability.cs
- ModelPropertyCollectionImpl.cs