C# 클래스 Candor.Web.Mvc.MvcTagHtmlHelperExtension

Extension methods for HtmlHelper for creating tags.
파일 보기 프로젝트 열기: michael-lang/candor-common

공개 메소드들

메소드 설명
BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object>.IDictionary htmlAttributes ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object htmlAttributes ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, object routeValues ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, object routeValues, object htmlAttributes ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, string controllerName ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, string controllerName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginActionLink ( this htmlHelper, string actionName, string controllerName, object routeValues, object htmlAttributes ) : MvcTag

Begins a new action link. For use in a using statement, allowing other code inside the tag.

BeginTag ( this htmlHelper, string tagName, object>.IDictionary htmlAttributes ) : MvcTag

Begins a new tag of any kind. For use in a using statement, allowing other code inside the tag.

BeginTag ( this htmlHelper, string tagName, object htmlAttributes ) : MvcTag

Begins a new tag of any kind. For use in a using statement, allowing other code inside the tag.

메소드 상세

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object>.IDictionary htmlAttributes ) : MvcTag
htmlHelper this The class being extended with this method.
result System.Web.Mvc.ActionResult An IT4MVCActionResult from a T4 MVC action method used to help build urls.
htmlAttributes object>.IDictionary A dictionary with name and value pairs.
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object htmlAttributes ) : MvcTag
htmlHelper this The class being extended with this method.
result System.Web.Mvc.ActionResult An IT4MVCActionResult from a T4 MVC action method used to help build urls.
htmlAttributes object A dynamic object with name and value pairs. Example: new {data-custom1="abc", @class="large"}
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName ) : MvcTag
htmlHelper this
actionName string
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues ) : MvcTag
htmlHelper this
actionName string
routeValues RouteValueDictionary
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag
htmlHelper this
actionName string
routeValues RouteValueDictionary
htmlAttributes object>.IDictionary
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, object routeValues ) : MvcTag
htmlHelper this
actionName string
routeValues object
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, object routeValues, object htmlAttributes ) : MvcTag
htmlHelper this
actionName string
routeValues object
htmlAttributes object
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, string controllerName ) : MvcTag
htmlHelper this
actionName string
controllerName string
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, string controllerName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag
htmlHelper this
actionName string
controllerName string
routeValues RouteValueDictionary
htmlAttributes object>.IDictionary
리턴 MvcTag

BeginActionLink() 공개 정적인 메소드

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, string actionName, string controllerName, object routeValues, object htmlAttributes ) : MvcTag
htmlHelper this
actionName string
controllerName string
routeValues object
htmlAttributes object
리턴 MvcTag

BeginTag() 공개 정적인 메소드

Begins a new tag of any kind. For use in a using statement, allowing other code inside the tag.
public static BeginTag ( this htmlHelper, string tagName, object>.IDictionary htmlAttributes ) : MvcTag
htmlHelper this
tagName string
htmlAttributes object>.IDictionary
리턴 MvcTag

BeginTag() 공개 정적인 메소드

Begins a new tag of any kind. For use in a using statement, allowing other code inside the tag.
public static BeginTag ( this htmlHelper, string tagName, object htmlAttributes ) : MvcTag
htmlHelper this
tagName string
htmlAttributes object
리턴 MvcTag