CSharpAnalytics.Network.BackgroundHttpRequester.ShouldUsePostForRequest C# (CSharp) Method

ShouldUsePostForRequest() static private method

Whether a URI request is too long to be sent as a GET and instead the query parameters should be sent as the body of a POST instead.
static private ShouldUsePostForRequest ( Uri requestUri ) : bool
requestUri System.Uri URI request being considered.
return bool
        internal static bool ShouldUsePostForRequest(Uri requestUri)
        {
            return requestUri.AbsoluteUri.Length > MaxUriLength;
        }