Method | Description | |
---|---|---|
Equals ( object obj ) : bool |
Compare this UserInfo with other objects.
|
|
GetHashCode ( ) : int |
Gets the hashcode of this UserInfo.
|
|
ToString ( ) : string |
Gives back the raw host this UserInfo was created from.
|
|
UserInfo ( |
Initializes a new instance of the UserInfo class based on the host.
|
|
UserInfo ( |
Initializes a new instance of the UserInfo class based on the given IrcLine.
|
|
UserInfo ( |
Initializes a new instance of the UserInfo class, based on an existing UserInfo.
|
|
UserInfo ( string nickName, string ident, string host, |
Initializes a new instance of the UserInfo class with the given values.
|
public Equals ( object obj ) : bool | ||
obj | object | /// The object to compare with. /// |
return | bool |
public UserInfo ( |
||
client |
/// The |
|
host | string |
/// A host as described in rfc 1459 as a |
return | System |
public UserInfo ( |
||
baseLine |
/// The |
|
return | System |
public UserInfo ( |
||
source | The UserInfo instance to copy from. | |
return | System |
public UserInfo ( string nickName, string ident, string host, |
||
nickName | string | The nickname of the user. |
ident | string | The ident of the user. |
host | string | The user host. |
client | The client, where the user was seen on. | |
return | System |