#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.Globalization;
namespace System.Web.Mvc
{
//
// 摘要:
// 表示将一个值(如窗体发布或查询字符串中的值)绑定到操作方法参数属性或绑定到该参数本身的结果。
public class ValueProviderResult
{
//
// 摘要:
// 使用指定的原始值、尝试的值和区域性信息初始化 System.Web.Mvc.ValueProviderResult 类的新实例。
//
// 参数:
// rawValue:
// 原始值。
//
// attemptedValue:
// 尝试的值。
//
// culture:
// 区域性。
public ValueProviderResult(object rawValue, string attemptedValue, CultureInfo culture);
//
// 摘要:
// 初始化 System.Web.Mvc.ValueProviderResult 类的新实例。
protected ValueProviderResult();
//
// 摘要:
// 获取或设置要转换为字符串,以便显示的原始值。
//
// 返回结果:
// 原始值。
public string AttemptedValue { get; protected set; }
//
// 摘要:
// 获取或设置区域性。
//
// 返回结果:
// 区域性。
public CultureInfo Culture { get; protected set; }
//
// 摘要:
// 获取或设置值提供程序所提供的原始值。
//
// 返回结果:
// 原始值。
public object RawValue { get; protected set; }
//
// 摘要:
// 将此结果封装的值转换为指定的类型。
//
// 参数:
// type:
// 目标类型。
//
// 返回结果:
// 转换后的值。
//
// 异常:
// T:System.ArgumentNullException:
// type 参数为 null。
public object ConvertTo(Type type);
//
// 摘要:
// 使用指定的区域性信息将此结果封装的值转换为指定的类型。
//
// 参数:
// type:
// 目标类型。
//
// culture:
// 要在转换中使用的区域性。
//
// 返回结果:
// 转换后的值。
//
// 异常:
// T:System.ArgumentNullException:
// type 参数为 null。
public virtual object ConvertTo(Type type, CultureInfo culture);
}
}