C# Class IrcDotNet.IrcChannelInfo

Stores information about a particular channel on an IRC network.
ファイルを表示 Open project: IrcDotNet/IrcDotNet

Public Properties

Property Type Description
Name string
Topic string
VisibleUsersCount int?

Public Methods

Method Description
IrcChannelInfo ( string name, int visibleUsersCount, string topic )

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

Method Details

IrcChannelInfo() public method

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.

Property Details

Name public_oe property

The name of the channel.
public string Name
return string

Topic public_oe property

The current topic of the channel.
public string Topic
return string

VisibleUsersCount public_oe property

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