LocalEndpoint.UnregisterForIncomingCall<TCall> Method
Removes a previously registered delegate that was handling incoming calls of a specific modality.
Namespace: Microsoft.Rtc.Collaboration
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Sub UnregisterForIncomingCall(Of TCall As Call) ( _
incomingCallDelegate As IncomingCallDelegate(Of TCall) _
)
'Usage
Dim instance As LocalEndpoint
Dim incomingCallDelegate As IncomingCallDelegate(Of TCall)
instance.UnregisterForIncomingCall(incomingCallDelegate)
public void UnregisterForIncomingCall<TCall>(
IncomingCallDelegate<TCall> incomingCallDelegate
)
where TCall : Call
Type Parameters
- TCall
The call type.
Parameters
- incomingCallDelegate
Type: Microsoft.Rtc.Collaboration.IncomingCallDelegate<TCall>
The delegate method to remove.