Table of Contents

Interface ICompletionSource

Namespace
Loehnert.Lisrt.Contracts
Assembly
Loehnert.Lisrt.dll

Represents a source for providing completion items.

public interface ICompletionSource

Remarks

This interface defines a contract for retrieving a collection of completion items, which can be used to provide suggestions or auto-completions in various contexts.

Methods

GetCompletions()

Retrieves a collection of completion items.

IEnumerable<ICompletion> GetCompletions()

Returns

IEnumerable<ICompletion>

A collection of completion items.