C# Class IrcShark.Chatting.Irc.IrcServerEndPoint

Represents an irc endpoint for an irc connection.
Inheritance: IServer
ファイルを表示 Open project: hapm/IrcShark Class Usage Examples

Public Methods

Method Description
Equals ( object obj ) : bool

Compares this IrcNetwork with another object.

GetHashCode ( ) : int

Gets the hashcode of this object.

GetIPAddress ( ) : IPAddress

Gets the ip for this IrcServerAddress.

IrcServerEndPoint ( IPAddress address, int port ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( IrcNetwork network, string hostName ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( IrcNetwork network, string hostName, int port ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( IrcNetwork network, string name, string address ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( IrcNetwork network, string name, string address, int port ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( string hostName ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( string name, IPAddress address, int port ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( string hostName, int port ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( string name, string address ) : System

Initializes a new instance of the IrcServerEndPoint class.

IrcServerEndPoint ( string name, string address, int port ) : System

Initializes a new instance of the IrcServerEndPoint class.

Method Details

Equals() public method

Compares this IrcNetwork with another object.
public Equals ( object obj ) : bool
obj object The object to compare to.
return bool

GetHashCode() public method

Gets the hashcode of this object.
public GetHashCode ( ) : int
return int

GetIPAddress() public method

Gets the ip for this IrcServerAddress.
public GetIPAddress ( ) : IPAddress
return System.Net.IPAddress

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( IPAddress address, int port ) : System
address System.Net.IPAddress /// The ip address of the irc server. ///
port int /// The port where the irc server is listening on. ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( IrcNetwork network, string hostName ) : System
network IrcNetwork The network, this IrcServerEndPoint belongs to.
hostName string /// The dns of the irc server as a . ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( IrcNetwork network, string hostName, int port ) : System
network IrcNetwork The network, this IrcServerEndPoint belongs to.
hostName string /// The dns of the irc server as a . ///
port int /// The port where the irc server is listening on. ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( IrcNetwork network, string name, string address ) : System
network IrcNetwork The network, this IrcServerEndPoint belongs to.
name string /// The displayed name of the server. ///
address string /// The dns of the irc server as a . ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( IrcNetwork network, string name, string address, int port ) : System
network IrcNetwork The network, this IrcServerEndPoint belongs to.
name string /// The displayed name of the server. ///
address string /// The dns of the irc server as a . ///
port int /// The port where the irc server is listening on. ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( string hostName ) : System
hostName string /// The dns of the irc server as a . ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( string name, IPAddress address, int port ) : System
name string /// The displayed name of the server. ///
address System.Net.IPAddress /// The ip address of the irc server. ///
port int /// The port where the irc server is listening on. ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( string hostName, int port ) : System
hostName string /// The dns of the irc server as a . ///
port int /// The port where the irc server is listening on. ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( string name, string address ) : System
name string /// The displayed name of the server. ///
address string /// The dns of the irc server as a . ///
return System

IrcServerEndPoint() public method

Initializes a new instance of the IrcServerEndPoint class.
public IrcServerEndPoint ( string name, string address, int port ) : System
name string /// The displayed name of the server. ///
address string /// The dns of the irc server as a . ///
port int /// The port where the irc server is listening on. ///
return System