HtmlHelper.AnonymousObjectToHtmlAttributes(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从输入对象创建 HTML 属性字典,将下划线转换为每个公共实例属性中的短划线。
public:
static System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ AnonymousObjectToHtmlAttributes(System::Object ^ htmlAttributes);
public static System.Collections.Generic.IDictionary<string,object> AnonymousObjectToHtmlAttributes (object htmlAttributes);
static member AnonymousObjectToHtmlAttributes : obj -> System.Collections.Generic.IDictionary<string, obj>
Public Shared Function AnonymousObjectToHtmlAttributes (htmlAttributes As Object) As IDictionary(Of String, Object)
参数
- htmlAttributes
- Object
描述 HTML 特性的匿名对象。
返回
表示 HTML 特性的字典。
注解
如果对象已 IDictionary<TKey,TValue> 是实例,则返回浅表副本。
new { data_name="value" }
将转换为生成的字典中的条目 { "data-name", "value" }
。