1 write to HttpMethod
CodeGenerator (1)
HttpUtilities\HttpUtilities.cs (1)
291HttpMethod = method.Item2.ToString(),
7 references to HttpMethod
CodeGenerator (7)
HttpUtilities\HttpUtilities.cs (7)
38var methodsInfoWithoutGet = methodsInfo.Where(m => m.HttpMethod != "Get").ToList(); 161result.AppendFormat(CultureInfo.InvariantCulture, " SetKnownMethod({0}, {1}, HttpMethod.{3}, {4});", maskFieldName, httpMethodFieldName, typeof(String).Name, methodInfo.HttpMethod, methodInfo.MaskLength - 1); 176methodsInfo.Sort((t1, t2) => string.Compare(t1.HttpMethod, t2.HttpMethod, StringComparison.Ordinal)); 184result.AppendFormat(CultureInfo.InvariantCulture, " _methodNames[(byte)HttpMethod.{1}] = {2}.{3};", typeof(String).Name, methodInfo.HttpMethod, typeof(HttpMethods).Name, methodInfo.HttpMethod); 235return string.Format(CultureInfo.InvariantCulture, "_http{0}MethodLong", methodsInfo.HttpMethod.ToString());