Table of Contents

Class LocalReportingEventArgs

Namespace
Exiled.Events.EventArgs.Server
Assembly
Exiled.Events.dll

Contains information before a report is sent to local administrators.

public class LocalReportingEventArgs : IPlayerEvent, IDeniableEvent, IExiledEvent
Inheritance
LocalReportingEventArgs
Implements
Inherited Members
Extension Methods

Constructors

LocalReportingEventArgs(Player, Player, string, bool)

Initializes a new instance of the LocalReportingEventArgs class.

public LocalReportingEventArgs(Player issuer, Player target, string reason, bool isAllowed = true)

Parameters

issuer Player
target Player
reason string
isAllowed bool

Properties

IsAllowed

Gets or sets a value indicating whether the report can be processed.

public bool IsAllowed { get; set; }

Property Value

bool

Player

Gets the reporter.

public Player Player { get; }

Property Value

Player

Reason

Gets or sets the report reason.

public string Reason { get; set; }

Property Value

string

Target

Gets the reported player.

public Player Target { get; }

Property Value

Player