HtmlHelper.AnonymousObjectToHtmlAttributes(Object) 方法

定义

从输入对象创建 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" }

适用于