Show / Hide Table of Contents

Class AudioRoutingGroup

The type Audio Routing Group.

Inheritance
System.Object
Entity
AudioRoutingGroup
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 AudioRoutingGroup : Entity

Properties

View Source

Owner

Gets or sets owner.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "owner", Required = Required.Default)]
public string Owner { get; set; }
Property Value
Type Description
System.String
View Source

Receivers

Gets or sets receivers.

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

RoutingMode

Gets or sets routing mode.

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

Sources

Gets or sets sources.

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