Show / Hide Table of Contents

    Class DominantSpeakerChangedEventArgs

    Event arguments of the DominantSpeakerChanged event.

    Inheritance
    Object
    EventArgs
    DominantSpeakerChangedEventArgs
    Inherited Members
    EventArgs.Empty
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Microsoft.Skype.Bots.Media
    Assembly: Microsoft.Skype.Bots.Media.dll
    Syntax
    public class DominantSpeakerChangedEventArgs : EventArgs

    Constructors

    DominantSpeakerChangedEventArgs()

    Declaration
    public DominantSpeakerChangedEventArgs()

    Fields

    None

    Constant value which indicates there is no dominant speaker in the conference.

    Declaration
    public const uint None = 4294967295U
    Field Value
    Type Description
    UInt32

    Properties

    CurrentDominantSpeaker

    Current dominant speaker in the conference. The value is the MediaSourceId (MSI) of the dominant speaker in the conference. If there is no dominant speaker in the conference this value will be None (0xFFFFFFFF).

    Declaration
    public uint CurrentDominantSpeaker { get; set; }
    Property Value
    Type Description
    UInt32

    DominantSpeakerHistory

    History of the dominant speakers. However, DominantSpeakerHistory won't contain any element to indicate the absence of dominant speaker in the conference.

    Declaration
    public uint[] DominantSpeakerHistory { get; set; }
    Property Value
    Type Description
    UInt32[]
    Back to top Copyright (c) Microsoft Corporation. All rights reserved.