CallInvite Constructors

Definition

Overloads

Name Description
CallInvite(CommunicationUserIdentifier)

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for ACS Users.

CallInvite(MicrosoftTeamsAppIdentifier)

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for Microsoft Teams Apps.

CallInvite(MicrosoftTeamsUserIdentifier)

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for Microsoft teams Users.

CallInvite(TeamsExtensionUserIdentifier)

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for Microsoft Teams Apps.

CallInvite(PhoneNumberIdentifier, PhoneNumberIdentifier)

Creates a new CallInvite object. When the source of the call is a Teams App source, callerIdNumber is not supported and should be null. Sip Headers are supported for PSTN calls only. Voip Headers are not supported.

CallInvite(CommunicationUserIdentifier)

Source:
CallInvite.cs
Source:
CallInvite.cs

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for ACS Users.

public CallInvite(Azure.Communication.CommunicationUserIdentifier targetIdentity);
new Azure.Communication.CallAutomation.CallInvite : Azure.Communication.CommunicationUserIdentifier -> Azure.Communication.CallAutomation.CallInvite
Public Sub New (targetIdentity As CommunicationUserIdentifier)

Parameters

targetIdentity
CommunicationUserIdentifier

The Communication User identifier of the target participant.

Applies to

CallInvite(MicrosoftTeamsAppIdentifier)

Source:
CallInvite.cs
Source:
CallInvite.cs

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for Microsoft Teams Apps.

public CallInvite(Azure.Communication.MicrosoftTeamsAppIdentifier targetIdentity);
new Azure.Communication.CallAutomation.CallInvite : Azure.Communication.MicrosoftTeamsAppIdentifier -> Azure.Communication.CallAutomation.CallInvite
Public Sub New (targetIdentity As MicrosoftTeamsAppIdentifier)

Parameters

targetIdentity
MicrosoftTeamsAppIdentifier

The Microsoft Teams App identifier of the target participant.

Applies to

CallInvite(MicrosoftTeamsUserIdentifier)

Source:
CallInvite.cs
Source:
CallInvite.cs

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for Microsoft teams Users.

public CallInvite(Azure.Communication.MicrosoftTeamsUserIdentifier targetIdentity);
new Azure.Communication.CallAutomation.CallInvite : Azure.Communication.MicrosoftTeamsUserIdentifier -> Azure.Communication.CallAutomation.CallInvite
Public Sub New (targetIdentity As MicrosoftTeamsUserIdentifier)

Parameters

targetIdentity
MicrosoftTeamsUserIdentifier

The Microsoft Teams User identifier of the target participant.

Applies to

CallInvite(TeamsExtensionUserIdentifier)

Source:
CallInvite.cs
Source:
CallInvite.cs

Creates a new CallInvite object. Sip Headers are not supported. Voip Headers are supported for Microsoft Teams Apps.

public CallInvite(Azure.Communication.TeamsExtensionUserIdentifier targetIdentity);
new Azure.Communication.CallAutomation.CallInvite : Azure.Communication.TeamsExtensionUserIdentifier -> Azure.Communication.CallAutomation.CallInvite
Public Sub New (targetIdentity As TeamsExtensionUserIdentifier)

Parameters

targetIdentity
TeamsExtensionUserIdentifier

The Teams Extension User identifier of the target participant.

Applies to

CallInvite(PhoneNumberIdentifier, PhoneNumberIdentifier)

Source:
CallInvite.cs
Source:
CallInvite.cs

Creates a new CallInvite object. When the source of the call is a Teams App source, callerIdNumber is not supported and should be null. Sip Headers are supported for PSTN calls only. Voip Headers are not supported.

public CallInvite(Azure.Communication.PhoneNumberIdentifier targetPhoneNumberIdentity, Azure.Communication.PhoneNumberIdentifier callerIdNumber);
new Azure.Communication.CallAutomation.CallInvite : Azure.Communication.PhoneNumberIdentifier * Azure.Communication.PhoneNumberIdentifier -> Azure.Communication.CallAutomation.CallInvite
Public Sub New (targetPhoneNumberIdentity As PhoneNumberIdentifier, callerIdNumber As PhoneNumberIdentifier)

Parameters

targetPhoneNumberIdentity
PhoneNumberIdentifier

The phone number identifier of the target participant.

callerIdNumber
PhoneNumberIdentifier

The caller ID phone number to be displayed to the target participant.

Applies to