Raised when the remote sends a re-invite. This event is optional for an application. Applications that want to access headers in the re-invite can register for this event.

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public Event 
ReInviteReceived 
As 
EventHandler(
Of 

SipRequestReceivedEventArgs)
C#
public event 
EventHandler<

SipRequestReceivedEventArgs> 
ReInviteReceived
Visual C++
public:
 
event 
EventHandler<

SipRequestReceivedEventArgs^>^ 
ReInviteReceived {
	
void 
add (
EventHandler<

SipRequestReceivedEventArgs^>^ 
value);
	
void 
remove (
EventHandler<

SipRequestReceivedEventArgs^>^ 
value);
}
JavaScript
function add_
reInviteReceived(
value);
function remove_
reInviteReceived(
value);

See Also