Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaAnnotation.cs / 1305376 / XmlSchemaAnnotation.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Schema { using System.Collections; using System.Xml.Serialization; ////// /// public class XmlSchemaAnnotation : XmlSchemaObject { string id; XmlSchemaObjectCollection items = new XmlSchemaObjectCollection(); XmlAttribute[] moreAttributes; ///[To be supplied.] ////// /// [XmlAttribute("id", DataType = "ID")] public string Id { get { return id; } set { id = value; } } ///[To be supplied.] ////// /// [XmlElement("documentation", typeof(XmlSchemaDocumentation)), XmlElement("appinfo", typeof(XmlSchemaAppInfo))] public XmlSchemaObjectCollection Items { get { return items; } } ///[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; } } } // 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
- OleDbException.cs
- TreeWalkHelper.cs
- ArgumentNullException.cs
- DataGridTablesFactory.cs
- DataPagerField.cs
- LayoutManager.cs
- TextRangeSerialization.cs
- AutomationPropertyChangedEventArgs.cs
- RunWorkerCompletedEventArgs.cs
- CapiHashAlgorithm.cs
- ProcessThread.cs
- UrlSyndicationContent.cs
- PointLightBase.cs
- FullTextLine.cs
- AbstractExpressions.cs
- CapabilitiesRule.cs
- XmlIterators.cs
- MatrixAnimationUsingKeyFrames.cs
- SqlServer2KCompatibilityAnnotation.cs
- SoapFault.cs
- OrderByQueryOptionExpression.cs
- _BasicClient.cs
- EditorZoneDesigner.cs
- HttpListenerResponse.cs
- XmlDocumentFragment.cs
- DataGridViewCell.cs
- EntityClassGenerator.cs
- CfgParser.cs
- ParamArrayAttribute.cs
- XmlLangPropertyAttribute.cs
- MD5.cs
- TabControl.cs
- DecimalFormatter.cs
- DataGridViewCellValidatingEventArgs.cs
- SafeMarshalContext.cs
- DbParameterCollectionHelper.cs
- BindUriHelper.cs
- Int64Converter.cs
- ElementUtil.cs
- SymLanguageVendor.cs
- BigIntegerStorage.cs
- SpellerStatusTable.cs
- EntityClientCacheEntry.cs
- UnsafeNativeMethodsTablet.cs
- CommandValueSerializer.cs
- FactoryRecord.cs
- EditableLabelControl.cs
- DataGridPagerStyle.cs
- ProxyGenerationError.cs
- InvalidAsynchronousStateException.cs
- FormViewActionList.cs
- DataGridViewCellMouseEventArgs.cs
- DetailsViewUpdatedEventArgs.cs
- SystemBrushes.cs
- RowType.cs
- SafeHandle.cs
- CodeMethodReturnStatement.cs
- ControlBindingsCollection.cs
- Int32RectValueSerializer.cs
- MaskPropertyEditor.cs
- LocalServiceSecuritySettingsElement.cs
- TdsParser.cs
- RectAnimationBase.cs
- Pointer.cs
- Int64.cs
- SignedInfo.cs
- OdbcRowUpdatingEvent.cs
- EntityRecordInfo.cs
- AuthenticationService.cs
- ReadOnlyTernaryTree.cs
- ToolStripRendererSwitcher.cs
- MultipartContentParser.cs
- RightsManagementInformation.cs
- StylusPointPropertyId.cs
- TextContainerHelper.cs
- ImageBrush.cs
- SqlCommandBuilder.cs
- UrlPropertyAttribute.cs
- base64Transforms.cs
- XPathNodeHelper.cs
- ProfileService.cs
- HitTestResult.cs
- RegexNode.cs
- WindowsNonControl.cs
- StateMachineSubscriptionManager.cs
- ParenExpr.cs
- HtmlTextViewAdapter.cs
- PartBasedPackageProperties.cs
- SettingsProperty.cs
- DefaultPropertyAttribute.cs
- DbCommandDefinition.cs
- DataGridPagerStyle.cs
- SizeChangedInfo.cs
- ActivityExecutionContext.cs
- PrePostDescendentsWalker.cs
- DataGridViewSortCompareEventArgs.cs
- WebPartHeaderCloseVerb.cs
- OutOfMemoryException.cs
- PerspectiveCamera.cs
- PersonalizationDictionary.cs