IApplicationPreloadUtil.GetApplicationPreloadInfo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets initialization data that is required in order to preload an application. This method is called by ASP.NET.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void GetApplicationPreloadInfo(System::String ^ context, [Runtime::InteropServices::Out] bool % enabled, [Runtime::InteropServices::Out] System::String ^ % startupObjType, [Runtime::InteropServices::Out] cli::array <System::String ^> ^ % parametersForStartupObj);
public void GetApplicationPreloadInfo (string context, out bool enabled, out string startupObjType, out string[] parametersForStartupObj);
abstract member GetApplicationPreloadInfo : string * bool * string * String[] -> unit
Public Sub GetApplicationPreloadInfo (context As String, ByRef enabled As Boolean, ByRef startupObjType As String, ByRef parametersForStartupObj As String())
Parameters
- context
- String
The application context.
- enabled
- Boolean
When this method returns, contains true
to indicate that the application has to be preloaded; otherwise, false
. This parameter is passed uninitialized.
- startupObjType
- String
When this method returns, contains a string that identifies the managed type that is part of the preload process. This parameter is passed uninitialized.
- parametersForStartupObj
- String[]
When this method returns, contains the data that will be passed to the preloaded type. This parameter is passed uninitialized.