IRC.NET


IrcLocalUser

Defined in IrcDotNet.dll.
Represents the local user of a specific IrcClient. The local user is the user as which the client has connected and registered, and may be either a normal user or service.

Instance members

Instance memberDescription
IsService
Signature: bool
Gets whether the local user is a service or normal user.
JoinedChannel
Signature: IEvent<EventHandler<IrcChannelEventArgs>,IrcChannelEventArgs>
Occurs when the local user has joined a channel.
LeftChannel
Signature: IEvent<EventHandler<IrcChannelEventArgs>,IrcChannelEventArgs>
Occurs when the local user has left a channel.
MessageReceived
Signature: IEvent<EventHandler<IrcMessageEventArgs>,IrcMessageEventArgs>
Modifiers: abstract
Occurs when the local user has received a message.
MessageSent
Signature: IEvent<EventHandler<IrcMessageEventArgs>,IrcMessageEventArgs>
Occurs when the local user has sent a message.
Modes
Signature: ReadOnlySet<char>
Gets a read-only collection of the modes the user currently has.
ModesChanged
Signature: IEvent<EventHandler<EventArgs>,EventArgs>
Occurs when the modes of the local user have changed.
NoticeReceived
Signature: IEvent<EventHandler<IrcMessageEventArgs>,IrcMessageEventArgs>
Modifiers: abstract
Occurs when the local user has received a notice.
NoticeSent
Signature: IEvent<EventHandler<IrcMessageEventArgs>,IrcMessageEventArgs>
Occurs when the local user has sent a notice.
PreviewMessageReceived
Signature: IEvent<EventHandler<IrcPreviewMessageEventArgs>,IrcPreviewMessageEventArgs>
Occurs when the local user has received a message, before the IrcLocalUser.MessageReceived event.
PreviewNoticeReceived
Signature: IEvent<EventHandler<IrcPreviewMessageEventArgs>,IrcPreviewMessageEventArgs>
Occurs when the local user has received a notice, before the IrcLocalUser.NoticeReceived event.
ServiceDescription
Signature: string
Gets the distribution of the service, which determines its visibility to users on specific servers.
ServiceDistribution
Signature: string
Gets the distribution of the service, which determines its visibility to users on specific servers.
Fork me on GitHub