使用HttpContext.Current.CurrentHandler进行运行时视图访问

时间:2010-02-22 17:04:32

标签: c# asp.net httpcontext

使用HttpContext.Current.CurrentHandler进行运行时视图访问是否有任何潜在的缺陷?

public static GetView<T>(T view) where T : IView
{
    return  HttpContext.Current.CurrentHandler as T;
}

1 个答案:

答案 0 :(得分:1)

我不这么认为,只要你知道它可以是null