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