Candor.Web.Mvc.MvcTag.MvcTag C# (CSharp) Method

MvcTag() private method

private MvcTag ( System.Web.HttpResponseBase httpResponse ) : System
httpResponse System.Web.HttpResponseBase
return System
        public MvcTag(HttpResponseBase httpResponse)
        {
            if (httpResponse == null)
            {
                throw new ArgumentNullException("httpResponse");
            }

            _writer = httpResponse.Output;
        }

Same methods

MvcTag::MvcTag ( System.Web.Mvc.ViewContext viewContext, string tagName ) : System