FilterableAttributeとは? わかりやすく解説

FilterableAttribute クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

属性適用するプロパティデバイスフィルタ処理サポートするかどうか指定します。このクラス継承できません。

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)
構文構文

<AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Property)>
 _
Public NotInheritable Class
 FilterableAttribute
    Inherits Attribute
Dim instance As FilterableAttribute
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Property)] 
public sealed class FilterableAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class|AttributeTargets::Property)] 
public ref class FilterableAttribute sealed
 : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Property)
 */ 
public final class FilterableAttribute extends
 Attribute
AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Property) 
public final class FilterableAttribute extends
 Attribute
解説解説
使用例使用例

FilterableAttribute 属性カスタム コントロールプロパティ適用してプロパティデバイスフィルタ処理サポートされていないことを示す方法次のコード例示します

Imports System.ComponentModel
Imports System.Web.UI

Namespace Samples.AspNet.VB.Controls

    Public Class SimpleCustomControl
        Inherits System.Web.UI.WebControls.WebControl

        Dim _productID As String

        ' Set Filterable attribute to specify that this
        ' property does not support device filtering.
        <Bindable(True), Filterable(False)>
 Property ProductID() As String
            Get
                Return _productID
            End Get

            Set(ByVal Value As
 String)
                _productID = Value
            End Set
        End Property
    End Class

End Namespace

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Samples.AspNet.CS.Controls
{
    public class SimpleCustomControl : WebControl
    {
        private string _productID;

        // Set Filterable attribute to specify that this
        // property does not support device filtering.
        [Bindable(true)]
        [Filterable(false)]
        public string ProductID
        {
            get
            {
                return _productID;
            }
            set
            {
                _productID = value;
            }
        }
    }
}

.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
   System.Attribute
    System.Web.UI.FilterableAttribute
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

FilterableAttribute コンストラクタ

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

FilterableAttribute クラス新しインスタンス初期化します。

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public Sub New ( _
    filterable As Boolean _
)
Dim filterable As Boolean

Dim instance As New FilterableAttribute(filterable)
public FilterableAttribute (
    bool filterable
)
public:
FilterableAttribute (
    bool filterable
)
public FilterableAttribute (
    boolean filterable
)
public function FilterableAttribute (
    filterable : boolean
)

パラメータ

filterable

属性適用するプロパティデバイスフィルタ処理サポートされていることを示す場合trueそれ以外場合は、false

解説解説
使用例使用例

FilterableAttribute 属性カスタム コントロールプロパティ適用する方法次のコード例示します。このコンストラクタASP.NET によって内部的に呼び出され、この属性を表す FilterableAttribute オブジェクト作成します

Imports System.ComponentModel
Imports System.Web.UI

Namespace Samples.AspNet.VB.Controls

    Public Class SimpleCustomControl
        Inherits System.Web.UI.WebControls.WebControl

        Dim _productID As String

        ' Set Filterable attribute to specify that this
        ' property does not support device filtering.
        <Bindable(True), Filterable(False)>
 Property ProductID() As String
            Get
                Return _productID
            End Get

            Set(ByVal Value As
 String)
                _productID = Value
            End Set
        End Property
    End Class

End Namespace

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Samples.AspNet.CS.Controls
{
    public class SimpleCustomControl : WebControl
    {
        private string _productID;

        // Set Filterable attribute to specify that this
        // property does not support device filtering.
        [Bindable(true)]
        [Filterable(false)]
        public string ProductID
        {
            get
            {
                return _productID;
            }
            set
            {
                _productID = value;
            }
        }
    }
}

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
FilterableAttribute クラス
FilterableAttribute メンバ
System.Web.UI 名前空間
Filterable

FilterableAttribute フィールド


パブリック フィールドパブリック フィールド

参照参照

関連項目

FilterableAttribute クラス
System.Web.UI 名前空間
Filterable

その他の技術情報

属性使用したメタデータ拡張

FilterableAttribute プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Filterable FilterableAttribute 属性適用するプロパティデバイスフィルタ処理サポートされているかどうかを示す値を取得します
パブリック プロパティ TypeId  派生クラス実装されている場合は、この Attribute一意識別子取得します。 ( Attribute から継承されます。)
参照参照

関連項目

FilterableAttribute クラス
System.Web.UI 名前空間
Filterable

その他の技術情報

属性使用したメタデータ拡張

FilterableAttribute メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Equals オーバーロードされますオーバーライドされます。  
パブリック メソッド GetCustomAttribute  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用され指定した型のカスタム属性取得します。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttributes  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されカスタム属性配列取得します。 ( Attribute から継承されます。)
パブリック メソッド GetHashCode オーバーライドされます。 このインスタンスハッシュ コード返します
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド IsDefaultAttribute オーバーライドされます。 FilterableAttribute クラス現在のインスタンスDefault 属性等しかどうか判断します
パブリック メソッド IsDefined  オーバーロードされます指定した型のカスタム属性が、アセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されているかどうか判断します。 ( Attribute から継承されます。)
パブリック メソッド IsObjectFilterable 指定した Objectデバイスフィルタ処理サポートされているかどうか判断します
パブリック メソッド IsPropertyFilterable プロパティデバイスフィルタ処理サポートされているかどうか判断します
パブリック メソッド IsTypeFilterable 指定したデータ型デバイスフィルタ処理サポートされているかどうか判断します
パブリック メソッド Match  派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンス等しかどうかを示す値を返します。 ( Attribute から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

FilterableAttribute クラス
System.Web.UI 名前空間
Filterable

その他の技術情報

属性使用したメタデータ拡張

FilterableAttribute メンバ

属性適用するプロパティデバイスフィルタ処理サポートするかどうか指定します。このクラス継承できません。

FilterableAttribute データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド FilterableAttribute FilterableAttribute クラス新しインスタンス初期化します。
パブリック フィールドパブリック フィールド
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Filterable FilterableAttribute 属性適用するプロパティデバイスフィルタ処理サポートされているかどうかを示す値を取得します
パブリック プロパティ TypeId  派生クラス実装されている場合は、この Attribute一意識別子取得します。(Attribute から継承されます。)
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Equals オーバーロードされますオーバーライドされます。  
パブリック メソッド GetCustomAttribute  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用され指定した型のカスタム属性取得します。 (Attribute から継承されます。)
パブリック メソッド GetCustomAttributes  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されカスタム属性配列取得します。 (Attribute から継承されます。)
パブリック メソッド GetHashCode オーバーライドされます。 このインスタンスハッシュ コード返します
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド IsDefaultAttribute オーバーライドされますFilterableAttribute クラス現在のインスタンスDefault 属性等しかどうか判断します
パブリック メソッド IsDefined  オーバーロードされます指定した型のカスタム属性が、アセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されているかどうか判断します。 (Attribute から継承されます。)
パブリック メソッド IsObjectFilterable 指定した Objectデバイスフィルタ処理サポートされているかどうか判断します
パブリック メソッド IsPropertyFilterable プロパティデバイスフィルタ処理サポートされているかどうか判断します
パブリック メソッド IsTypeFilterable 指定したデータ型デバイスフィルタ処理サポートされているかどうか判断します
パブリック メソッド Match  派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンス等しかどうかを示す値を返します。 (Attribute から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

FilterableAttribute クラス
System.Web.UI 名前空間
Filterable

その他の技術情報

属性使用したメタデータ拡張



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「FilterableAttribute」の関連用語

FilterableAttributeのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FilterableAttributeのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS