C# Класс IrcShark.Extensions.Terminal.Completion

The Completion struct is used for the ConsoleTerminal autocompletition.
Показать файл Открыть проект

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

Свойство Тип Описание
Prefix string
Result string[]

Открытые методы

Метод Описание
Completion ( string prefix, string result ) : System

Initializes a new instance of the Completion struct.

Описание методов

Completion() публичный Метод

Initializes a new instance of the Completion struct.
public Completion ( string prefix, string result ) : System
prefix string The prefix that ws to complete.
result string The result of the completion.
Результат System

Описание свойств

Prefix публичное свойство

Saves the prefix, that was completed.
public string Prefix
Результат string

Result публичное свойство

Saves all results of a completition.
public string[] Result
Результат string[]