Fix Platform benchmark (#9204)

This commit is contained in:
Ben Adams 2019-04-09 18:52:04 +01:00 committed by David Fowler
parent dfa3604d56
commit 4134d02dab
1 changed files with 5 additions and 0 deletions

View File

@ -181,6 +181,11 @@ namespace PlatformBenchmarks
public void OnStartLine(HttpMethod method, HttpVersion version, Span<byte> target, Span<byte> path, Span<byte> query, Span<byte> customMethod, bool pathEncoded)
=> RequestHandler.OnStartLine(method, version, target, path, query, customMethod, pathEncoded);
#if NETCOREAPP3_0
public void OnHeadersComplete()
=> RequestHandler.OnHeadersComplete();
#endif
}
}