Exemplo n.º 1
0
        /// <summary>
        /// Retrieve voice dialing country permissions identified by the given ISO country code
        /// </summary>
        /// <param name="pathIsoCode"> The ISO country code </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Country </returns>
        public static async System.Threading.Tasks.Task <CountryResource> FetchAsync(string pathIsoCode,
                                                                                     ITwilioRestClient client = null)
        {
            var options = new FetchCountryOptions(pathIsoCode);

            return(await FetchAsync(options, client));
        }
Exemplo n.º 2
0
        /// <summary>
        /// Retrieve voice dialing country permissions identified by the given ISO country code
        /// </summary>
        /// <param name="options"> Fetch Country parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Country </returns>
        public static CountryResource Fetch(FetchCountryOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }
Exemplo n.º 3
0
        /// <summary>
        /// Retrieve voice dialing country permissions identified by the given ISO country code
        /// </summary>
        /// <param name="options"> Fetch Country parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Country </returns>
        public static async System.Threading.Tasks.Task <CountryResource> FetchAsync(FetchCountryOptions options,
                                                                                     ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }
Exemplo n.º 4
0
 private static Request BuildFetchRequest(FetchCountryOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Voice,
                "/v1/DialingPermissions/Countries/" + options.PathIsoCode + "",
                queryParams: options.GetParams()
                ));
 }
Exemplo n.º 5
0
        /// <summary>
        /// Retrieve voice dialing country permissions identified by the given ISO country code
        /// </summary>
        /// <param name="pathIsoCode"> The ISO country code </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Country </returns>
        public static CountryResource Fetch(string pathIsoCode, ITwilioRestClient client = null)
        {
            var options = new FetchCountryOptions(pathIsoCode);

            return(Fetch(options, client));
        }