VirtualPathProvider.Initialize Method

Definition

Initializes the VirtualPathProvider instance.

C#
protected virtual void Initialize();

Examples

The following code example is an implementation of the Initialize method that sets the path to a data file from the application's HostingEnvironment instance. For the full code required to run the example, see the Example section of the VirtualPathProvider class overview topic.

C#
protected override void Initialize()
{
  // Set the datafile path relative to the application's path.
  dataFile = HostingEnvironment.ApplicationPhysicalPath + "App_Data\\XMLData.xml";
}

Remarks

The Initialize method is called after the provider is registered with the ASP.NET compilation system. The Initialize method is used to provide any initialization required after the VirtualPathProvider instance is placed into the environment the application occupies.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1