Ejemplo n.º 1
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathCallSid"> The call_sid </param>
        /// <param name="edge"> The edge </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 Event </returns>
        public static ResourceSet <EventResource> Read(string pathCallSid,
                                                       EventResource.TwilioEdgeEnum edge = null,
                                                       int?pageSize             = null,
                                                       long?limit               = null,
                                                       ITwilioRestClient client = null)
        {
            var options = new ReadEventOptions(pathCallSid)
            {
                Edge = edge, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathCallSid"> The call_sid </param>
        /// <param name="edge"> The edge </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 Event </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <EventResource> > ReadAsync(string pathCallSid,
                                                                                                 EventResource.TwilioEdgeEnum edge = null,
                                                                                                 int?pageSize             = null,
                                                                                                 long?limit               = null,
                                                                                                 ITwilioRestClient client = null)
        {
            var options = new ReadEventOptions(pathCallSid)
            {
                Edge = edge, PageSize = pageSize, Limit = limit
            };

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