System.Net.Http.OwinHttpMessageHandler.IsBodylessRequest C# (CSharp) Method

IsBodylessRequest() private static method

private static IsBodylessRequest ( HttpRequestMessage req ) : bool
req HttpRequestMessage
return bool
        private static bool IsBodylessRequest(HttpRequestMessage req) => 
            req.Method == HttpMethod.Get || req.Method == HttpMethod.Head || req.Method == HttpMethod.Delete;