FilterableAttribute(Boolean) Konstruktor

Definition

Initialisiert eine neue Instanz der FilterableAttribute-Klasse.

public:
 FilterableAttribute(bool filterable);
public FilterableAttribute (bool filterable);
new System.Web.UI.FilterableAttribute : bool -> System.Web.UI.FilterableAttribute
Public Sub New (filterable As Boolean)

Parameter

filterable
Boolean

true gibt an, dass die Eigenschaft, auf die das Attribut angewendet wird, Gerätefilterung unterstützt, andernfalls false.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Sie ein FilterableAttribute Attribut auf eine Eigenschaft eines benutzerdefinierten Steuerelements anwenden. Dieser Konstruktor wird intern von ASP.NET aufgerufen, um ein FilterableAttribute Objekt zu erstellen, das das Attribut darstellt.


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;
            }
        }
    }
}

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

Hinweise

Verwenden Sie diesen Konstruktor, um eine neue Instanz der FilterableAttribute Klasse zu erstellen. Die folgende Tabelle zeigt den anfänglichen Eigenschaftswert für eine Instanz der FilterableAttribute Klasse.

Eigenschaft Anfangswert
Filterable Der Wert des filterable-Parameters.

Gilt für

Siehe auch