Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- LifetimeServices.cs
- CatalogZone.cs
- Journaling.cs
- SqlVisitor.cs
- Facet.cs
- ToolStripMenuItemDesigner.cs
- VBIdentifierDesigner.xaml.cs
- CodeDirectoryCompiler.cs
- DocumentApplication.cs
- TextRangeProviderWrapper.cs
- ClientConvert.cs
- CommandConverter.cs
- CharacterMetricsDictionary.cs
- DbConnectionPool.cs
- FileUtil.cs
- MachineKeyConverter.cs
- SelectionItemPattern.cs
- ObjectDataSourceMethodEventArgs.cs
- WindowsListView.cs
- HttpRequest.cs
- CodeDomExtensionMethods.cs
- GraphicsPathIterator.cs
- OneOfScalarConst.cs
- DataGridViewCellLinkedList.cs
- DesignerTransactionCloseEvent.cs
- WebPartHeaderCloseVerb.cs
- XmlJsonWriter.cs
- MetadataArtifactLoaderComposite.cs
- MediaTimeline.cs
- DefaultProxySection.cs
- SafeNativeMethods.cs
- InternalResources.cs
- LingerOption.cs
- AuthenticationSection.cs
- ToolTip.cs
- GeometryHitTestResult.cs
- PathSegmentCollection.cs
- ListViewCancelEventArgs.cs
- FontEditor.cs
- Membership.cs
- WebPartDisplayMode.cs
- WebBrowserContainer.cs
- Italic.cs
- LoginViewDesigner.cs
- SqlConnection.cs
- SchemaTypeEmitter.cs
- SpellerStatusTable.cs
- BamlBinaryReader.cs
- ScrollData.cs
- HtmlInputRadioButton.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- SecurityRuntime.cs
- DataViewManager.cs
- RawContentTypeMapper.cs
- SingleStorage.cs
- DoubleIndependentAnimationStorage.cs
- StringFunctions.cs
- RowCache.cs
- ManagementObjectCollection.cs
- ELinqQueryState.cs
- TextBoxDesigner.cs
- CanExecuteRoutedEventArgs.cs
- XPathScanner.cs
- SettingsPropertyWrongTypeException.cs
- XmlSchemaFacet.cs
- HebrewCalendar.cs
- WCFBuildProvider.cs
- ListView.cs
- XmlSchemaNotation.cs
- AtomContentProperty.cs
- RegexStringValidator.cs
- LoaderAllocator.cs
- FieldBuilder.cs
- DataServices.cs
- SqlPersonalizationProvider.cs
- HighlightVisual.cs
- SqlInternalConnectionTds.cs
- DataGridViewCellStyleChangedEventArgs.cs
- FaultDescriptionCollection.cs
- LineGeometry.cs
- Configuration.cs
- SiteMapNode.cs
- SerialStream.cs
- ScriptReferenceEventArgs.cs
- DebuggerAttributes.cs
- PathNode.cs
- HttpHandlersSection.cs
- SystemIcmpV6Statistics.cs
- Inflater.cs
- InputProcessorProfiles.cs
- SymmetricKey.cs
- EmissiveMaterial.cs
- SafeNativeMethods.cs
- XmlExpressionDumper.cs
- PropertySourceInfo.cs
- ReturnValue.cs
- PatternMatcher.cs
- SafeSystemMetrics.cs
- DispatcherOperation.cs
- DataGridTextBox.cs