Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaAnnotated.cs / 1 / XmlSchemaAnnotated.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.Xml.Serialization; ////// /// public class XmlSchemaAnnotated : XmlSchemaObject { string id; XmlSchemaAnnotation annotation; XmlAttribute[] moreAttributes; ///[To be supplied.] ////// /// [XmlAttribute("id", DataType="ID")] public string Id { get { return id; } set { id = value; } } ///[To be supplied.] ////// /// [XmlElement("annotation", typeof(XmlSchemaAnnotation))] public XmlSchemaAnnotation Annotation { get { return annotation; } set { annotation = value; } } ///[To be supplied.] ////// /// [XmlAnyAttribute] public XmlAttribute[] UnhandledAttributes { get { return moreAttributes; } set { moreAttributes = value; } } [XmlIgnore] internal override string IdAttribute { get { return Id; } set { Id = value; } } internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes) { this.moreAttributes = moreAttributes; } internal override void AddAnnotation(XmlSchemaAnnotation annotation) { this.annotation = annotation; } } } // 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
- SingleObjectCollection.cs
- PipelineDeploymentState.cs
- EdmSchemaAttribute.cs
- TypedMessageConverter.cs
- CollectionContainer.cs
- DefaultHttpHandler.cs
- KeyboardEventArgs.cs
- WindowsImpersonationContext.cs
- HttpCookiesSection.cs
- ScriptDescriptor.cs
- DefaultValueMapping.cs
- DataGridViewCellParsingEventArgs.cs
- ObjectTag.cs
- FormsAuthenticationUserCollection.cs
- FragmentQueryProcessor.cs
- VolatileEnlistmentState.cs
- XdrBuilder.cs
- SecurityRuntime.cs
- WindowsFormsHostAutomationPeer.cs
- TextModifier.cs
- ProfileBuildProvider.cs
- DataServiceRequest.cs
- XmlReflectionMember.cs
- DataGridLinkButton.cs
- RemotingServices.cs
- PTProvider.cs
- MarshalByRefObject.cs
- DataViewListener.cs
- SingleAnimationUsingKeyFrames.cs
- TrustLevelCollection.cs
- DataGridViewCheckBoxColumn.cs
- RadioButtonDesigner.cs
- TabItem.cs
- XmlSchemaAttribute.cs
- ToolboxItemSnapLineBehavior.cs
- BackgroundWorker.cs
- GridView.cs
- IdleTimeoutMonitor.cs
- MasterPageBuildProvider.cs
- _Rfc2616CacheValidators.cs
- HostingPreferredMapPath.cs
- DataRowChangeEvent.cs
- ScriptControlManager.cs
- XPathPatternBuilder.cs
- TextRangeAdaptor.cs
- InvalidCommandTreeException.cs
- StringUtil.cs
- XMLDiffLoader.cs
- SID.cs
- CornerRadiusConverter.cs
- TreeNodeCollection.cs
- WindowsAltTab.cs
- XmlSchemaValidationException.cs
- XPathAncestorIterator.cs
- SQLStringStorage.cs
- MemberDescriptor.cs
- SoapSchemaExporter.cs
- TCEAdapterGenerator.cs
- EventProviderTraceListener.cs
- TiffBitmapDecoder.cs
- InvalidOperationException.cs
- NativeMethods.cs
- CustomValidator.cs
- DrawingContextWalker.cs
- Label.cs
- ChannelManager.cs
- CookielessHelper.cs
- EntityDataSourceDataSelectionPanel.cs
- AnnotationComponentManager.cs
- BitmapMetadataBlob.cs
- EdgeProfileValidation.cs
- TaskHelper.cs
- FederatedMessageSecurityOverHttp.cs
- AsymmetricKeyExchangeFormatter.cs
- EasingQuaternionKeyFrame.cs
- WorkflowServiceHost.cs
- CompilerErrorCollection.cs
- wpf-etw.cs
- AutoSizeComboBox.cs
- ManagementObjectSearcher.cs
- GreenMethods.cs
- PageBreakRecord.cs
- TypeConverterHelper.cs
- Renderer.cs
- WebPartDescription.cs
- FontUnitConverter.cs
- FontWeight.cs
- ObjectAnimationUsingKeyFrames.cs
- PerformanceCounters.cs
- DbException.cs
- AggregationMinMaxHelpers.cs
- HttpModulesSection.cs
- SqlBuilder.cs
- AnimatedTypeHelpers.cs
- XmlProcessingInstruction.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- Soap12ServerProtocol.cs
- ThreadPool.cs
- MultilineStringConverter.cs
- CalendarTable.cs