BigPipe.Helpers.BigPipeHelper.IncludeCss C# (CSharp) Метод

IncludeCss() публичный статический Метод

public static IncludeCss ( this helper, string cssFile ) : void
helper this
cssFile string
Результат void
        public static void IncludeCss(this HtmlHelper helper, string cssFile)
        {
            helper.ViewContext.HttpContext.Response.Write(
                string.Format("<link type=\"text/css\" rel=\"stylesheet\" href=\"{0}\" />", cssFile));
        }