C# Class IrcDotNet.IrcChannelInfo

Stores information about a particular channel on an IRC network.
Afficher le fichier Open project: IrcDotNet/IrcDotNet

Méthodes publiques

Свойство Type Description
Name string
Topic string
VisibleUsersCount int?

Méthodes publiques

Méthode Description
IrcChannelInfo ( string name, int visibleUsersCount, string topic )

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

Method Details

IrcChannelInfo() public méthode

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
Résultat string

Topic public_oe property

The current topic of the channel.
public string Topic
Résultat string

VisibleUsersCount public_oe property

The number of visible users in the channel.
public int? VisibleUsersCount
Résultat int?