Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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;
///
///
/// [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.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlDataSource.cs
- IntSecurity.cs
- TypeDelegator.cs
- TextWriter.cs
- Vector.cs
- TextTreeRootNode.cs
- EntitySqlQueryCacheKey.cs
- SecurityTokenInclusionMode.cs
- ResourceReferenceExpressionConverter.cs
- WebPartVerbsEventArgs.cs
- SafeNativeMethods.cs
- ImageListUtils.cs
- ContainerControlDesigner.cs
- TextPointer.cs
- SimpleTypeResolver.cs
- RelationshipEndMember.cs
- SymDocumentType.cs
- BuildProvidersCompiler.cs
- IndexedSelectQueryOperator.cs
- EtwTrace.cs
- DefaultEvaluationContext.cs
- CodeObjectCreateExpression.cs
- WorkflowInstanceContextProvider.cs
- Context.cs
- BindValidationContext.cs
- View.cs
- DataGridViewToolTip.cs
- TableFieldsEditor.cs
- EventManager.cs
- ClientFormsAuthenticationCredentials.cs
- WebPartManagerInternals.cs
- ValueProviderWrapper.cs
- _StreamFramer.cs
- SoapIgnoreAttribute.cs
- MeasurementDCInfo.cs
- WebBrowser.cs
- CurrentChangingEventManager.cs
- SpeechRecognizer.cs
- DataPointer.cs
- PreviewKeyDownEventArgs.cs
- ConnectorDragDropGlyph.cs
- UrlAuthFailedErrorFormatter.cs
- ListBoxItemWrapperAutomationPeer.cs
- StateItem.cs
- DropSourceBehavior.cs
- WindowsScrollBarBits.cs
- BatchStream.cs
- TabItemAutomationPeer.cs
- DataGridRow.cs
- DataPagerCommandEventArgs.cs
- JsonEncodingStreamWrapper.cs
- ProxyHwnd.cs
- LineBreak.cs
- SqlUDTStorage.cs
- VirtualPathData.cs
- ColumnBinding.cs
- ColumnResizeAdorner.cs
- ProfileSettings.cs
- ControlAdapter.cs
- HttpListener.cs
- HttpHandlerActionCollection.cs
- Publisher.cs
- SrgsElement.cs
- TouchesCapturedWithinProperty.cs
- QueryStatement.cs
- ContextMenuService.cs
- ComponentResourceManager.cs
- ScrollBarRenderer.cs
- ObjectDataSourceEventArgs.cs
- TextEditorMouse.cs
- Int64AnimationBase.cs
- SharedPerformanceCounter.cs
- RowCache.cs
- DbProviderFactories.cs
- WindowsListViewGroupHelper.cs
- URI.cs
- ReflectionUtil.cs
- WorkflowMarkupElementEventArgs.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- RecipientServiceModelSecurityTokenRequirement.cs
- ProfileSection.cs
- PropertySegmentSerializer.cs
- ToolStripPanelRow.cs
- SqlBuilder.cs
- WebPartZoneCollection.cs
- X509Utils.cs
- MDIWindowDialog.cs
- StorageSetMapping.cs
- VectorValueSerializer.cs
- SrgsElementList.cs
- HtmlTableRow.cs
- HttpListenerRequest.cs
- _SslSessionsCache.cs
- ColumnResult.cs
- ExtensionQuery.cs
- CompleteWizardStep.cs
- SystemUnicastIPAddressInformation.cs
- WindowsStreamSecurityUpgradeProvider.cs
- FirstMatchCodeGroup.cs
- AudioFormatConverter.cs