C# Класс IrcDotNet.IrcChannelUser

Наследование: INotifyPropertyChanged
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
DeOp ( ) : void

Removes operator privileges from the user in the channel.

DeVoice ( ) : void

Devoices the user in the channel

Kick ( string comment = null ) : void

Kicks the user from the channel, giving the specified comment.

Op ( ) : void

Gives the user operator privileges in the channel.

ToString ( ) : string

Returns a string representation of this instance.

Voice ( ) : void

Voices the user in the channel.

Защищенные методы

Метод Описание
OnModesChanged ( EventArgs e ) : void

Raises the ModesChanged event.

OnPropertyChanged ( PropertyChangedEventArgs e ) : void

Raises the PropertyChanged event.

Приватные методы

Метод Описание
HandleModeChanged ( bool add, char mode ) : void
IrcChannelUser ( IrcUser user, IEnumerable modes = null ) : System

Описание методов

DeOp() публичный Метод

Removes operator privileges from the user in the channel.
public DeOp ( ) : void
Результат void

DeVoice() публичный Метод

Devoices the user in the channel
public DeVoice ( ) : void
Результат void

Kick() публичный Метод

Kicks the user from the channel, giving the specified comment.
public Kick ( string comment = null ) : void
comment string The comment to give for the kick, or for none.
Результат void

OnModesChanged() защищенный Метод

Raises the ModesChanged event.
protected OnModesChanged ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
Результат void

OnPropertyChanged() защищенный Метод

Raises the PropertyChanged event.
protected OnPropertyChanged ( PropertyChangedEventArgs e ) : void
e System.ComponentModel.PropertyChangedEventArgs The instance containing the event data.
Результат void

Op() публичный Метод

Gives the user operator privileges in the channel.
public Op ( ) : void
Результат void

ToString() публичный Метод

Returns a string representation of this instance.
public ToString ( ) : string
Результат string

Voice() публичный Метод

Voices the user in the channel.
public Voice ( ) : void
Результат void