BindableProperty.ValidateValueDelegate<TPropertyType> 代理人

定義

BindableProperty.ValidateValue の厳密に型指定された委任。

public delegate bool BindableProperty.ValidateValueDelegate<in TPropertyType>(BindableObject bindable, TPropertyType value);
type BindableProperty.ValidateValueDelegate<'PropertyType> = delegate of BindableObject * 'PropertyType -> bool

型パラメーター

TPropertyType

バインドされたプロパティの型。

この型パラメーターは反変です。 つまり、指定した型、または弱い派生型のいずれかを使用することができます。 共変性および反変性の詳細については、「ジェネリックの共変性と反変性」をご覧ください。

パラメーター

bindable
BindableObject

プロパティを含むバインド可能なオブジェクト。

value
TPropertyType

検証する値。

戻り値

適用対象