#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; }
}
}