Twilio.TwilioRestClient.InitiateOutboundCallAsync C# (CSharp) Method

InitiateOutboundCallAsync() public method

Initiates a new phone call. Makes a POST request to the Calls List resource.
public InitiateOutboundCallAsync ( CallOptions options ) : IAsyncOperation
options CallOptions Call settings. Only properties with values set will be used.
return IAsyncOperation
        public IAsyncOperation<Call> InitiateOutboundCallAsync(CallOptions options)
        {
            return (IAsyncOperation<Call>)AsyncInfo.Run((System.Threading.CancellationToken ct) => InitiateOutboundCallAsyncInternal(options));
        }
        private async Task<Call> InitiateOutboundCallAsyncInternal(CallOptions options)

Same methods

TwilioRestClient::InitiateOutboundCallAsync ( string from, string to, string url ) : IAsyncOperation
TwilioRestClient::InitiateOutboundCallAsync ( string from, string to, string url, string statusCallback ) : IAsyncOperation