Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaAnnotated.cs / 1305376 / 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SortExpressionBuilder.cs
- RequestSecurityTokenResponse.cs
- FlowLayout.cs
- NativeMethods.cs
- SymLanguageVendor.cs
- ListViewItemEventArgs.cs
- OleDbRowUpdatingEvent.cs
- DataObjectPastingEventArgs.cs
- WizardForm.cs
- LogRecordSequence.cs
- ProxyRpc.cs
- PackageRelationship.cs
- WebScriptServiceHostFactory.cs
- HttpRequestTraceRecord.cs
- MultiplexingFormatMapping.cs
- RotateTransform3D.cs
- GridViewDeleteEventArgs.cs
- XmlValueConverter.cs
- WebPartEventArgs.cs
- XPathNavigatorKeyComparer.cs
- AttributeUsageAttribute.cs
- SubpageParaClient.cs
- MissingSatelliteAssemblyException.cs
- DataGridViewTextBoxEditingControl.cs
- FileDialog_Vista_Interop.cs
- WebResponse.cs
- TimersDescriptionAttribute.cs
- MachineSettingsSection.cs
- PrimitiveDataContract.cs
- Frame.cs
- LinkedResourceCollection.cs
- LogicalCallContext.cs
- XmlUtilWriter.cs
- PageTheme.cs
- Attributes.cs
- SequentialOutput.cs
- BitmapMetadataBlob.cs
- ProcessThread.cs
- LogPolicy.cs
- SafeRegistryHandle.cs
- DefaultBinder.cs
- IxmlLineInfo.cs
- CompiledXpathExpr.cs
- AnnouncementSendsAsyncResult.cs
- TablePattern.cs
- FormsAuthenticationTicket.cs
- ScaleTransform.cs
- StreamWithDictionary.cs
- InteropBitmapSource.cs
- HtmlShimManager.cs
- ScriptIgnoreAttribute.cs
- AuthStoreRoleProvider.cs
- MsmqIntegrationProcessProtocolHandler.cs
- ParseElement.cs
- LineGeometry.cs
- HelloOperationCD1AsyncResult.cs
- SystemBrushes.cs
- DrawingImage.cs
- XmlEncoding.cs
- RegionInfo.cs
- SmtpDigestAuthenticationModule.cs
- DelayedRegex.cs
- DocumentReference.cs
- OutputCacheSection.cs
- EventLogQuery.cs
- DiagnosticsConfigurationHandler.cs
- CmsInterop.cs
- DataKey.cs
- CapabilitiesAssignment.cs
- UniqueIdentifierService.cs
- XPathPatternParser.cs
- Blend.cs
- DataGridViewRowsAddedEventArgs.cs
- NTAccount.cs
- QueryInterceptorAttribute.cs
- XsltContext.cs
- ClientTargetCollection.cs
- ListControlConvertEventArgs.cs
- SplayTreeNode.cs
- AssociationProvider.cs
- XmlSchemaDatatype.cs
- RuntimeConfigurationRecord.cs
- XmlILOptimizerVisitor.cs
- SystemIPGlobalProperties.cs
- WmlPanelAdapter.cs
- NotifyIcon.cs
- TextServicesProperty.cs
- ExecutionProperties.cs
- XmlCodeExporter.cs
- MemoryStream.cs
- RectangleF.cs
- InitializationEventAttribute.cs
- SoundPlayerAction.cs
- DispatcherEventArgs.cs
- BuildManagerHost.cs
- ServiceProviders.cs
- DataServiceRequestException.cs
- NTAccount.cs
- XmlSchemaSimpleContentRestriction.cs
- DBParameter.cs