IApplicationPreloadUtil.GetApplicationPreloadInfo 方法

定义

获取预加载应用程序所需的初始化数据。 此方法由 ASP.NET 调用。

此 API 支持产品基础结构,不能在代码中直接使用。

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())

参数

context
String

应用程序上下文。

enabled
Boolean

此方法返回时,包含 true 以表示应用程序必须预加载;否则为 false。 此参数未经初始化即被传递。

startupObjType
String

此方法返回时,包含识别属于预加载进程的托管类型的字符串。 此参数未经初始化即被传递。

parametersForStartupObj
String[]

此方法返回时,包含将被传递到预加载类型的数据。 此参数未经初始化即被传递。

适用于