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
- configsystem.cs
- DataColumn.cs
- FilterQuery.cs
- RegexWorker.cs
- SelectionUIService.cs
- altserialization.cs
- oledbmetadatacolumnnames.cs
- PreProcessInputEventArgs.cs
- Misc.cs
- DriveInfo.cs
- MenuCommand.cs
- DependencyPropertyConverter.cs
- DesignerAdRotatorAdapter.cs
- GraphicsContext.cs
- Bold.cs
- SelectionChangedEventArgs.cs
- Int16Animation.cs
- ActivityBuilderXamlWriter.cs
- PointAnimationBase.cs
- Visual3DCollection.cs
- BamlLocalizableResourceKey.cs
- ClientBuildManagerCallback.cs
- TrustLevel.cs
- WebScriptClientGenerator.cs
- HelpKeywordAttribute.cs
- MimeMultiPart.cs
- SqlDataSourceSummaryPanel.cs
- PeerApplication.cs
- LocatorGroup.cs
- ClusterRegistryConfigurationProvider.cs
- TextEditorSelection.cs
- BuilderElements.cs
- FormsIdentity.cs
- DbConnectionInternal.cs
- precedingsibling.cs
- BrowserCapabilitiesFactory.cs
- Point4D.cs
- ModifierKeysValueSerializer.cs
- DesignerActionUI.cs
- GrammarBuilderPhrase.cs
- DrawingGroup.cs
- SqlProfileProvider.cs
- BlobPersonalizationState.cs
- ComponentDispatcherThread.cs
- UTF7Encoding.cs
- DelegatingConfigHost.cs
- SettingsPropertyValueCollection.cs
- CollectionChangedEventManager.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- WebPartAuthorizationEventArgs.cs
- PartitionerQueryOperator.cs
- UInt16Converter.cs
- AsymmetricKeyExchangeDeformatter.cs
- DelegateSerializationHolder.cs
- UserControl.cs
- HTTPNotFoundHandler.cs
- isolationinterop.cs
- XmlMemberMapping.cs
- Pen.cs
- wmiprovider.cs
- KoreanLunisolarCalendar.cs
- TemplatePagerField.cs
- WmlControlAdapter.cs
- TextBoxBase.cs
- Delegate.cs
- OrderedDictionaryStateHelper.cs
- ListViewAutomationPeer.cs
- IconConverter.cs
- UriSection.cs
- DelegateInArgument.cs
- CompositeTypefaceMetrics.cs
- CallbackValidator.cs
- FtpCachePolicyElement.cs
- MDIWindowDialog.cs
- XmlElement.cs
- ELinqQueryState.cs
- OuterGlowBitmapEffect.cs
- newinstructionaction.cs
- SignatureToken.cs
- Table.cs
- HyperLinkColumn.cs
- ECDiffieHellmanCng.cs
- DisplayInformation.cs
- BuilderPropertyEntry.cs
- CodeStatement.cs
- SQLBoolean.cs
- SafeViewOfFileHandle.cs
- VirtualPathProvider.cs
- XmlSchemaAny.cs
- CodeDomSerializer.cs
- TCPClient.cs
- XmlSchemaElement.cs
- StylesEditorDialog.cs
- OdbcError.cs
- CodeSubDirectory.cs
- PeerNeighborManager.cs
- SqlDataSourceFilteringEventArgs.cs
- CustomError.cs
- MatrixTransform.cs
- WindowInteropHelper.cs