/// <summary>
        /// Update a specific Session.
        /// </summary>
        /// <param name="options"> Update Session parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Session </returns>
        public static SessionResource Update(UpdateSessionOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildUpdateRequest(options, client));

            return(FromJson(response.Content));
        }
示例#2
0
        /// <summary>
        /// Update a specific Session.
        /// </summary>
        ///
        /// <param name="pathServiceSid"> Service Sid. </param>
        /// <param name="pathSid"> A string that uniquely identifies this Session. </param>
        /// <param name="uniqueName"> A unique, developer assigned name of this Session. </param>
        /// <param name="ttl"> How long will this session stay open, in seconds. </param>
        /// <param name="status"> The Status of this Session </param>
        /// <param name="participants"> The participants </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> UpdateAsync(string pathServiceSid, string pathSid, string uniqueName = null, int?ttl = null, SessionResource.StatusEnum status = null, List <string> participants = null, ITwilioRestClient client = null)
        {
            var options = new UpdateSessionOptions(pathServiceSid, pathSid)
            {
                UniqueName = uniqueName, Ttl = ttl, Status = status, Participants = participants
            };

            return(await UpdateAsync(options, client));
        }
示例#3
0
        /// <summary>
        /// Update a specific Session.
        /// </summary>
        ///
        /// <param name="pathServiceSid"> Service Sid. </param>
        /// <param name="pathSid"> A string that uniquely identifies this Session. </param>
        /// <param name="uniqueName"> A unique, developer assigned name of this Session. </param>
        /// <param name="ttl"> How long will this session stay open, in seconds. </param>
        /// <param name="status"> The Status of this Session </param>
        /// <param name="participants"> The participants </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Session </returns>
        public static SessionResource Update(string pathServiceSid, string pathSid, string uniqueName = null, int?ttl = null, SessionResource.StatusEnum status = null, List <string> participants = null, ITwilioRestClient client = null)
        {
            var options = new UpdateSessionOptions(pathServiceSid, pathSid)
            {
                UniqueName = uniqueName, Ttl = ttl, Status = status, Participants = participants
            };

            return(Update(options, client));
        }
 private static Request BuildUpdateRequest(UpdateSessionOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Preview,
                "/Proxy/Services/" + options.PathServiceSid + "/Sessions/" + options.PathSid + "",
                client.Region,
                postParams: options.GetParams()
                ));
 }
        /// <summary>
        /// Update a specific Session.
        /// </summary>
        /// <param name="options"> Update 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> UpdateAsync(UpdateSessionOptions options,
                                                                                      ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildUpdateRequest(options, client));

            return(FromJson(response.Content));
        }