コード例 #1
0
ファイル: VideoHelper.cs プロジェクト: pjbeemster/scratchpad
 public static MvcHtmlString Video(this HtmlHelper helper, IField video, object htmlAttributes)
 {
     return MvcHtmlString.Create(video.GetVideoTag(htmlAttributes));
 }
コード例 #2
0
ファイル: VideoHelper.cs プロジェクト: pjbeemster/scratchpad
 public static MvcHtmlString Video(this HtmlHelper helper, IField video)
 {
     return MvcHtmlString.Create(video.GetVideoTag(string.Empty));
 }