Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaSimpleContentRestriction.cs / 1 / XmlSchemaSimpleContentRestriction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Xml.Serialization; ////// /// public class XmlSchemaSimpleContentRestriction : XmlSchemaContent { XmlQualifiedName baseTypeName = XmlQualifiedName.Empty; XmlSchemaSimpleType baseType; XmlSchemaObjectCollection facets = new XmlSchemaObjectCollection(); XmlSchemaObjectCollection attributes = new XmlSchemaObjectCollection(); XmlSchemaAnyAttribute anyAttribute; ///[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; } } ///[To be supplied.] ////// /// [XmlElement("attribute", typeof(XmlSchemaAttribute)), XmlElement("attributeGroup", typeof(XmlSchemaAttributeGroupRef))] public XmlSchemaObjectCollection Attributes { get { return attributes; } } ///[To be supplied.] ////// /// [XmlElement("anyAttribute")] public XmlSchemaAnyAttribute AnyAttribute { get { return anyAttribute; } set { anyAttribute = value; } } internal void SetAttributes(XmlSchemaObjectCollection newAttributes) { attributes = newAttributes; } } } // 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
- Margins.cs
- TypeInitializationException.cs
- MobileListItemCollection.cs
- PartialClassGenerationTaskInternal.cs
- DocumentApplicationJournalEntry.cs
- TypeUtil.cs
- ArgumentDesigner.xaml.cs
- KeyTimeConverter.cs
- DeclaredTypeElementCollection.cs
- FileNotFoundException.cs
- Scheduler.cs
- ThumbButtonInfoCollection.cs
- RemoteWebConfigurationHostStream.cs
- BuildManager.cs
- WebPartManager.cs
- DigitShape.cs
- LocationUpdates.cs
- ResourcesBuildProvider.cs
- MessageQueueException.cs
- HttpRequestContext.cs
- SByte.cs
- DataRecordObjectView.cs
- ExpressionPrinter.cs
- HelpExampleGenerator.cs
- XmlCustomFormatter.cs
- ExtensionElement.cs
- TableLayoutStyleCollection.cs
- SqlUdtInfo.cs
- ConstrainedDataObject.cs
- ArraySortHelper.cs
- SerializationObjectManager.cs
- UriPrefixTable.cs
- SecurityContextTokenCache.cs
- XPathDocument.cs
- ParameterRefs.cs
- UTF8Encoding.cs
- DataGridViewRowsAddedEventArgs.cs
- SkipStoryboardToFill.cs
- RuleElement.cs
- dbenumerator.cs
- TextCompositionEventArgs.cs
- SystemInformation.cs
- GetImportedCardRequest.cs
- TreeView.cs
- AnnotationObservableCollection.cs
- PageClientProxyGenerator.cs
- BooleanSwitch.cs
- KeyMatchBuilder.cs
- GlobalizationSection.cs
- PropertyGridEditorPart.cs
- Html32TextWriter.cs
- DataGridViewSelectedRowCollection.cs
- Expression.cs
- OleDbRowUpdatedEvent.cs
- SurrogateDataContract.cs
- RepeatButtonAutomationPeer.cs
- DropDownButton.cs
- ArcSegment.cs
- PointAnimationBase.cs
- DispatcherTimer.cs
- ComponentChangedEvent.cs
- XsdDateTime.cs
- HeaderedItemsControl.cs
- ProgressBarHighlightConverter.cs
- ColorConvertedBitmap.cs
- TreeViewTemplateSelector.cs
- StylusPlugInCollection.cs
- ColorDialog.cs
- XmlSchemaAttributeGroupRef.cs
- XmlSchemaElement.cs
- PanelStyle.cs
- EventManager.cs
- RenderCapability.cs
- WsatConfiguration.cs
- UriSectionData.cs
- InheritanceContextHelper.cs
- DisposableCollectionWrapper.cs
- _RegBlobWebProxyDataBuilder.cs
- WebPartCatalogAddVerb.cs
- FixedSOMTable.cs
- UrlMappingsSection.cs
- CodeBlockBuilder.cs
- HideDisabledControlAdapter.cs
- BuildResultCache.cs
- ObjectParameterCollection.cs
- BoolExpr.cs
- TextBoxAutomationPeer.cs
- QilChoice.cs
- EdmValidator.cs
- SafeBitVector32.cs
- PreviewKeyDownEventArgs.cs
- RuntimeResourceSet.cs
- FilterInvalidBodyAccessException.cs
- ResourceAssociationType.cs
- XmlConvert.cs
- PackageDigitalSignatureManager.cs
- DesignerActionService.cs
- XmlWriterSettings.cs
- DataGridViewBindingCompleteEventArgs.cs
- BufferModeSettings.cs