Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / schema / XmlSchemaExternal.cs / 1305376 / 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
- Int32Rect.cs
- AstNode.cs
- ListControlConvertEventArgs.cs
- DbgUtil.cs
- SharedPersonalizationStateInfo.cs
- BitmapSizeOptions.cs
- SqlNotificationRequest.cs
- NetworkInformationException.cs
- LicenseContext.cs
- System.Data_BID.cs
- AsymmetricCryptoHandle.cs
- FlowchartDesignerCommands.cs
- SyndicationDeserializer.cs
- TextEffectCollection.cs
- Itemizer.cs
- MD5.cs
- PeerNearMe.cs
- QuaternionValueSerializer.cs
- StylusCaptureWithinProperty.cs
- MbpInfo.cs
- ConstructorBuilder.cs
- COM2EnumConverter.cs
- IgnoreSectionHandler.cs
- OrderedDictionaryStateHelper.cs
- Literal.cs
- ActiveXMessageFormatter.cs
- DbSetClause.cs
- RadioButtonStandardAdapter.cs
- BitmapEffectRenderDataResource.cs
- WindowsStatusBar.cs
- SlotInfo.cs
- ZeroOpNode.cs
- SafeSystemMetrics.cs
- CollectionViewSource.cs
- EndpointDiscoveryMetadata11.cs
- MouseGestureConverter.cs
- ThousandthOfEmRealPoints.cs
- IdentitySection.cs
- PathSegmentCollection.cs
- TemplateNodeContextMenu.cs
- EventManager.cs
- SplashScreen.cs
- DataRowComparer.cs
- HttpWebRequest.cs
- serverconfig.cs
- X509WindowsSecurityToken.cs
- SamlSecurityToken.cs
- BamlRecordHelper.cs
- SqlDataSourceDesigner.cs
- PageThemeBuildProvider.cs
- _SecureChannel.cs
- Boolean.cs
- IntPtr.cs
- RenderTargetBitmap.cs
- ThreadStaticAttribute.cs
- ResourceDictionaryCollection.cs
- TextTreeUndo.cs
- ContainerVisual.cs
- DataExpression.cs
- FigureHelper.cs
- PathSegmentCollection.cs
- LinkDescriptor.cs
- LoginView.cs
- RoleServiceManager.cs
- DocComment.cs
- CmsInterop.cs
- SqlIdentifier.cs
- XmlSchemaCompilationSettings.cs
- QueryableFilterRepeater.cs
- ConstraintStruct.cs
- KnownBoxes.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- Part.cs
- WebPartConnectionsCloseVerb.cs
- MessageSecurityVersion.cs
- SamlEvidence.cs
- TrackingProfile.cs
- JoinTreeSlot.cs
- LinkUtilities.cs
- HelpHtmlBuilder.cs
- ListenerElementsCollection.cs
- ExceptionUtil.cs
- Connection.cs
- HiddenFieldPageStatePersister.cs
- WebPartRestoreVerb.cs
- TaskFormBase.cs
- MergeLocalizationDirectives.cs
- SystemInfo.cs
- CheckBoxBaseAdapter.cs
- WeakHashtable.cs
- SerializerDescriptor.cs
- AttributeUsageAttribute.cs
- CompensationDesigner.cs
- AssociatedControlConverter.cs
- columnmapfactory.cs
- Pen.cs
- BuildProvider.cs
- GridViewColumn.cs
- DataColumn.cs
- StringConverter.cs