Class CallCollectionExtensions
Extensions for call collections.
Inherited Members
Namespace: Microsoft.Graph.Communications.Calls
Assembly: Microsoft.Graph.Communications.Calls.dll
Syntax
public static class CallCollectionExtensions
Methods
AddAsync(ICallCollection, JoinMeetingParameters, Guid, CancellationToken)
Join a new meeting with the provided parameters
Declaration
public static Task<ICall> AddAsync(this ICallCollection callCollection, JoinMeetingParameters parameters, Guid scenarioId = default(Guid), CancellationToken cancellationToken = default(CancellationToken))
Parameters
Type | Name | Description |
---|---|---|
ICallCollection | callCollection | The call collection. |
JoinMeetingParameters | parameters | The join meeting parameters. |
Guid | scenarioId | The scenario identitifer. This parameter should be used for tracking scenarios across multiple calls. Automatically generated by the SDK if not provided. |
CancellationToken | cancellationToken | The cancellation token. |
Returns
Type | Description |
---|---|
Task<ICall> | The stateful call object once the call is joined. |