Code:
/ 4.0 / 4.0 / untmp / 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;
///
///
/// [To be supplied.]
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TreeViewDesigner.cs
- TextRangeEditLists.cs
- GlyphRun.cs
- WindowsNonControl.cs
- SmiEventSink.cs
- InputMethod.cs
- AppLevelCompilationSectionCache.cs
- UserControlBuildProvider.cs
- ErasingStroke.cs
- Root.cs
- OnOperation.cs
- CodeGotoStatement.cs
- TimeoutException.cs
- StdRegProviderWrapper.cs
- FixedSOMTable.cs
- EventItfInfo.cs
- TrackBarDesigner.cs
- ColorTransform.cs
- IsolatedStorageFile.cs
- DockEditor.cs
- Internal.cs
- RadialGradientBrush.cs
- RoutingExtensionElement.cs
- SystemWebSectionGroup.cs
- TimeoutHelper.cs
- DesignerActionItemCollection.cs
- ISAPIApplicationHost.cs
- ConnectionManagementElement.cs
- XmlTextAttribute.cs
- DataRowExtensions.cs
- KeyedByTypeCollection.cs
- ConditionalWeakTable.cs
- OrderedDictionary.cs
- xmlsaver.cs
- XmlBoundElement.cs
- RewritingValidator.cs
- ArcSegment.cs
- ScriptHandlerFactory.cs
- Matrix3DStack.cs
- WindowsIdentity.cs
- RewritingSimplifier.cs
- EntityDesignerUtils.cs
- PointAnimation.cs
- SessionEndedEventArgs.cs
- GridViewRowCollection.cs
- SimpleRecyclingCache.cs
- ColorBuilder.cs
- AffineTransform3D.cs
- PageTextBox.cs
- ConfigXmlReader.cs
- FormViewInsertEventArgs.cs
- returneventsaver.cs
- GlobalEventManager.cs
- JapaneseCalendar.cs
- DoWhile.cs
- TypeUtils.cs
- OdbcHandle.cs
- ItemsChangedEventArgs.cs
- DataGridView.cs
- _ProxyChain.cs
- HttpPostedFileWrapper.cs
- SHA1.cs
- EntityContainer.cs
- CommandDevice.cs
- WebRequestModuleElementCollection.cs
- DbTransaction.cs
- DetailsViewDeletedEventArgs.cs
- BypassElement.cs
- EntityDataSourceValidationException.cs
- XPathNavigatorKeyComparer.cs
- assemblycache.cs
- FunctionDetailsReader.cs
- SourceFileBuildProvider.cs
- ClockGroup.cs
- ContentFilePart.cs
- Transactions.cs
- FileDialog.cs
- CompilerTypeWithParams.cs
- RegexTree.cs
- EntitySqlQueryState.cs
- ListItem.cs
- MultiAsyncResult.cs
- ToolStripContainerActionList.cs
- StringAnimationBase.cs
- PolyQuadraticBezierSegment.cs
- InteropBitmapSource.cs
- TransformerTypeCollection.cs
- SqlVisitor.cs
- DiscreteKeyFrames.cs
- WebConfigurationHost.cs
- FixedSOMTableCell.cs
- MDIClient.cs
- CriticalExceptions.cs
- CodeBlockBuilder.cs
- XmlSchemaType.cs
- ColorAnimation.cs
- SortKey.cs
- EmptyStringExpandableObjectConverter.cs
- TdsParameterSetter.cs
- BindingValueChangedEventArgs.cs