BuildManager.GetCachedBuildDependencySet 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 ASP.NET 缓存中返回生成依赖项集。
重载
GetCachedBuildDependencySet(HttpContext, String) |
如果虚拟路径位于 ASP.NET 缓存中,则为虚拟路径返回生成依赖项集。 |
GetCachedBuildDependencySet(HttpContext, String, Boolean) |
如果虚拟路径位于 ASP.NET 缓存中,则为虚拟路径返回生成依赖项集,即使内容不是最新也是如此。 |
GetCachedBuildDependencySet(HttpContext, String)
如果虚拟路径位于 ASP.NET 缓存中,则为虚拟路径返回生成依赖项集。
public:
static System::Web::Compilation::BuildDependencySet ^ GetCachedBuildDependencySet(System::Web::HttpContext ^ context, System::String ^ virtualPath);
public static System.Web.Compilation.BuildDependencySet GetCachedBuildDependencySet (System.Web.HttpContext context, string virtualPath);
static member GetCachedBuildDependencySet : System.Web.HttpContext * string -> System.Web.Compilation.BuildDependencySet
Public Shared Function GetCachedBuildDependencySet (context As HttpContext, virtualPath As String) As BuildDependencySet
参数
- context
- HttpContext
请求的上下文。
- virtualPath
- String
确定生成依赖项集的虚拟路径。
返回
存储在缓存中的 BuildDependencySet 对象,或者,如果无法从缓存中检索 BuildDependencySet 对象,则为 null
。
另请参阅
适用于
GetCachedBuildDependencySet(HttpContext, String, Boolean)
如果虚拟路径位于 ASP.NET 缓存中,则为虚拟路径返回生成依赖项集,即使内容不是最新也是如此。
public:
static System::Web::Compilation::BuildDependencySet ^ GetCachedBuildDependencySet(System::Web::HttpContext ^ context, System::String ^ virtualPath, bool ensureIsUpToDate);
public static System.Web.Compilation.BuildDependencySet GetCachedBuildDependencySet (System.Web.HttpContext context, string virtualPath, bool ensureIsUpToDate);
static member GetCachedBuildDependencySet : System.Web.HttpContext * string * bool -> System.Web.Compilation.BuildDependencySet
Public Shared Function GetCachedBuildDependencySet (context As HttpContext, virtualPath As String, ensureIsUpToDate As Boolean) As BuildDependencySet
参数
- context
- HttpContext
请求的上下文。
- virtualPath
- String
确定生成依赖项集的虚拟路径。
- ensureIsUpToDate
- Boolean
如果为 true
,则指定只应返回最新的生成依赖项集,或者,如果为 false
,则指示应返回任何可用的生成依赖项集(即使不是最新)。 默认值为 true
。
返回
存储在缓存中的 BuildDependencySet 对象,或者,如果无法从缓存中检索 BuildDependencySet 对象,则为 null
。
注解
如果参数 ensureIsUpToDate
值设置为 true
,则 BuildManager.GetCachedBuildDependencySet 方法重载的行为类似于 BuildManager.GetCachedBuildDependencySet 方法重载。 这两个重载都返回当前生成依赖项集(如果存在),否则返回 null
。
但是, BuildManager.GetCachedBuildDependencySet 方法重载包括用于返回可用的任何生成依赖项集(甚至是过时的依赖项集)的选项。 如果参数 ensureIsUpToDate
值设置为 false
,该方法将返回任何可用的生成依赖项集。