Class IssuingMuteEventArgs
Contains all information before muting a player.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Exiled.Events.EventArgs.Player
Assembly: Exiled.Events.dll
Syntax
public class IssuingMuteEventArgs : IPlayerEvent, IDeniableEvent, IExiledEvent
Constructors
| Improve this Doc View SourceIssuingMuteEventArgs(Player, Boolean, Boolean)
Initializes a new instance of the IssuingMuteEventArgs class.
Declaration
public IssuingMuteEventArgs(Player player, bool isIntercom, bool isAllowed = true)
Parameters
Type | Name | Description |
---|---|---|
Player | player | |
System.Boolean | isIntercom | |
System.Boolean | isAllowed |
Properties
| Improve this Doc View SourceIsAllowed
Gets or sets a value indicating whether or not the player can be muted.
Declaration
public bool IsAllowed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsIntercom
Gets or sets a value indicating whether the player is being intercom muted or not.
Declaration
public bool IsIntercom { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Player
Gets the player who's being muted.
Declaration
public Player Player { get; }
Property Value
Type | Description |
---|---|
Player |