标签:ace 绑定 指定 strong image att 查询 global com
ylbtech-.NETFramework-Web.Mvc:ValueProviderResult |
1.程序集 System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35返回顶部 |
#region 程序集 System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 // c:\users\administrator\source\repos\WebApp7\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.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); } }
2.返回顶部 |
3.返回顶部 |
4.返回顶部 |
5.返回顶部 |
6.返回顶部 |
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
.NETFramework-Web.Mvc:ValueProviderResult
标签:ace 绑定 指定 strong image att 查询 global com
原文地址:https://www.cnblogs.com/storebook/p/9065240.html