Sicherung
This commit is contained in:
16
AutoCompleteTextBox/Editors/IComboSuggestionProvider.cs
Normal file
16
AutoCompleteTextBox/Editors/IComboSuggestionProvider.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Collections;
|
||||
|
||||
|
||||
namespace AutoCompleteTextBox.Editors
|
||||
{
|
||||
public interface IComboSuggestionProvider
|
||||
{
|
||||
|
||||
#region Public Methods
|
||||
|
||||
IEnumerable GetSuggestions(string filter);
|
||||
IEnumerable GetFullCollection();
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user