AutoCompleteSelector<T> Delegate

Summary

Represents the selector used by the AutoCompleteBox control to determine how the specified text should be modified with an item.
Namespace
Avalonia.Controls
Interfaces
  • ICloneable
  • ISerializable
Base Types
  • object
  • Delegate
  • MulticastDelegate
graph BT Type-->Base0["MulticastDelegate"] Base0-->Base1["Delegate"] Base1-->Base2["object"] Type-.->Interface0["ICloneable"] Type-.->Interface1["ISerializable"] Type["AutoCompleteSelector<T>"] class Type type-node

Syntax

public delegate string AutoCompleteSelector<T>(string search, T item) : MulticastDelegate, 
    ICloneable, ISerializable

Type Parameters

Name Description
T The type used for filtering the AutoCompleteBox. This type can be either a string or an object.

Operators

Name Value Summary
operator !=(Delegate, Delegate) bool
Inherited from Delegate
operator !=(MulticastDelegate, MulticastDelegate) bool
Inherited from MulticastDelegate
operator ==(Delegate, Delegate) bool
Inherited from Delegate
operator ==(MulticastDelegate, MulticastDelegate) bool
Inherited from MulticastDelegate