C# Class Pdelvo.Minecraft.Proxy.Library.Plugins.Events.CheckIPEventArgs

Provides information about a given ip address and let plugins decide if the present address is alowed to join
Inheritance: System.EventArgs
Mostrar archivo Open project: pdelvo/Pdelvo.Minecraft.Proxy Class Usage Examples

Public Methods

Method Description
CheckIPEventArgs ( IPAddress remoteAddress, bool allowJoining ) : System

Creates a new instance of the CheckIPEventArgs class.

Method Details

CheckIPEventArgs() public method

Creates a new instance of the CheckIPEventArgs class.
public CheckIPEventArgs ( IPAddress remoteAddress, bool allowJoining ) : System
remoteAddress System.Net.IPAddress The ip address of the remote end point.
allowJoining bool True if the user is allowed to join, otherwise false.
return System