Show / Hide Table of Contents

Class Participant

The type Participant.

Inheritance
System.Object
Entity
Participant
Inherited Members
Entity.Id
Entity.AdditionalData
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public class Participant : Entity

Properties

View Source

Info

Gets or sets info.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "info", Required = Required.Default)]
public ParticipantInfo Info { get; set; }
Property Value
Type Description
ParticipantInfo
View Source

IsInLobby

Gets or sets is in lobby.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isInLobby", Required = Required.Default)]
public bool? IsInLobby { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

IsMuted

Gets or sets is muted.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "isMuted", Required = Required.Default)]
public bool? IsMuted { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

MediaStreams

Gets or sets media streams.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "mediaStreams", Required = Required.Default)]
public IEnumerable<MediaStream> MediaStreams { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<MediaStream>
View Source

Metadata

Gets or sets metadata.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "metadata", Required = Required.Default)]
public string Metadata { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Generated by DocFX