Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 RegisterVirtualPathProvider Method
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
HostingEnvironment..::.RegisterVirtualPathProvider Method

Updated: November 2007

Registers a new VirtualPathProvider instance with the ASP.NET compilation system.

Namespace:  System.Web.Hosting
Assembly:  System.Web (in System.Web.dll)

Visual Basic (Declaration)
<AspNetHostingPermissionAttribute(SecurityAction.Demand, Level := AspNetHostingPermissionLevel.High)> _
Public Shared Sub RegisterVirtualPathProvider ( _
    virtualPathProvider As VirtualPathProvider _
)
Visual Basic (Usage)
Dim virtualPathProvider As VirtualPathProvider

HostingEnvironment.RegisterVirtualPathProvider(virtualPathProvider)
C#
[AspNetHostingPermissionAttribute(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.High)]
public static void RegisterVirtualPathProvider(
    VirtualPathProvider virtualPathProvider
)
Visual C++
[AspNetHostingPermissionAttribute(SecurityAction::Demand, Level = AspNetHostingPermissionLevel::High)]
public:
static void RegisterVirtualPathProvider(
    VirtualPathProvider^ virtualPathProvider
)
J#
/** @attribute AspNetHostingPermissionAttribute(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.High) */
public static void RegisterVirtualPathProvider(
    VirtualPathProvider virtualPathProvider
)
JScript
public static function RegisterVirtualPathProvider(
    virtualPathProvider : VirtualPathProvider
)

Parameters

virtualPathProvider
Type: System.Web.Hosting..::.VirtualPathProvider

The new VirtualPathProvider instance to add to the compilation system.

The RegisterVirtualPathProvider method adds the specified VirtualPathProvider instance to the application's list of virtual-path providers.

For more information, see the VirtualPathProvider class overview.

The following code example is part of an application startup method that registers a custom VirtualPathProvider instance with the compilation system. For the full code required to run the example, see the Example section of the VirtualPathProvider class overview topic.

Visual Basic
Dim sampleProvider As SamplePathProvider = New SamplePathProvider()
HostingEnvironment.RegisterVirtualPathProvider(sampleProvider)

C#
SamplePathProvider sampleProvider = new SamplePathProvider();
HostingEnvironment.RegisterVirtualPathProvider(sampleProvider);

Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker