BootstrapComponents.Components.Images.ImageExtensions.Image C# (CSharp) 메소드

Image() 공개 정적인 메소드

public static Image ( this html, string src, string alt, Image style, bool responsive = false ) : IHtmlString
html this
src string
alt string
style Image
responsive bool
리턴 IHtmlString
        public static IHtmlString Image(this HtmlHelper html, string src, string alt, Image.Style style, bool responsive = false)
        {
            return new Image(src, alt, style, responsive);
        }
ImageExtensions