/// <summary> /// Fetch a specific Session. /// </summary> /// /// <param name="options"> Fetch Session parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Session </returns> public static async System.Threading.Tasks.Task <SessionResource> FetchAsync(FetchSessionOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// Fetch a specific Session. /// </summary> /// /// <param name="options"> Fetch Session parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Session </returns> public static SessionResource Fetch(FetchSessionOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// Fetch a specific Session. /// </summary> /// <param name="pathServiceSid"> Service Sid. </param> /// <param name="pathSid"> A string that uniquely identifies this Session. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Session </returns> public static async System.Threading.Tasks.Task <SessionResource> FetchAsync(string pathServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchSessionOptions(pathServiceSid, pathSid); return(await FetchAsync(options, client)); }
private static Request BuildFetchRequest(FetchSessionOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Proxy, "/v1/Services/" + options.PathServiceSid + "/Sessions/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// Fetch a specific Session. /// </summary> /// /// <param name="pathServiceSid"> Service Sid. </param> /// <param name="pathSid"> A string that uniquely identifies this Session. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Session </returns> public static SessionResource Fetch(string pathServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchSessionOptions(pathServiceSid, pathSid); return(Fetch(options, client)); }