AspNet.Mvc.TypedRouting.Test.LinkGeneration.HtmlHelperExtensionsTest.TestHtmlContent.TestHtmlContent C# (CSharp) 메소드

TestHtmlContent() 공개 메소드

public TestHtmlContent ( string linkText, string routeName, string protocol, string hostname, string fragment, object routeValues, object htmlAttributes ) : System.IO
linkText string
routeName string
protocol string
hostname string
fragment string
routeValues object
htmlAttributes object
리턴 System.IO
            public TestHtmlContent(string linkText, string routeName, string protocol, string hostname, string fragment, object routeValues, object htmlAttributes)
            {
                this.RouteName = routeName;
                this.LinkText = linkText;
                this.Protocol = protocol;
                this.Hostname = hostname;
                this.Fragment = fragment;
                this.RouteValues = new RouteValueDictionary(routeValues);
                this.HtmlAttributes = new RouteValueDictionary(htmlAttributes);
            }

Same methods

HtmlHelperExtensionsTest.TestHtmlContent::TestHtmlContent ( string linkText, string actionName, string controllerName, string protocol, string hostname, string fragment, object routeValues, object htmlAttributes ) : System.IO
HtmlHelperExtensionsTest.TestHtmlContent