BootstrapComponents.Components.Images.ImageExtensions.Image C# (CSharp) Method

Image() public static method

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
return 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