Exemplo n.º 1
0
 public static string Delete(string path, NameValueCollection queryArguments)
 {
     return(MakeRequest("DELETE", CreateSendOptions.BaseUri + path + NamveValueCollectionExtension.ToQueryString(queryArguments), null));
 }
Exemplo n.º 2
0
 public static string Put(string path, NameValueCollection queryArguments, string payload)
 {
     return(MakeRequest("PUT", CreateSendOptions.BaseUri + path + NamveValueCollectionExtension.ToQueryString(queryArguments), payload));
 }