Twilio.TwilioRestClient.ListCallsAsync C# (CSharp) Method

ListCallsAsync() public method

Returns a paged list of phone calls made to and from the account. Sorted by DateUpdated with most-recent calls first. Makes a GET request to the Calls List resource.
public ListCallsAsync ( ) : IAsyncOperation
return IAsyncOperation
        public IAsyncOperation<CallResult> ListCallsAsync()
        {
            return (IAsyncOperation<CallResult>)AsyncInfo.Run((System.Threading.CancellationToken ct) => ListCallsAsyncInternal());
        }
        private async Task<CallResult> ListCallsAsyncInternal()

Same methods

TwilioRestClient::ListCallsAsync ( CallListRequest options ) : IAsyncOperation