Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XmlUrlResolver.cs / 1 / XmlUrlResolver.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System; using System.IO; using System.Net; using System.Threading; using System.Security.Permissions; using System.Security.Policy; using System.Security; ////// /// public class XmlUrlResolver : XmlResolver { static object s_DownloadManager; ICredentials _credentials; static XmlDownloadManager DownloadManager { get { if ( s_DownloadManager == null ) { object dm = new XmlDownloadManager(); Interlocked.CompareExchange( ref s_DownloadManager, dm, null ); } return (XmlDownloadManager)s_DownloadManager; } } // Construction ///Resolves external XML resources named by a /// Uniform Resource Identifier (URI). ////// /// public XmlUrlResolver() { } //UE attension ////// Creates a new instance of the XmlUrlResolver class. /// ////// /// public override ICredentials Credentials { set { _credentials = value; } } // Resource resolution ///[To be supplied.] ////// /// public override Object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn) { if (ofObjectToReturn == null || ofObjectToReturn == typeof(System.IO.Stream)) { return DownloadManager.GetStream(absoluteUri, _credentials); } else { throw new XmlException(Res.Xml_UnsupportedClass, string.Empty); } } ///Maps a /// URI to an Object containing the actual resource. ////// /// [PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")] public override Uri ResolveUri(Uri baseUri, string relativeUri){ return base.ResolveUri(baseUri, relativeUri); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SpecularMaterial.cs
- InkCollectionBehavior.cs
- RegexCode.cs
- DiscreteKeyFrames.cs
- OleDbEnumerator.cs
- MatrixAnimationUsingKeyFrames.cs
- FormattedText.cs
- CallTemplateAction.cs
- CodeConditionStatement.cs
- BitStack.cs
- NavigationPropertyEmitter.cs
- TemplatingOptionsDialog.cs
- HtmlTextBoxAdapter.cs
- OracleCommandBuilder.cs
- ChildrenQuery.cs
- FileVersionInfo.cs
- XmlStreamStore.cs
- TagPrefixInfo.cs
- SqlFlattener.cs
- WebFaultClientMessageInspector.cs
- Literal.cs
- ProfileSection.cs
- FlowLayoutPanel.cs
- VectorValueSerializer.cs
- RijndaelManagedTransform.cs
- WebResponse.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- TextContainerChangeEventArgs.cs
- DocumentSequence.cs
- WmpBitmapDecoder.cs
- HashAlgorithm.cs
- BitmapCacheBrush.cs
- ActivityDesignerLayoutSerializers.cs
- OverlappedAsyncResult.cs
- MetaColumn.cs
- MemberListBinding.cs
- SecurityElement.cs
- XhtmlBasicValidatorAdapter.cs
- ExtensionElementCollection.cs
- Column.cs
- DataSourceSelectArguments.cs
- FontStretch.cs
- UpdateManifestForBrowserApplication.cs
- MetadataSource.cs
- UiaCoreTypesApi.cs
- AxHost.cs
- ReflectionTypeLoadException.cs
- TextRunCache.cs
- ViewLoader.cs
- NamespaceDecl.cs
- RawKeyboardInputReport.cs
- InputBinding.cs
- DomNameTable.cs
- NotifyIcon.cs
- PersonalizationDictionary.cs
- IDReferencePropertyAttribute.cs
- GPRECTF.cs
- SafeThreadHandle.cs
- RelationalExpressions.cs
- AdPostCacheSubstitution.cs
- XmlCharType.cs
- XPathNavigatorKeyComparer.cs
- EnumValidator.cs
- Stylus.cs
- TempEnvironment.cs
- FontNameConverter.cs
- RuntimeHelpers.cs
- StubHelpers.cs
- QueryInterceptorAttribute.cs
- Tablet.cs
- StylusPointDescription.cs
- SetterBaseCollection.cs
- DataGridViewAdvancedBorderStyle.cs
- AttachedAnnotation.cs
- LinqDataSourceStatusEventArgs.cs
- DataTableExtensions.cs
- Margins.cs
- AsyncCompletedEventArgs.cs
- _ProxyRegBlob.cs
- TaskFileService.cs
- BulletChrome.cs
- GroupDescription.cs
- CssStyleCollection.cs
- XmlParserContext.cs
- RpcAsyncResult.cs
- XamlFrame.cs
- EFColumnProvider.cs
- ListViewSelectEventArgs.cs
- Size.cs
- ProtocolsConfiguration.cs
- SchemaImporterExtensionElementCollection.cs
- CreateUserWizard.cs
- SchemaDeclBase.cs
- MessageHeaderT.cs
- AuthenticationSection.cs
- DataList.cs
- XmlSchemaValidator.cs
- RegexFCD.cs
- QilUnary.cs
- TableSectionStyle.cs