次の方法で共有


CallAutomationEventProcessor.AttachOngoingEventProcessor<TEvent> メソッド

定義

特定のイベントに対して Ongoing EventProcessor をアタッチします。

public void AttachOngoingEventProcessor<TEvent> (string callConnectionId, Action<TEvent> eventProcessor) where TEvent : Azure.Communication.CallAutomation.CallAutomationEventBase;
member this.AttachOngoingEventProcessor : string * Action<'Event (requires 'Event :> Azure.Communication.CallAutomation.CallAutomationEventBase)> -> unit (requires 'Event :> Azure.Communication.CallAutomation.CallAutomationEventBase)
Public Sub AttachOngoingEventProcessor(Of TEvent As CallAutomationEventBase) (callConnectionId As String, eventProcessor As Action(Of TEvent))

型パラメーター

TEvent

Automation イベントの種類を呼び出します。

パラメーター

callConnectionId
String

呼び出しの CallConnectionId。

eventProcessor
Action<TEvent>

指定したイベントが到着したときに発生する EventProcessor。

適用対象