IRCUser

Inherits: RefCounted < Object

Represents an IRC user and their connection prefix state.

Description

A data container that stores information about an IRC user, including their nickname, username, hostname, account registration, and away status. Typically assembled from IRC origin prefixes (nick!user@host).

Tutorials

Properties

String

account

""

String

away_message

""

String

hostname

""

bool

is_away

false

String

nick

""

String

realname

""

String

username

""

Methods

String

get_prefix() const


Property Descriptions

String account = "" 🔗

There is currently no description for this property. Please help us by contributing one!


String away_message = "" 🔗

  • void set_away_message(value: String)

  • String get_away_message()

There is currently no description for this property. Please help us by contributing one!


String hostname = "" 🔗

There is currently no description for this property. Please help us by contributing one!


bool is_away = false 🔗

  • void set_is_away(value: bool)

  • bool get_is_away()

There is currently no description for this property. Please help us by contributing one!


String nick = "" 🔗

There is currently no description for this property. Please help us by contributing one!


String realname = "" 🔗

There is currently no description for this property. Please help us by contributing one!


String username = "" 🔗

There is currently no description for this property. Please help us by contributing one!


Method Descriptions

String get_prefix() const 🔗

Returns the fully assembled user mask prefix in the format of 'nickname!username@hostname'.