C# Class IrcShark.Extensions.Terminal.Completion

The Completion struct is used for the ConsoleTerminal autocompletition.
Mostrar archivo Open project: hapm/IrcShark

Public Properties

Property Type Description
Prefix string
Result string[]

Public Methods

Method Description
Completion ( string prefix, string result ) : System

Initializes a new instance of the Completion struct.

Method Details

Completion() public method

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.
return System

Property Details

Prefix public_oe property

Saves the prefix, that was completed.
public string Prefix
return string

Result public_oe property

Saves all results of a completition.
public string[] Result
return string[]