PageParserFilter.ProcessDataBindingAttribute(String, String, String) メソッド

定義

パーサー フィルターが属性内のデータ バインディング式を処理するかどうかを示す値を返します。

public:
 virtual bool ProcessDataBindingAttribute(System::String ^ controlId, System::String ^ name, System::String ^ value);
public virtual bool ProcessDataBindingAttribute (string controlId, string name, string value);
abstract member ProcessDataBindingAttribute : string * string * string -> bool
override this.ProcessDataBindingAttribute : string * string * string -> bool
Public Overridable Function ProcessDataBindingAttribute (controlId As String, name As String, value As String) As Boolean

パラメーター

controlId
String

データ バインディング属性が格納されたコントロールの ID。

name
String

データ バインディング式を持つ属性の名前。

value
String

データ バインディング式。

戻り値

Boolean

パーサー フィルターがデータ バインディング属性を処理する場合は true。それ以外の場合は false。 既定値は、false です。

注釈

カスタム PageParserFilter クラスをProcessDataBindingAttribute実装するときにパーサー フィルターがデータ バインディング式を処理できるように、メソッドをオーバーライドできます。 属性で使用されるデータ バインディング式の例を次に示します <%# expression %>

ProcessDataBindingAttributeは、.NET Framework バージョン 3.5 で導入されています。 詳細については、「.NET Framework のバージョンおよび依存関係」を参照してください。

適用対象