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
- Button.cs
- QueueProcessor.cs
- TextDecorationCollection.cs
- ToolStripItemClickedEventArgs.cs
- InfoCardAsymmetricCrypto.cs
- LinqExpressionNormalizer.cs
- ColorIndependentAnimationStorage.cs
- ProxyGenerationError.cs
- DataStreamFromComStream.cs
- TypeContext.cs
- ObjectCloneHelper.cs
- LayoutExceptionEventArgs.cs
- DrawingState.cs
- PaintValueEventArgs.cs
- Grammar.cs
- ExpressionList.cs
- Italic.cs
- BamlResourceSerializer.cs
- PostBackTrigger.cs
- _NetRes.cs
- Misc.cs
- WebZone.cs
- FixedBufferAttribute.cs
- WSDualHttpBindingCollectionElement.cs
- SByte.cs
- Block.cs
- UrlPath.cs
- BoolExpr.cs
- CompositionAdorner.cs
- Content.cs
- GridSplitter.cs
- MissingMemberException.cs
- SystemBrushes.cs
- XNameTypeConverter.cs
- TreeIterator.cs
- Win32SafeHandles.cs
- WebPartCollection.cs
- InvokeSchedule.cs
- InteropTrackingRecord.cs
- Exceptions.cs
- DigestTraceRecordHelper.cs
- OleDbTransaction.cs
- XmlILModule.cs
- SafeSystemMetrics.cs
- basecomparevalidator.cs
- WindowsEditBoxRange.cs
- CommandDevice.cs
- NavigatingCancelEventArgs.cs
- ErrorStyle.cs
- JournalEntry.cs
- ConsumerConnectionPoint.cs
- XmlNamespaceManager.cs
- EntitySqlException.cs
- ActivationArguments.cs
- HttpContextWrapper.cs
- ProtocolViolationException.cs
- CustomLineCap.cs
- CaseInsensitiveOrdinalStringComparer.cs
- SqlWriter.cs
- TextStore.cs
- ShapeTypeface.cs
- ObjectRef.cs
- CachedCompositeFamily.cs
- TextUtf8RawTextWriter.cs
- WebSysDescriptionAttribute.cs
- MultiAsyncResult.cs
- BigInt.cs
- AuthenticationConfig.cs
- PrtCap_Reader.cs
- BevelBitmapEffect.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- DelayedRegex.cs
- XmlWrappingWriter.cs
- ToolStripOverflow.cs
- MailAddress.cs
- AttachedPropertyInfo.cs
- UIElementCollection.cs
- DPCustomTypeDescriptor.cs
- ScrollItemPattern.cs
- MobileListItem.cs
- ClientFormsAuthenticationCredentials.cs
- CombinedHttpChannel.cs
- IntPtr.cs
- SmtpClient.cs
- KeyEventArgs.cs
- AssertFilter.cs
- UriParserTemplates.cs
- ScriptingJsonSerializationSection.cs
- RuntimeIdentifierPropertyAttribute.cs
- XPathNodeHelper.cs
- DbConnectionStringCommon.cs
- ADMembershipProvider.cs
- AttributeProviderAttribute.cs
- ProgressBarHighlightConverter.cs
- PartitionerStatic.cs
- CompareValidator.cs
- StringReader.cs
- NameNode.cs
- TextBoxBase.cs
- SecurityKeyEntropyMode.cs