Ejemplo n.º 1
0
        /// <summary>
        /// Delete a recording from your account
        /// </summary>
        /// <param name="options"> Delete Recording parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Recording </returns>
        public static bool Delete(DeleteRecordingOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
        /// <summary>
        /// Delete a recording from your account
        /// </summary>
        ///
        /// <param name="options"> Delete Recording parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Recording </returns>
        public static async System.Threading.Tasks.Task <bool> DeleteAsync(DeleteRecordingOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildDeleteRequest(options, client));

            return(response.StatusCode == System.Net.HttpStatusCode.NoContent);
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Delete a recording from your account
 /// </summary>
 /// <param name="pathSid"> Delete by unique recording Sid </param>
 /// <param name="pathAccountSid"> The account_sid </param>
 /// <param name="client"> Client to make requests to Twilio </param>
 /// <returns> Task that resolves to A single instance of Recording </returns> 
 public static async System.Threading.Tasks.Task<bool> DeleteAsync(string pathSid, 
                                                                   string pathAccountSid = null, 
                                                                   ITwilioRestClient client = null)
 {
     var options = new DeleteRecordingOptions(pathSid){PathAccountSid = pathAccountSid};
     return await DeleteAsync(options, client);
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Delete a recording from your account
        /// </summary>
        /// <param name="pathSid"> Delete by unique recording Sid </param>
        /// <param name="pathAccountSid"> The account_sid </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Recording </returns>
        public static bool Delete(string pathSid, string pathAccountSid = null, ITwilioRestClient client = null)
        {
            var options = new DeleteRecordingOptions(pathSid)
            {
                PathAccountSid = pathAccountSid
            };

            return(Delete(options, client));
        }
 private static Request BuildDeleteRequest(DeleteRecordingOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Delete,
                Rest.Domain.Api,
                "/2010-04-01/Accounts/" + (options.PathAccountSid ?? client.AccountSid) + "/Recordings/" + options.PathSid + ".json",
                queryParams: options.GetParams()
                ));
 }