Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. //------------------------------------------------------------------------------ //[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
- XmlSerializerFactory.cs
- MouseOverProperty.cs
- ControlBuilderAttribute.cs
- EncoderParameter.cs
- IRCollection.cs
- RuntimeHandles.cs
- XmlNodeChangedEventArgs.cs
- Rect3D.cs
- WindowsListViewGroupHelper.cs
- ToolStripItem.cs
- LinkClickEvent.cs
- SqlResolver.cs
- DecoderFallback.cs
- RealProxy.cs
- TextBoxView.cs
- GeometryConverter.cs
- OleDbConnection.cs
- GroupBox.cs
- SqlMethods.cs
- ObjectKeyFrameCollection.cs
- ListViewItem.cs
- Console.cs
- IndicFontClient.cs
- KeyGesture.cs
- FixedSOMTextRun.cs
- HtmlEncodedRawTextWriter.cs
- Thickness.cs
- GroupPartitionExpr.cs
- DataService.cs
- AuthenticateEventArgs.cs
- MetadataPropertyvalue.cs
- DifferencingCollection.cs
- StrongNameUtility.cs
- InsufficientMemoryException.cs
- WebHttpBindingCollectionElement.cs
- FeatureSupport.cs
- SqlHelper.cs
- MethodRental.cs
- Color.cs
- DataGrid.cs
- XmlLinkedNode.cs
- CodeTypeConstructor.cs
- StateManagedCollection.cs
- ExpressionParser.cs
- ClientSettingsStore.cs
- PageRanges.cs
- UInt32Converter.cs
- COM2FontConverter.cs
- XmlSchemas.cs
- DbCommandDefinition.cs
- DefaultParameterValueAttribute.cs
- ProtocolsConfiguration.cs
- BaseDataList.cs
- _OverlappedAsyncResult.cs
- ResourceBinder.cs
- InputScope.cs
- MetabaseServerConfig.cs
- QueryRewriter.cs
- ServerIdentity.cs
- ClientSettingsSection.cs
- BatchServiceHost.cs
- LogRecordSequence.cs
- WindowInteractionStateTracker.cs
- TypeReference.cs
- AttributeData.cs
- SynchronizationLockException.cs
- StringAnimationBase.cs
- DataTableNewRowEvent.cs
- RootBrowserWindow.cs
- InternalsVisibleToAttribute.cs
- GenericWebPart.cs
- HwndMouseInputProvider.cs
- PeerUnsafeNativeMethods.cs
- XmlComment.cs
- SizeChangedEventArgs.cs
- ElapsedEventArgs.cs
- MissingManifestResourceException.cs
- Brush.cs
- MouseGestureValueSerializer.cs
- EmissiveMaterial.cs
- ThemeInfoAttribute.cs
- DataSourceControlBuilder.cs
- EarlyBoundInfo.cs
- DesignerActionUIService.cs
- SafeBitVector32.cs
- CodeMemberMethod.cs
- PrimitiveList.cs
- FileRecordSequence.cs
- PolyQuadraticBezierSegment.cs
- IDQuery.cs
- HScrollProperties.cs
- DESCryptoServiceProvider.cs
- PropertyToken.cs
- RuntimeEnvironment.cs
- MessageBox.cs
- EastAsianLunisolarCalendar.cs
- RtfControlWordInfo.cs
- NamespaceInfo.cs
- DocumentGridContextMenu.cs
- ScaleTransform.cs