HtmlHelper.AnonymousObjectToHtmlAttributes(Object) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
각 공용 instance 속성에서 밑줄을 대시로 변환하여 입력 개체에서 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> instance 경우 단순 복사본이 반환됩니다.
new { data_name="value" }
는 결과 사전의 항목 { "data-name", "value" }
으로 변환됩니다.