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
- SystemResourceHost.cs
- CommandValueSerializer.cs
- SafeThemeHandle.cs
- AssociationEndMember.cs
- DbParameterCollectionHelper.cs
- ExceptionUtil.cs
- CompositeTypefaceMetrics.cs
- PlainXmlWriter.cs
- ExtenderControl.cs
- PropertyPushdownHelper.cs
- ScriptHandlerFactory.cs
- BitmapMetadata.cs
- InvalidComObjectException.cs
- HandlerWithFactory.cs
- CompositeControl.cs
- UInt16.cs
- HttpFormatExtensions.cs
- SmtpLoginAuthenticationModule.cs
- XmlAttributeAttribute.cs
- EncodingInfo.cs
- MetabaseServerConfig.cs
- HwndMouseInputProvider.cs
- CLRBindingWorker.cs
- BuildProvider.cs
- VirtualDirectoryMappingCollection.cs
- SizeConverter.cs
- SoapFault.cs
- SchemaNamespaceManager.cs
- ControlTemplate.cs
- CqlIdentifiers.cs
- Setter.cs
- TripleDESCryptoServiceProvider.cs
- QueryCacheKey.cs
- ClaimTypeRequirement.cs
- XmlSchemaRedefine.cs
- ItemList.cs
- OAVariantLib.cs
- XslNumber.cs
- DbConnectionHelper.cs
- EnumerableRowCollection.cs
- WpfGeneratedKnownTypes.cs
- AnnotationAdorner.cs
- DateTimeValueSerializer.cs
- CustomTypeDescriptor.cs
- MenuAutomationPeer.cs
- AmbiguousMatchException.cs
- StickyNoteHelper.cs
- BoolLiteral.cs
- TimeManager.cs
- EventSetter.cs
- TemplateNodeContextMenu.cs
- System.Data.OracleClient_BID.cs
- SecurityKeyIdentifier.cs
- FontStretchConverter.cs
- PrintPreviewControl.cs
- Int16Storage.cs
- XmlSchemaObjectTable.cs
- BinaryFormatter.cs
- PrintPageEvent.cs
- ProcessHostServerConfig.cs
- TextTreeTextNode.cs
- TreeViewItem.cs
- Pens.cs
- CngKeyCreationParameters.cs
- ScriptMethodAttribute.cs
- DoubleConverter.cs
- AsyncDataRequest.cs
- ValidationPropertyAttribute.cs
- SqlReorderer.cs
- EntityDataSourceWrapper.cs
- StrongNameMembershipCondition.cs
- ParameterBuilder.cs
- ServiceChannelProxy.cs
- InstanceStoreQueryResult.cs
- BinaryObjectReader.cs
- DataGridViewComboBoxColumnDesigner.cs
- PasswordRecovery.cs
- UserControlDesigner.cs
- EventHandlerList.cs
- LateBoundBitmapDecoder.cs
- ProcessHostFactoryHelper.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- ValueOfAction.cs
- SqlDataSourceSelectingEventArgs.cs
- altserialization.cs
- ExpressionBindingsDialog.cs
- XXXInfos.cs
- DbDataRecord.cs
- ButtonBaseAdapter.cs
- BitmapEffectGroup.cs
- StateMachine.cs
- SuppressMergeCheckAttribute.cs
- WebResourceAttribute.cs
- DisableDpiAwarenessAttribute.cs
- ServiceModelExtensionElement.cs
- MethodCallConverter.cs
- ArrangedElement.cs
- ExtenderControl.cs
- XmlSchemaValidator.cs
- COM2EnumConverter.cs