From 80a2bc124d42b757b378661f693d208cf514dcb3 Mon Sep 17 00:00:00 2001 From: Cesar Blum Silveira Date: Thu, 26 May 2016 21:22:00 -0700 Subject: [PATCH] Remove Frame.RequestUri. --- src/Microsoft.AspNetCore.Server.Kestrel/Http/Frame.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.Kestrel/Http/Frame.cs b/src/Microsoft.AspNetCore.Server.Kestrel/Http/Frame.cs index 63ada04463..ad73c82d45 100644 --- a/src/Microsoft.AspNetCore.Server.Kestrel/Http/Frame.cs +++ b/src/Microsoft.AspNetCore.Server.Kestrel/Http/Frame.cs @@ -82,7 +82,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Http public int LocalPort { get; set; } public string Scheme { get; set; } public string Method { get; set; } - public string RequestUri { get; set; } public string PathBase { get; set; } public string Path { get; set; } public string QueryString { get; set; } @@ -276,7 +275,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Http Scheme = null; Method = null; - RequestUri = null; PathBase = null; Path = null; QueryString = null; @@ -914,7 +912,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Http consumed = scan; Method = method; - RequestUri = requestUrlPath; QueryString = queryString; HttpVersion = httpVersion;