EnqueueCall Method

Enqueue a Call object for a workflow instance identified by a workflow instance ID.

Namespace:  Microsoft.Rtc.Workflow.Activities
Assembly:  Microsoft.Rtc.Workflow (in Microsoft.Rtc.Workflow.dll)

Syntax

'Declaration
Public Sub EnqueueCall ( _
    workflowId As Guid, _
    call As Call _
)
public void EnqueueCall(
    Guid workflowId,
    Call call
)
public:
void EnqueueCall(
    Guid workflowId, 
    Call^ call
)
function enqueueCall(workflowId, call);

Parameters

  • workflowId
    Type: Guid
    Workflow instance ID.
  • call
    Type: Call
    Call.

Exceptions

Exception Condition
InvalidOperationException Thrown if the workflow instance ID is Guid.Empty.
InvalidOperationException Thrown if the call is null.
InvalidOperationException Thrown if it is a middle of shutdown.

See Also

CommunicationsWorkflowRuntimeService Class

Microsoft.Rtc.Workflow.Activities Namespace