31 references to CreateEndpoint
Microsoft.AspNetCore.Routing.Tests (31)
Matching\ContentEncodingNegotiationMatcherPolicyIntegrationTestBase.cs (31)
19var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip"); 20var identityEndpoint = CreateEndpoint("/hello"); 36var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip"); 37var identityEndpoint = CreateEndpoint("/hello"); 53var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip"); 54var brEndpoint = CreateEndpoint("/hello", contentEncoding: "br"); 70var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip", quality: 0.9); 71var brEndpoint = CreateEndpoint("/hello", contentEncoding: "br", quality: 0.5); 91var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip", quality: 0.9); 92var brEndpoint = CreateEndpoint("/hello", contentEncoding: "br", quality: 0.9); 110var literalEndpoint = CreateEndpoint("/hello"); 111var catchAllGzip = CreateEndpoint("/{**path}", contentEncoding: "gzip"); 128var literalEndpoint = CreateEndpoint("/hello"); 129var catchAllIdentity = CreateEndpoint("/{**path}"); 130var catchAllGzip = CreateEndpoint("/{**path}", contentEncoding: "gzip"); 131var catchAllBr = CreateEndpoint("/{**path}", contentEncoding: "br"); 147var paramEndpoint = CreateEndpoint("/hello/{name}"); 148var catchAllGzip = CreateEndpoint("/{**path}", contentEncoding: "gzip"); 167var literalEndpoint = CreateEndpoint("/literal/path"); 168var paramEndpoint = CreateEndpoint("/literal/{param}"); 169var catchAllGzip = CreateEndpoint("/{**path}", contentEncoding: "gzip"); 186var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip", quality: 0.8); 187var identityEndpoint = CreateEndpoint("/hello"); 206var styleIdentity = CreateEndpoint("/style.css"); 207var styleGzip = CreateEndpoint("/style.css", contentEncoding: "gzip", quality: 0.8); 208var catchAllGzip = CreateEndpoint("/{**path}", contentEncoding: "gzip", quality: 0.8); 225var literalEndpoint = CreateEndpoint("/hello"); 226var catchAllGzip = CreateEndpoint("/{**path}", contentEncoding: "gzip"); 227var catchAllIdentity = CreateEndpoint("/{**path}"); 243var gzipEndpoint = CreateEndpoint("/hello", contentEncoding: "gzip"); 244var brEndpoint = CreateEndpoint("/hello", contentEncoding: "br");