Example #1
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        /// <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
        /// <param name="order"> The sort order of the returned messages </param>
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Message </returns>
        public static ResourceSet <MessageResource> Read(string pathServiceSid,
                                                         string pathChannelSid,
                                                         MessageResource.OrderTypeEnum order = null,
                                                         int?pageSize             = null,
                                                         long?limit               = null,
                                                         ITwilioRestClient client = null)
        {
            var options = new ReadMessageOptions(pathServiceSid, pathChannelSid)
            {
                Order = order, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Example #2
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        /// <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
        /// <param name="order"> The sort order of the returned messages </param>
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Message </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <MessageResource> > ReadAsync(string pathServiceSid,
                                                                                                   string pathChannelSid,
                                                                                                   MessageResource.OrderTypeEnum order = null,
                                                                                                   int?pageSize             = null,
                                                                                                   long?limit               = null,
                                                                                                   ITwilioRestClient client = null)
        {
            var options = new ReadMessageOptions(pathServiceSid, pathChannelSid)
            {
                Order = order, PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }