Class MutedConfig
Muted configuration.
Inheritance
System.Object
MutedConfig
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class MutedConfig : object
Properties
AudioMuted
Gets or sets whether audio is muted.
Declaration
public bool? AudioMuted { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
AudioUnmuteDisabled
Gets or sets whether audio unmute is disabled.
Declaration
public bool? AudioUnmuteDisabled { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
ExcludedClientIds
Gets or sets the excluded client identifiers.
Declaration
public string[] ExcludedClientIds { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
ExcludedConnectionIds
Gets or sets the excluded connection identifiers.
Declaration
public string[] ExcludedConnectionIds { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
ExcludedDeviceIds
Gets or sets the excluded device identifiers.
Declaration
public string[] ExcludedDeviceIds { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
ExcludedUserIds
Gets or sets the excluded user identifiers.
Declaration
public string[] ExcludedUserIds { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
VideoMuted
Gets or sets whether video is muted.
Declaration
public bool? VideoMuted { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
VideoUnmuteDisabled
Gets or sets whether video unmute is disabled.
Declaration
public bool? VideoUnmuteDisabled { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Methods
FromJson(String)
Deserializes a muted configuration from JSON.
Declaration
public static MutedConfig FromJson(string mutedConfigJson)
Parameters
Type | Name | Description |
---|---|---|
System.String | mutedConfigJson | The muted configuration as JSON. |
Returns
Type | Description |
---|---|
MutedConfig | The muted configuration. |
ToJson()
Serializes this muted configuration to JSON.
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String | The muted configuration as JSON. |
ToJson(MutedConfig)
Serializes a muted configuration to JSON.
Declaration
public static string ToJson(MutedConfig mutedConfig)
Parameters
Type | Name | Description |
---|---|---|
MutedConfig | mutedConfig | The muted configuration. |
Returns
Type | Description |
---|---|
System.String | The muted configuration as JSON. |