C# Класс IrcDotNet.IrcChannelInfo

Stores information about a particular channel on an IRC network.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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?