BuildProviderResultFlags Enum

Definition

Indicates the required behavior when a virtual path is built.

This enumeration supports a bitwise combination of its member values.

public enum class BuildProviderResultFlags
[System.Flags]
public enum BuildProviderResultFlags
[<System.Flags>]
type BuildProviderResultFlags = 
Public Enum BuildProviderResultFlags
Inheritance
BuildProviderResultFlags
Attributes

Fields

Default 0

The default value; no special action is required after compilation.

ShutdownAppDomainOnChange 1

The compilation of the virtual path requires the containing AppDomain to be unloaded and restarted. This is only used in advanced compilation scenarios; typically, you should use the Default value.

Remarks

The BuildProviderResultFlags values are used to indicate the results from the BuildProvider.GetResultFlags method. The enumeration values indicate actions that are required after a virtual path is built within the ASP.NET build environment. The BuildProviderResultFlags values are used by the ASP.NET build environment when using instances of the BuildProvider class to build files and load the compiled assemblies.

Applies to

See also