public ConsulPathAttribute(string path, HttpMethodKind httpMethodKind = HttpMethodKind.Get) { Path = path; HttpMethod = httpMethodKind.ToHttpMethod(); }
public HttpUrlAttribute(string url, HttpMethodKind httpMethodKind = HttpMethodKind.Get) { Url = url; HttpMethod = httpMethodKind.ToHttpMethod(); }