IncomingCallDelegate(TCall) Delegate
Represents the delegate signature of a typical handler for an application to handle a call of type ?????? .
Namespace: Microsoft.Rtc.Collaboration
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Delegate Sub IncomingCallDelegate(Of TCall As Call) ( _
sender As Object, _
e As CallReceivedEventArgs(Of TCall) _
)
'Usage
Dim instance As New IncomingCallDelegate(Of TCall)(AddressOf HandlerMethod)
public delegate void IncomingCallDelegate<TCall>(
Object sender,
CallReceivedEventArgs<TCall> e
)
where TCall : Call
Type Parameters
- TCall
Parameters
- sender
Type: System..::..Object
- e
Type: Microsoft.Rtc.Collaboration..::..CallReceivedEventArgs<(Of <(<'TCall>)>)>