System.Web.Mvc.ViewEngineResult.cs

ylbtech-System.Web.Mvc.ViewEngineResult.cs
1.程序集 System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35返回顶部
1、
#region 程序集 System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// c:usersadministratorsource
eposWebApp7packagesMicrosoft.AspNet.Mvc.5.2.3lib
et45System.Web.Mvc.dll
#endregion

using System.Collections.Generic;

namespace System.Web.Mvc
{
    //
    // 摘要:
    //     表示定位视图引擎的结果。
    public class ViewEngineResult
    {
        //
        // 摘要:
        //     使用指定的搜索位置来初始化 System.Web.Mvc.ViewEngineResult 类的新实例。
        //
        // 参数:
        //   searchedLocations:
        //     搜索的位置。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     searchedLocations 参数为 null。
        public ViewEngineResult(IEnumerable<string> searchedLocations);
        //
        // 摘要:
        //     使用指定的视图和视图引擎来初始化 System.Web.Mvc.ViewEngineResult 类的新实例。
        //
        // 参数:
        //   view:
        //     视图。
        //
        //   viewEngine:
        //     视图引擎。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     view  或 viewEngine 参数为 null。
        public ViewEngineResult(IView view, IViewEngine viewEngine);

        //
        // 摘要:
        //     获取或设置搜索的位置。
        //
        // 返回结果:
        //     搜索的位置。
        public IEnumerable<string> SearchedLocations { get; }
        //
        // 摘要:
        //     获取或设置视图。
        //
        // 返回结果:
        //     视图。
        public IView View { get; }
        //
        // 摘要:
        //     获取或设置视图引擎。
        //
        // 返回结果:
        //     视图引擎。
        public IViewEngine ViewEngine { get; }
    }
}
2、
2.返回顶部
 
3.返回顶部
 
4.返回顶部
 
5.返回顶部
 
 
6.返回顶部
 
warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
原文地址:https://www.cnblogs.com/storebook/p/9065245.html