LocalEndpoint.UnregisterForIncomingCall<TCall> Method

Definition

Removes a previously registered delegate that was handling incoming calls of a specific modality.

public:
generic <typename TCall>
 where TCall : Microsoft::Rtc::Collaboration::Call void UnregisterForIncomingCall(Microsoft::Rtc::Collaboration::IncomingCallDelegate<TCall> ^ incomingCallDelegate);
public void UnregisterForIncomingCall<TCall> (Microsoft.Rtc.Collaboration.IncomingCallDelegate<TCall> incomingCallDelegate) where TCall : Microsoft.Rtc.Collaboration.Call;
member this.UnregisterForIncomingCall : Microsoft.Rtc.Collaboration.IncomingCallDelegate<'Call (requires 'Call :> Microsoft.Rtc.Collaboration.Call)> -> unit (requires 'Call :> Microsoft.Rtc.Collaboration.Call)
Public Sub UnregisterForIncomingCall(Of TCall As Call) (incomingCallDelegate As IncomingCallDelegate(Of TCall))

Type Parameters

TCall

The call type.

Parameters

incomingCallDelegate
IncomingCallDelegate<TCall>

The delegate method to remove.

Applies to