FilterableAttribute(Boolean) Konstruktor

Definíció

Inicializálja a FilterableAttribute osztály új példányát.

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

Paraméterek

filterable
Boolean

trueannak jelzése, hogy az attribútumot alkalmazó tulajdonság támogatja az eszközszűrést; egyéb esetben. false

Példák

Az alábbi példakód bemutatja, hogyan alkalmazhat attribútumot FilterableAttribute egy egyéni vezérlő tulajdonságára. Ezt a konstruktort a ASP.NET meghívja egy FilterableAttribute objektum létrehozásához, amely az attribútumot jelöli.


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

Megjegyzések

Ezzel a konstruktorsal létrehozhatja az osztály új példányát FilterableAttribute . Az alábbi táblázat az osztály egy példányának kezdeti tulajdonságértékét FilterableAttribute mutatja be.

Ingatlan Kezdeti érték
Filterable A paraméter értéke filterable .

A következőre érvényes:

Lásd még