Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaAttribute.cs / 1 / XmlSchemaAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Xml.XPath; using System.Collections; using System.ComponentModel; using System.Xml.Serialization; namespace System.Xml.Schema { ////// /// public class XmlSchemaAttribute : XmlSchemaAnnotated { string defaultValue; string fixedValue; string name; string prefix; XmlSchemaForm form = XmlSchemaForm.None; XmlSchemaUse use = XmlSchemaUse.None; XmlQualifiedName refName = XmlQualifiedName.Empty; XmlQualifiedName typeName = XmlQualifiedName.Empty; XmlQualifiedName qualifiedName = XmlQualifiedName.Empty; XmlSchemaSimpleType type; XmlSchemaSimpleType attributeType; SchemaAttDef attDef; ///[To be supplied.] ////// /// [XmlAttribute("default")] [DefaultValue(null)] public string DefaultValue { get { return defaultValue; } set { defaultValue = value; } } ///[To be supplied.] ////// /// [XmlAttribute("fixed")] [DefaultValue(null)] public string FixedValue { get { return fixedValue; } set { fixedValue = value; } } ///[To be supplied.] ////// /// [XmlAttribute("form"), DefaultValue(XmlSchemaForm.None)] public XmlSchemaForm Form { get { return form; } set { form = value; } } ///[To be supplied.] ////// /// [XmlAttribute("name")] public string Name { get { return name; } set { name = value; } } ///[To be supplied.] ////// /// [XmlAttribute("ref")] public XmlQualifiedName RefName { get { return refName; } set { refName = (value == null ? XmlQualifiedName.Empty : value); } } ///[To be supplied.] ////// /// [XmlAttribute("type")] public XmlQualifiedName SchemaTypeName { get { return typeName; } set { typeName = (value == null ? XmlQualifiedName.Empty : value); } } ///[To be supplied.] ////// /// [XmlElement("simpleType")] public XmlSchemaSimpleType SchemaType { get { return type; } set { type = value; } } ///[To be supplied.] ////// /// [XmlAttribute("use"), DefaultValue(XmlSchemaUse.None)] public XmlSchemaUse Use { get { return use; } set { use = value; } } ///[To be supplied.] ////// /// [XmlIgnore] public XmlQualifiedName QualifiedName { get { return qualifiedName; } } ///[To be supplied.] ////// /// [XmlIgnore] [Obsolete("This property has been deprecated. Please use AttributeSchemaType property that returns a strongly typed attribute type. http://go.microsoft.com/fwlink/?linkid=14202")] public object AttributeType { get { if (attributeType.QualifiedName.Namespace == XmlReservedNs.NsXs) { return attributeType.Datatype; } return attributeType; } } ///[To be supplied.] ////// /// [XmlIgnore] public XmlSchemaSimpleType AttributeSchemaType { get { return attributeType; } } internal XmlReader Validate(XmlReader reader, XmlResolver resolver, XmlSchemaSet schemaSet, ValidationEventHandler valEventHandler) { if (schemaSet != null) { XmlReaderSettings readerSettings = new XmlReaderSettings(); readerSettings.ValidationType = ValidationType.Schema; readerSettings.Schemas = schemaSet; readerSettings.ValidationEventHandler += valEventHandler; return new XsdValidatingReader(reader, resolver, readerSettings, this); } return null; } [XmlIgnore] internal XmlSchemaDatatype Datatype { get { if (attributeType != null) { return attributeType.Datatype; } return null; } } internal void SetQualifiedName(XmlQualifiedName value) { qualifiedName = value; } internal void SetAttributeType(XmlSchemaSimpleType value) { attributeType = value; } internal string Prefix { get { return prefix; } } internal SchemaAttDef AttDef { get { return attDef; } set { attDef = value; } } internal bool HasDefault { get { return defaultValue != null; } } [XmlIgnore] internal override string NameAttribute { get { return Name; } set { Name = value; } } internal override XmlSchemaObject Clone() { XmlSchemaAttribute newAtt = (XmlSchemaAttribute)MemberwiseClone(); //Deep clone the QNames as these will be updated on chameleon includes newAtt.refName = this.refName.Clone(); newAtt.typeName = this.typeName.Clone(); return newAtt; } } } // 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
- DecryptRequest.cs
- HtmlImage.cs
- SQLRoleProvider.cs
- TraceSection.cs
- NavigatorInvalidBodyAccessException.cs
- RegexReplacement.cs
- Duration.cs
- PersonalizationAdministration.cs
- HitTestWithGeometryDrawingContextWalker.cs
- PenLineJoinValidation.cs
- WebHttpBehavior.cs
- Visual3DCollection.cs
- Pair.cs
- MultipleViewPatternIdentifiers.cs
- LockCookie.cs
- MethodAccessException.cs
- TextWriterTraceListener.cs
- DataGridrowEditEndingEventArgs.cs
- EncodingInfo.cs
- Console.cs
- ListViewItemSelectionChangedEvent.cs
- InheritablePropertyChangeInfo.cs
- RootBuilder.cs
- PageVisual.cs
- Positioning.cs
- IntSecurity.cs
- Brush.cs
- NativeMethods.cs
- WebPartConnectionsDisconnectVerb.cs
- TreeViewDesigner.cs
- DataListItemCollection.cs
- PackageFilter.cs
- View.cs
- XmlNotation.cs
- UrlMappingsModule.cs
- KeyToListMap.cs
- CodeValidator.cs
- DecoderExceptionFallback.cs
- ValidateNames.cs
- SpeechEvent.cs
- XPathArrayIterator.cs
- IntegerFacetDescriptionElement.cs
- ExpressionBindings.cs
- MetadataUtil.cs
- EngineSite.cs
- SequentialUshortCollection.cs
- SqlWebEventProvider.cs
- ZeroOpNode.cs
- Queue.cs
- WebBrowserEvent.cs
- ApplicationManager.cs
- ToolBarButtonDesigner.cs
- DataSourceSelectArguments.cs
- RequestTimeoutManager.cs
- Cell.cs
- Expr.cs
- LinearQuaternionKeyFrame.cs
- VectorAnimationUsingKeyFrames.cs
- CellLabel.cs
- SwitchLevelAttribute.cs
- DecoratedNameAttribute.cs
- ObservableDictionary.cs
- ResolvedKeyFrameEntry.cs
- HttpPostLocalhostServerProtocol.cs
- CodeTypeConstructor.cs
- MsmqBindingElementBase.cs
- IdentitySection.cs
- InfoCardSymmetricAlgorithm.cs
- UriTemplateTableMatchCandidate.cs
- Span.cs
- ProcessHostFactoryHelper.cs
- EUCJPEncoding.cs
- FirstMatchCodeGroup.cs
- CharConverter.cs
- WorkingDirectoryEditor.cs
- XmlSiteMapProvider.cs
- ImageMapEventArgs.cs
- UserControlParser.cs
- WeakHashtable.cs
- BinaryWriter.cs
- ThreadExceptionDialog.cs
- MergablePropertyAttribute.cs
- UTF32Encoding.cs
- WebConvert.cs
- ShutDownListener.cs
- XPathSingletonIterator.cs
- SecurityManager.cs
- ServiceBusyException.cs
- XmlException.cs
- CustomWebEventKey.cs
- MessageDecoder.cs
- PrtCap_Builder.cs
- RichTextBoxConstants.cs
- FileDataSourceCache.cs
- SHA512Managed.cs
- URLIdentityPermission.cs
- InputReferenceExpression.cs
- Ops.cs
- CollectionViewProxy.cs
- XmlSortKeyAccumulator.cs