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
- CustomErrorsSection.cs
- SiteMapPath.cs
- TaiwanCalendar.cs
- CodePageUtils.cs
- AliasedSlot.cs
- ReaderOutput.cs
- AssemblyHash.cs
- Stream.cs
- ActivityTypeDesigner.xaml.cs
- lengthconverter.cs
- LayoutTableCell.cs
- Thickness.cs
- PropertyItem.cs
- IPCCacheManager.cs
- ItemCollection.cs
- NegatedConstant.cs
- MessageQueueAccessControlEntry.cs
- StringResourceManager.cs
- Int16AnimationUsingKeyFrames.cs
- hresults.cs
- InvokeMethodActivity.cs
- PasswordPropertyTextAttribute.cs
- DiscardableAttribute.cs
- HScrollBar.cs
- DataViewListener.cs
- RemoteWebConfigurationHostServer.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- PublisherIdentityPermission.cs
- ListViewGroupConverter.cs
- DropShadowBitmapEffect.cs
- StretchValidation.cs
- ScriptingJsonSerializationSection.cs
- AuthenticationServiceManager.cs
- FileUtil.cs
- WebEncodingValidatorAttribute.cs
- C14NUtil.cs
- TreePrinter.cs
- CryptoHelper.cs
- ConfigurationStrings.cs
- VisualTarget.cs
- QuaternionAnimationUsingKeyFrames.cs
- GridViewCancelEditEventArgs.cs
- DataGridViewCellEventArgs.cs
- WindowsGraphics2.cs
- InstanceCollisionException.cs
- StaticSiteMapProvider.cs
- MatrixAnimationUsingPath.cs
- XmlSchemaAttribute.cs
- StateItem.cs
- StreamedWorkflowDefinitionContext.cs
- TypeDescriptor.cs
- _SSPISessionCache.cs
- Point.cs
- StrokeCollectionConverter.cs
- Slider.cs
- PropertyOrder.cs
- SecurityValidationBehavior.cs
- AutomationEvent.cs
- PanningMessageFilter.cs
- OutputCacheProfile.cs
- EllipseGeometry.cs
- PaintEvent.cs
- FtpWebResponse.cs
- WindowsListViewSubItem.cs
- SqlDataSourceStatusEventArgs.cs
- SqlFactory.cs
- WorkflowViewElement.cs
- SEHException.cs
- CustomCredentialPolicy.cs
- StyleCollectionEditor.cs
- GridViewRowCollection.cs
- webproxy.cs
- XmlWhitespace.cs
- CodeDirectoryCompiler.cs
- ResXBuildProvider.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- StaticDataManager.cs
- MissingFieldException.cs
- BitmapEffect.cs
- WebPartHeaderCloseVerb.cs
- FontSizeConverter.cs
- ClientRuntimeConfig.cs
- _HeaderInfo.cs
- BinaryFormatterWriter.cs
- ToolStripSeparatorRenderEventArgs.cs
- CqlErrorHelper.cs
- XPathExpr.cs
- FileDialogCustomPlace.cs
- ComNativeDescriptor.cs
- EventLogTraceListener.cs
- ImportOptions.cs
- WebPageTraceListener.cs
- ConnectionStringsSection.cs
- CrossContextChannel.cs
- ContainerAction.cs
- WebPartHelpVerb.cs
- DurableServiceAttribute.cs
- PointLightBase.cs
- ExceptionRoutedEventArgs.cs
- TraceInternal.cs