Show / Hide Table of Contents

    Class CallCollectionExtensions

    Extensions for call collections.

    Inheritance
    Object
    CallCollectionExtensions
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    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.

    Back to top Copyright (c) Microsoft Corporation. All rights reserved.