Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Button.cs
- EntityProviderServices.cs
- ShadowGlyph.cs
- ComponentDispatcher.cs
- XmlCodeExporter.cs
- SiteMapProvider.cs
- GridViewDeleteEventArgs.cs
- ServiceNotStartedException.cs
- SQLStringStorage.cs
- NullableFloatSumAggregationOperator.cs
- ObjectKeyFrameCollection.cs
- PrintController.cs
- ForwardPositionQuery.cs
- LogStream.cs
- RotateTransform.cs
- Attributes.cs
- TemplateNameScope.cs
- FixedSOMSemanticBox.cs
- CodeExporter.cs
- GlobalProxySelection.cs
- Utils.cs
- DebugView.cs
- AutomationPattern.cs
- MarkupExtensionParser.cs
- RootBuilder.cs
- counter.cs
- Image.cs
- WebBrowsableAttribute.cs
- VerificationException.cs
- SimpleWorkerRequest.cs
- SyndicationSerializer.cs
- XamlDesignerSerializationManager.cs
- Win32Exception.cs
- XpsPartBase.cs
- TaskFileService.cs
- GridViewHeaderRowPresenter.cs
- BuilderPropertyEntry.cs
- CryptoConfig.cs
- ResolveNameEventArgs.cs
- DataSet.cs
- SqlAliasesReferenced.cs
- UnmanagedMarshal.cs
- ExtendLockAsyncResult.cs
- MobileControlDesigner.cs
- WindowsSpinner.cs
- DefaultAutoFieldGenerator.cs
- ChangePassword.cs
- SimpleLine.cs
- Stacktrace.cs
- LassoSelectionBehavior.cs
- NonBatchDirectoryCompiler.cs
- QilDataSource.cs
- CodeCatchClause.cs
- SchemaImporterExtensionElement.cs
- RoleBoolean.cs
- SQLByteStorage.cs
- DropShadowBitmapEffect.cs
- TypeConverterHelper.cs
- AppDomainInfo.cs
- SqlRemoveConstantOrderBy.cs
- SortedList.cs
- ValueCollectionParameterReader.cs
- FixUpCollection.cs
- ProfileSettings.cs
- HierarchicalDataTemplate.cs
- VerificationAttribute.cs
- HyperLink.cs
- GPPOINT.cs
- InkCollectionBehavior.cs
- SessionStateModule.cs
- __Filters.cs
- PackWebRequestFactory.cs
- _PooledStream.cs
- OleDbCommand.cs
- FileLogRecordStream.cs
- Cursors.cs
- SecureUICommand.cs
- SqlUserDefinedAggregateAttribute.cs
- EncodingTable.cs
- LostFocusEventManager.cs
- VSWCFServiceContractGenerator.cs
- CookielessHelper.cs
- DetailsView.cs
- MergablePropertyAttribute.cs
- RegisteredScript.cs
- PersonalizationAdministration.cs
- SoapTypeAttribute.cs
- HttpHandlerActionCollection.cs
- SimpleWebHandlerParser.cs
- PlatformNotSupportedException.cs
- MessageHeader.cs
- FacetValues.cs
- SqlDataSourceView.cs
- FormsAuthenticationCredentials.cs
- ServiceBehaviorElement.cs
- CodeNamespace.cs
- RemotingConfigParser.cs
- AutoResetEvent.cs
- documentation.cs
- DSASignatureDeformatter.cs