Esempio n. 1
0
        /// <summary>
        /// Delete a specific fax and its associated media.
        /// </summary>
        /// <param name="options"> Delete Fax parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Fax </returns>
        public static bool Delete(DeleteFaxOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
Esempio n. 2
0
 /// <summary>
 /// Delete a specific fax and its associated media.
 /// </summary>
 /// <param name="options"> Delete Fax parameters </param>
 /// <param name="client"> Client to make requests to Twilio </param>
 /// <returns> Task that resolves to A single instance of Fax </returns>
 public static async System.Threading.Tasks.Task<bool> DeleteAsync(DeleteFaxOptions options,
                                                                   ITwilioRestClient client = null)
 {
     client = client ?? TwilioClient.GetRestClient();
     var response = await client.RequestAsync(BuildDeleteRequest(options, client));
     return response.StatusCode == System.Net.HttpStatusCode.NoContent;
 }
Esempio n. 3
0
 private static Request BuildDeleteRequest(DeleteFaxOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Delete,
                Rest.Domain.Fax,
                "/v1/Faxes/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }
Esempio n. 4
0
 /// <summary>
 /// Delete a specific fax and its associated media.
 /// </summary>
 /// <param name="pathSid"> The unique string that identifies the resource </param>
 /// <param name="client"> Client to make requests to Twilio </param>
 /// <returns> Task that resolves to A single instance of Fax </returns>
 public static async System.Threading.Tasks.Task<bool> DeleteAsync(string pathSid, ITwilioRestClient client = null)
 {
     var options = new DeleteFaxOptions(pathSid);
     return await DeleteAsync(options, client);
 }
Esempio n. 5
0
 /// <summary>
 /// Delete a specific fax and its associated media.
 /// </summary>
 /// <param name="pathSid"> The unique string that identifies the resource </param>
 /// <param name="client"> Client to make requests to Twilio </param>
 /// <returns> A single instance of Fax </returns>
 public static bool Delete(string pathSid, ITwilioRestClient client = null)
 {
     var options = new DeleteFaxOptions(pathSid);
     return Delete(options, client);
 }