Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaExternal.cs / 1 / XmlSchemaExternal.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Collections;
using System.ComponentModel;
using System.Xml.Serialization;
///
public abstract class XmlSchemaExternal : XmlSchemaObject {
string location;
Uri baseUri;
XmlSchema schema;
string id;
XmlAttribute[] moreAttributes;
Compositor compositor;
///
[XmlAttribute("schemaLocation", DataType="anyURI")]
public string SchemaLocation {
get { return location; }
set { location = value; }
}
///
[XmlIgnore]
public XmlSchema Schema {
get { return schema; }
set { schema = value; }
}
///
[XmlAttribute("id", DataType="ID")]
public string Id {
get { return id; }
set { id = value; }
}
///
[XmlAnyAttribute]
public XmlAttribute[] UnhandledAttributes {
get { return moreAttributes; }
set { moreAttributes = value; }
}
[XmlIgnore]
internal Uri BaseUri {
get { return baseUri; }
set { baseUri = value; }
}
[XmlIgnore]
internal override string IdAttribute {
get { return Id; }
set { Id = value; }
}
internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes) {
this.moreAttributes = moreAttributes;
}
internal Compositor Compositor {
get {
return compositor;
}
set {
compositor = value;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Schema {
using System.Collections;
using System.ComponentModel;
using System.Xml.Serialization;
///
public abstract class XmlSchemaExternal : XmlSchemaObject {
string location;
Uri baseUri;
XmlSchema schema;
string id;
XmlAttribute[] moreAttributes;
Compositor compositor;
///
[XmlAttribute("schemaLocation", DataType="anyURI")]
public string SchemaLocation {
get { return location; }
set { location = value; }
}
///
[XmlIgnore]
public XmlSchema Schema {
get { return schema; }
set { schema = value; }
}
///
[XmlAttribute("id", DataType="ID")]
public string Id {
get { return id; }
set { id = value; }
}
///
[XmlAnyAttribute]
public XmlAttribute[] UnhandledAttributes {
get { return moreAttributes; }
set { moreAttributes = value; }
}
[XmlIgnore]
internal Uri BaseUri {
get { return baseUri; }
set { baseUri = value; }
}
[XmlIgnore]
internal override string IdAttribute {
get { return Id; }
set { Id = value; }
}
internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes) {
this.moreAttributes = moreAttributes;
}
internal Compositor Compositor {
get {
return compositor;
}
set {
compositor = value;
}
}
}
}
// 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
- InsufficientMemoryException.cs
- FormatConvertedBitmap.cs
- ZipIOModeEnforcingStream.cs
- TableLayoutColumnStyleCollection.cs
- SourceFileInfo.cs
- ToolboxItemSnapLineBehavior.cs
- CompilationUtil.cs
- MaterialGroup.cs
- TextSegment.cs
- SchemaNames.cs
- DataReceivedEventArgs.cs
- WmpBitmapEncoder.cs
- PerformanceCounterManager.cs
- InkCanvasSelection.cs
- TakeOrSkipWhileQueryOperator.cs
- WebDescriptionAttribute.cs
- RepeatButton.cs
- Matrix3DConverter.cs
- LoginCancelEventArgs.cs
- XmlWrappingReader.cs
- _ProxyChain.cs
- SqlConnectionHelper.cs
- ComponentCommands.cs
- TdsParser.cs
- Error.cs
- TextBoxAutomationPeer.cs
- TcpAppDomainProtocolHandler.cs
- SafeLibraryHandle.cs
- QueueProcessor.cs
- UrlAuthFailedErrorFormatter.cs
- GeneralEndpointIdentity.cs
- CachedPathData.cs
- validation.cs
- AddingNewEventArgs.cs
- ListViewDeleteEventArgs.cs
- AlternateViewCollection.cs
- SQLSingle.cs
- TextTreeRootTextBlock.cs
- CodeEntryPointMethod.cs
- DictionaryEntry.cs
- LiteralText.cs
- CssTextWriter.cs
- ThreadStartException.cs
- RadioButtonStandardAdapter.cs
- GlyphElement.cs
- GPRECTF.cs
- DataBoundLiteralControl.cs
- PeerName.cs
- IChannel.cs
- ModifierKeysConverter.cs
- TreeViewItem.cs
- SystemResourceHost.cs
- CompositeDataBoundControl.cs
- SafeNativeMethods.cs
- TiffBitmapDecoder.cs
- RemoteArgument.cs
- UrlPath.cs
- LicenseManager.cs
- WmlTextViewAdapter.cs
- DateTimeSerializationSection.cs
- DeferrableContent.cs
- XmlCodeExporter.cs
- NGCSerializer.cs
- QueryStringParameter.cs
- PropertySourceInfo.cs
- TargetException.cs
- WindowsListViewItemCheckBox.cs
- ProxyWebPartConnectionCollection.cs
- MultiByteCodec.cs
- DoubleIndependentAnimationStorage.cs
- InstanceHandleConflictException.cs
- CroppedBitmap.cs
- _OverlappedAsyncResult.cs
- ImportedNamespaceContextItem.cs
- XmlElementAttributes.cs
- SqlCommand.cs
- IisTraceListener.cs
- SafeFileHandle.cs
- RankException.cs
- HtmlInputCheckBox.cs
- Image.cs
- Stylus.cs
- LockedActivityGlyph.cs
- LinqDataSourceHelper.cs
- AssociatedControlConverter.cs
- ReferenceEqualityComparer.cs
- MouseButtonEventArgs.cs
- SelectionEditor.cs
- Int32RectConverter.cs
- TraceListeners.cs
- Pair.cs
- DispatcherExceptionEventArgs.cs
- BrushConverter.cs
- ServiceDesigner.xaml.cs
- AssemblyResourceLoader.cs
- SafeProcessHandle.cs
- TraceListeners.cs
- ServicePointManager.cs
- SecurityBindingElementImporter.cs
- DataBoundControlAdapter.cs