Share via


VoipCallCoordinator.RequestNewOutgoingCall | requestNewOutgoingCall method

[Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.]

Notifies the system of a new outgoing call.

Syntax

voipCallCoordinator.requestNewOutgoingCall(context, contactName, serviceName, media);
public void RequestNewOutgoingCall(
  string context, 
  string contactName, 
  string serviceName, 
  VoipPhoneCallMedia media, 
  out VoipPhoneCall call
)
Public Sub RequestNewOutgoingCall(
  context As String,  
  contactName As String,  
  serviceName As String,  
  media As VoipPhoneCallMedia,  
  <OutAttribute> ByRef call As VoipPhoneCall 
)
public:
void RequestNewOutgoingCall(
  String^ context, 
  String^ contactName, 
  String^ serviceName, 
  VoipPhoneCallMedia media, 
  [OutAttribute] VoipPhoneCall^ call
)

Parameters

  • context
    Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]

    A string that is passed to the associated foreground app as a deep link. The maximum length is 128 characters. This parameter must be non-null.

  • contactName
    Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]

    The name or ID of the caller which is displayed in the phone's minimized call UI. The maximum length is 128 characters.

  • serviceName
    Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]

    The name of the VoIP service which is displayed in the phone's minimized call UI. The maximum length is 128 characters.

  • media
    Type: VoipPhoneCallMedia

    The media types of the new outgoing call.

  • call (out parameter)
    Type: VoipPhoneCall

    The object representing the new outgoing call.

Requirements

Minimum supported client

Windows 10 Insider Preview

Minimum supported server

Windows Server Technical Preview

Minimum supported phone

Windows 10 Mobile Insider Preview

Namespace

Windows.ApplicationModel.Calls Windows::ApplicationModel::Calls [C++]

Metadata

Windows.winmd

See also

VoipCallCoordinator