Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AnnotationService.cs
- ExpressionVisitor.cs
- ExponentialEase.cs
- SchemaImporter.cs
- TimeZone.cs
- DataErrorValidationRule.cs
- GeneralTransform3DTo2D.cs
- RectangleHotSpot.cs
- GlobalizationSection.cs
- UIElementAutomationPeer.cs
- StylusCaptureWithinProperty.cs
- InfoCard.cs
- DefaultAsyncDataDispatcher.cs
- TabControlToolboxItem.cs
- PermissionSet.cs
- ChangePasswordDesigner.cs
- PenContext.cs
- Encoder.cs
- IPHostEntry.cs
- PreviousTrackingServiceAttribute.cs
- CreateUserWizardDesigner.cs
- HttpException.cs
- mansign.cs
- ScrollBar.cs
- HttpWriter.cs
- NeutralResourcesLanguageAttribute.cs
- FileDialogCustomPlace.cs
- PathSegmentCollection.cs
- TextTreeTextElementNode.cs
- Queue.cs
- RightsManagementInformation.cs
- LinqDataSourceDisposeEventArgs.cs
- ControlEvent.cs
- DataSetSchema.cs
- UriTemplateMatchException.cs
- ServiceModelEnumValidatorAttribute.cs
- Parameter.cs
- WebPartUserCapability.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- SessionEndedEventArgs.cs
- RegexStringValidatorAttribute.cs
- SettingsBase.cs
- Main.cs
- HtmlInputHidden.cs
- SectionXmlInfo.cs
- HttpVersion.cs
- ReaderOutput.cs
- ZoneButton.cs
- HtmlInputFile.cs
- AlgoModule.cs
- HandlerFactoryCache.cs
- ObjectStateFormatter.cs
- OleDbDataAdapter.cs
- ISAPIWorkerRequest.cs
- Decorator.cs
- MetabaseServerConfig.cs
- BamlTreeUpdater.cs
- SapiGrammar.cs
- XamlPoint3DCollectionSerializer.cs
- TextEditorSpelling.cs
- AssemblyInfo.cs
- CommandExpr.cs
- DataSourceSerializationException.cs
- TemplateKeyConverter.cs
- WebControl.cs
- MessagePartDescriptionCollection.cs
- DesignerTransactionCloseEvent.cs
- CodeCompileUnit.cs
- ButtonBaseDesigner.cs
- CaretElement.cs
- RightsManagementPermission.cs
- MissingMemberException.cs
- VariantWrapper.cs
- LinqDataSourceView.cs
- FontStretch.cs
- PagerSettings.cs
- XmlNodeChangedEventManager.cs
- MetadataPropertyCollection.cs
- UIElement3DAutomationPeer.cs
- DiagnosticTrace.cs
- UIElementHelper.cs
- WebPartEditorCancelVerb.cs
- JsonStringDataContract.cs
- WorkflowApplication.cs
- IPEndPoint.cs
- HostingEnvironmentWrapper.cs
- ChineseLunisolarCalendar.cs
- PropertyManager.cs
- ConnectionString.cs
- MultipleViewPattern.cs
- PathFigure.cs
- LoginCancelEventArgs.cs
- ImageConverter.cs
- MenuItemCollection.cs
- ControlCachePolicy.cs
- TimeSpanSecondsConverter.cs
- HttpCapabilitiesEvaluator.cs
- OneOfScalarConst.cs
- XmlMtomWriter.cs
- TextInfo.cs