23 references to CreateEndpoint
Microsoft.AspNetCore.Routing.Tests (23)
Matching\HostMatcherPolicyIntegrationTestBase.cs (23)
19var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com", });
35var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:8080", });
51var endpoint = CreateEndpoint("/hello", hosts: new string[] { "æon.contoso.com", });
67var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:8080", });
83var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:8080", });
99var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*.contoso.com:8080", });
115var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*.contoso.com:8080", });
131var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*.contoso.com:8080", });
147var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*.contoso.com:8080", });
163var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*.contoso.com:8080", });
179var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:8080", "*.contoso.com:8080", });
195var endpoint = CreateEndpoint("/hello", hosts: new string[] { "Contoso.COM", });
211var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:80", });
227var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:443", });
243var endpoint = CreateEndpoint("/hello", hosts: new string[] { "contoso.com:443", });
259var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*:443", });
275var endpoint = CreateEndpoint("/hello");
291var endpoint = CreateEndpoint("/hello", hosts: new string[] { });
307var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*", });
323var endpoint = CreateEndpoint("/hello", hosts: new string[] { "*:*", });
339var endpoint = CreateEndpoint("/{**path}", hosts: new string[] { "contoso.com", });
355var endpoint = CreateEndpoint("/{**path}", hosts: new string[] { "contoso.com", });
429var endpoint = CreateEndpoint(template);