C# 클래스 IrcDotNet.IrcChannelInfo

Stores information about a particular channel on an IRC network.
파일 보기 프로젝트 열기: IrcDotNet/IrcDotNet

공개 프로퍼티들

프로퍼티 타입 설명
Name string
Topic string
VisibleUsersCount int?

공개 메소드들

메소드 설명
IrcChannelInfo ( string name, int visibleUsersCount, string topic )

Initializes a new instance of the IrcChannelInfo structure with the specified properties.

메소드 상세

IrcChannelInfo() 공개 메소드

Initializes a new instance of the IrcChannelInfo structure with the specified properties.
public IrcChannelInfo ( string name, int visibleUsersCount, string topic )
name string The name of the channel.
visibleUsersCount int The number of visible users in the channel.
topic string The current topic of the channel.

프로퍼티 상세

Name 공개적으로 프로퍼티

The name of the channel.
public string Name
리턴 string

Topic 공개적으로 프로퍼티

The current topic of the channel.
public string Topic
리턴 string

VisibleUsersCount 공개적으로 프로퍼티

The number of visible users in the channel.
public int? VisibleUsersCount
리턴 int?