methodAcceptsQueryString function

bool methodAcceptsQueryString(
  1. HttpMethod method
)

Implementation

bool methodAcceptsQueryString(HttpMethod method) {
  return method == HttpMethod.GET || method == HttpMethod.OPTIONS;
}