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
- ActivityDesigner.cs
- TypeConverter.cs
- TrackingDataItem.cs
- DataSourceSelectArguments.cs
- XPathChildIterator.cs
- StringSorter.cs
- ApplicationSecurityInfo.cs
- DynamicMethod.cs
- VectorValueSerializer.cs
- BinaryNegotiation.cs
- DataGridViewTextBoxCell.cs
- FreezableDefaultValueFactory.cs
- ListViewHitTestInfo.cs
- ProofTokenCryptoHandle.cs
- WebPartMovingEventArgs.cs
- ProvideValueServiceProvider.cs
- UnsafeNativeMethods.cs
- DrawingBrush.cs
- OracleException.cs
- SamlAuthenticationStatement.cs
- InternalSafeNativeMethods.cs
- XPathNavigatorException.cs
- StatusBarAutomationPeer.cs
- MasterPageCodeDomTreeGenerator.cs
- ProviderConnectionPoint.cs
- HMAC.cs
- compensatingcollection.cs
- RuntimeIdentifierPropertyAttribute.cs
- WebPartManagerInternals.cs
- FlowDocumentPageViewerAutomationPeer.cs
- UndirectedGraph.cs
- SapiRecognizer.cs
- Expressions.cs
- RegionData.cs
- DeleteIndexBinder.cs
- XPathEmptyIterator.cs
- SafeViewOfFileHandle.cs
- MarkedHighlightComponent.cs
- ChangeConflicts.cs
- bindurihelper.cs
- OperationAbortedException.cs
- OdbcConnectionFactory.cs
- SolidColorBrush.cs
- DSACryptoServiceProvider.cs
- SymbolDocumentInfo.cs
- DataTemplateKey.cs
- SchemaImporterExtension.cs
- EmptyQuery.cs
- EditableRegion.cs
- BamlWriter.cs
- ListViewUpdateEventArgs.cs
- DesignerHelpers.cs
- ISAPIWorkerRequest.cs
- Canvas.cs
- Path.cs
- AdornerLayer.cs
- diagnosticsswitches.cs
- BitmapDecoder.cs
- basecomparevalidator.cs
- FrameworkTextComposition.cs
- TextPatternIdentifiers.cs
- OrderedHashRepartitionEnumerator.cs
- RadioButton.cs
- TokenBasedSetEnumerator.cs
- HttpInputStream.cs
- WebServiceReceiveDesigner.cs
- ItemList.cs
- newitemfactory.cs
- _ConnectOverlappedAsyncResult.cs
- InterleavedZipPartStream.cs
- SqlGenericUtil.cs
- DocumentGridContextMenu.cs
- assertwrapper.cs
- FormViewActionList.cs
- ConsoleTraceListener.cs
- ObfuscateAssemblyAttribute.cs
- InvalidFilterCriteriaException.cs
- MenuRenderer.cs
- IpcChannelHelper.cs
- WindowsButton.cs
- ToolStripInSituService.cs
- PermissionAttributes.cs
- Accessible.cs
- TrackingDataItemValue.cs
- EntityDataSourceMemberPath.cs
- NamedObject.cs
- HtmlElementEventArgs.cs
- BrowserCapabilitiesFactory.cs
- DataMember.cs
- Atom10FormatterFactory.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- Stackframe.cs
- IItemContainerGenerator.cs
- _ListenerRequestStream.cs
- PropertyGridEditorPart.cs
- ColorConvertedBitmapExtension.cs
- Compiler.cs
- AuthorizationRule.cs
- TraceSection.cs
- DiscoveryClientChannelBase.cs