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
- Verify.cs
- ConnectivityStatus.cs
- DoubleLink.cs
- RtfToXamlReader.cs
- GetUserPreferenceRequest.cs
- xmlfixedPageInfo.cs
- CompositeDataBoundControl.cs
- UnsafeMethods.cs
- mda.cs
- TreeViewTemplateSelector.cs
- InlinedAggregationOperatorEnumerator.cs
- StringDictionary.cs
- CalculatedColumn.cs
- loginstatus.cs
- MarkupWriter.cs
- AlternateViewCollection.cs
- ProgressBarBrushConverter.cs
- CommonDialog.cs
- Utils.cs
- ProcessModelInfo.cs
- CodeIdentifiers.cs
- WindowsFont.cs
- RuntimeConfig.cs
- AudioLevelUpdatedEventArgs.cs
- WebPartConnectionsEventArgs.cs
- ProviderBase.cs
- EndpointDispatcher.cs
- LocalBuilder.cs
- PageWrapper.cs
- XmlSchemaSimpleType.cs
- DataExchangeServiceBinder.cs
- DataColumnMapping.cs
- CapabilitiesUse.cs
- ResetableIterator.cs
- RegexFCD.cs
- DataSourceCacheDurationConverter.cs
- UseAttributeSetsAction.cs
- DataViewManager.cs
- DesignerDataRelationship.cs
- SrgsSemanticInterpretationTag.cs
- OuterGlowBitmapEffect.cs
- EventLogPermissionAttribute.cs
- EdmTypeAttribute.cs
- TextFormatterHost.cs
- CodeTypeReferenceExpression.cs
- PackagePart.cs
- DataGridViewRowConverter.cs
- XmlSchemaValidator.cs
- ScriptDescriptor.cs
- IsolatedStorageFile.cs
- XmlKeywords.cs
- PeerPresenceInfo.cs
- QilParameter.cs
- DiagnosticSection.cs
- IconBitmapDecoder.cs
- MissingMethodException.cs
- XmlSchemaGroupRef.cs
- SerialPort.cs
- FrameworkContextData.cs
- _StreamFramer.cs
- CompoundFileStorageReference.cs
- SqlDataAdapter.cs
- ISSmlParser.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- MailWebEventProvider.cs
- XmlArrayItemAttribute.cs
- ImageDesigner.cs
- DetailsViewPageEventArgs.cs
- XmlProcessingInstruction.cs
- DocumentPaginator.cs
- HostProtectionPermission.cs
- x509store.cs
- OdbcCommand.cs
- PrintPreviewControl.cs
- Viewport3DAutomationPeer.cs
- LinqToSqlWrapper.cs
- DbConnectionOptions.cs
- HttpListenerPrefixCollection.cs
- ByteAnimation.cs
- InputProcessorProfiles.cs
- ProcessingInstructionAction.cs
- DrawingState.cs
- TableAdapterManagerMethodGenerator.cs
- MessageEnumerator.cs
- MouseEventArgs.cs
- ProxyWebPart.cs
- SqlNotificationEventArgs.cs
- ScrollableControl.cs
- OleDbFactory.cs
- DataGrid.cs
- Listbox.cs
- Accessible.cs
- LookupNode.cs
- QuaternionAnimation.cs
- TrackingValidationObjectDictionary.cs
- ELinqQueryState.cs
- _BufferOffsetSize.cs
- CapiSymmetricAlgorithm.cs
- TemplateKeyConverter.cs
- AnnotationAuthorChangedEventArgs.cs