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
- ContentElement.cs
- AppearanceEditorPart.cs
- GridViewColumnHeader.cs
- ChangeTracker.cs
- UxThemeWrapper.cs
- Compiler.cs
- ContractMapping.cs
- UnmanagedBitmapWrapper.cs
- RadioButtonFlatAdapter.cs
- TransactionScope.cs
- cookiecollection.cs
- SafeCertificateContext.cs
- HierarchicalDataBoundControlAdapter.cs
- Dispatcher.cs
- SessionConnectionReader.cs
- WbemProvider.cs
- MD5.cs
- DataGridViewColumnDesigner.cs
- columnmapkeybuilder.cs
- AnnotationResourceCollection.cs
- CLRBindingWorker.cs
- HandlerWithFactory.cs
- TreeViewItem.cs
- AdapterDictionary.cs
- EnumBuilder.cs
- SubMenuStyleCollection.cs
- BCLDebug.cs
- Stroke.cs
- XmlSchemaGroup.cs
- RulePatternOps.cs
- DispatcherFrame.cs
- controlskin.cs
- UnhandledExceptionEventArgs.cs
- XmlQueryRuntime.cs
- MergeLocalizationDirectives.cs
- ActivityTrace.cs
- EntityConnectionStringBuilder.cs
- XsltSettings.cs
- ConnectAlgorithms.cs
- SqlMultiplexer.cs
- BinHexEncoder.cs
- ExceptQueryOperator.cs
- TemplateContentLoader.cs
- ExpressionConverter.cs
- EnlistmentTraceIdentifier.cs
- DrawingImage.cs
- ArraySet.cs
- processwaithandle.cs
- ConfigurationStrings.cs
- TextServicesCompartmentEventSink.cs
- VirtualPathUtility.cs
- DashStyle.cs
- VirtualDirectoryMappingCollection.cs
- TextContainerChangeEventArgs.cs
- ProviderUtil.cs
- CollectionsUtil.cs
- ProfileInfo.cs
- WebHttpSecurity.cs
- TraceUtils.cs
- PriorityQueue.cs
- MimeBasePart.cs
- BevelBitmapEffect.cs
- ObjectQuery_EntitySqlExtensions.cs
- ReflectionTypeLoadException.cs
- SimpleMailWebEventProvider.cs
- DelegateSerializationHolder.cs
- DataBoundControlHelper.cs
- XmlILStorageConverter.cs
- Perspective.cs
- DataGridTextBoxColumn.cs
- DocumentOrderQuery.cs
- DesignerLinkAdapter.cs
- DataViewManager.cs
- HttpResponseHeader.cs
- QuinticEase.cs
- ProjectedWrapper.cs
- FileLevelControlBuilderAttribute.cs
- DataSourceControl.cs
- SessionIDManager.cs
- NavigationExpr.cs
- ExpressionBuilderCollection.cs
- SettingsPropertyIsReadOnlyException.cs
- HttpHandlerActionCollection.cs
- BaseValidatorDesigner.cs
- SecurityTokenException.cs
- EditorPart.cs
- GZipDecoder.cs
- Util.cs
- OutputScopeManager.cs
- ObjectHandle.cs
- CompilerState.cs
- DocumentViewerBase.cs
- BaseParagraph.cs
- EncryptedPackageFilter.cs
- UidManager.cs
- XsltLoader.cs
- CopyOfAction.cs
- AttributeExtensions.cs
- BitmapEffectGroup.cs
- RelationshipNavigation.cs