C# 클래스 IrcDotNet.IrcChannelUser

상속: INotifyPropertyChanged
파일 보기 프로젝트 열기: IrcDotNet/IrcDotNet 1 사용 예제들

공개 메소드들

메소드 설명
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