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
- DependencyProperty.cs
- ClientRoleProvider.cs
- CompilerScope.Storage.cs
- ScrollBar.cs
- ConnectionDemuxer.cs
- Registry.cs
- SamlEvidence.cs
- WriteableBitmap.cs
- PointAnimationUsingPath.cs
- PrintEvent.cs
- OleStrCAMarshaler.cs
- PaginationProgressEventArgs.cs
- objectresult_tresulttype.cs
- Transform3DGroup.cs
- ProfileSection.cs
- PointCollectionConverter.cs
- ProcessStartInfo.cs
- ConfigurationStrings.cs
- Int64AnimationBase.cs
- SupportsEventValidationAttribute.cs
- ObjectDataSourceDesigner.cs
- ExceptionHandlerDesigner.cs
- ContainerCodeDomSerializer.cs
- TimeSpan.cs
- StickyNoteContentControl.cs
- DbConnectionOptions.cs
- WindowsProgressbar.cs
- PageParser.cs
- BaseCollection.cs
- BooleanStorage.cs
- NameValuePair.cs
- UniformGrid.cs
- TableParaClient.cs
- SinglePageViewer.cs
- DataServiceOperationContext.cs
- InvokeGenerator.cs
- _DigestClient.cs
- EncoderParameters.cs
- BuilderPropertyEntry.cs
- MemberHolder.cs
- SmiXetterAccessMap.cs
- EpmHelper.cs
- WebPartVerbCollection.cs
- RSAOAEPKeyExchangeFormatter.cs
- RotateTransform3D.cs
- Util.cs
- TableMethodGenerator.cs
- CompareValidator.cs
- TransportChannelFactory.cs
- DataGridViewDesigner.cs
- PenThreadWorker.cs
- CaseInsensitiveComparer.cs
- RawContentTypeMapper.cs
- UnaryNode.cs
- RtfToken.cs
- RegexMatchCollection.cs
- PagedControl.cs
- EventToken.cs
- ReflectionTypeLoadException.cs
- NamespaceQuery.cs
- TreeNode.cs
- X509SubjectKeyIdentifierClause.cs
- AssertValidation.cs
- OleDbEnumerator.cs
- AutomationIdentifier.cs
- RectAnimationClockResource.cs
- TextTreeUndo.cs
- SqlParameterCollection.cs
- TypeExtensions.cs
- ProcessProtocolHandler.cs
- TextBoxBase.cs
- XmlSchemaInclude.cs
- ToolStripDesignerAvailabilityAttribute.cs
- uribuilder.cs
- CommandLineParser.cs
- PrimitiveXmlSerializers.cs
- CodeDirectiveCollection.cs
- OleDbSchemaGuid.cs
- categoryentry.cs
- KeyGestureConverter.cs
- TitleStyle.cs
- SingleConverter.cs
- PropertyGridCommands.cs
- Material.cs
- RequestStatusBarUpdateEventArgs.cs
- BindableTemplateBuilder.cs
- UrlAuthFailedErrorFormatter.cs
- ObjectConverter.cs
- ByteStreamGeometryContext.cs
- IncrementalHitTester.cs
- UnsafeNativeMethods.cs
- Calendar.cs
- EventMappingSettingsCollection.cs
- ReferencedCollectionType.cs
- ControlSerializer.cs
- TextServicesHost.cs
- APCustomTypeDescriptor.cs
- WebResourceUtil.cs
- ValueHandle.cs
- ComponentResourceManager.cs