LocalEndpoint.UnregisterForIncomingCall<TCall>(IncomingCallDelegate<TCall>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.