CSharpAnalytics.Network.BackgroundHttpRequester.ShouldUsePostForRequest C# (CSharp) 메소드

ShouldUsePostForRequest() 정적인 개인적인 메소드

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.
리턴 bool
        internal static bool ShouldUsePostForRequest(Uri requestUri)
        {
            return requestUri.AbsoluteUri.Length > MaxUriLength;
        }