Class ChangingIntercomMuteStatusEventArgs
Contains all information before a player's intercom mute status is changed.
public class ChangingIntercomMuteStatusEventArgs : IPlayerEvent, IDeniableEvent, IExiledEvent
- Inheritance
-
ChangingIntercomMuteStatusEventArgs
- Implements
- Inherited Members
- Extension Methods
Constructors
ChangingIntercomMuteStatusEventArgs(Player, bool, bool)
Initializes a new instance of the ChangingIntercomMuteStatusEventArgs class.
public ChangingIntercomMuteStatusEventArgs(Player player, bool isMuted, bool isAllowed = true)
Parameters
Properties
IsAllowed
Gets or sets a value indicating whether the player can be intercom muted/unmuted.
public bool IsAllowed { get; set; }
Property Value
IsMuted
Gets a value indicating whether the player is being intercom muted or unmuted.
public bool IsMuted { get; }
Property Value
Player
Gets the player who's being intercom muted/unmuted.
public Player Player { get; }