FilterableAttribute(Boolean) Construtor

Definição

Inicializa uma nova instância da classe FilterableAttribute.Initializes a new instance of the FilterableAttribute class.

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

Parâmetros

filterable
Boolean

true para indicar que a propriedade à qual o atributo é aplicado dá suporte a filtragem de dispositivos, caso contrário, false.true to indicate that the property to which the attribute is applied supports device filtering; otherwise, false.

Exemplos

O exemplo de código a seguir demonstra como aplicar um FilterableAttribute atributo a uma propriedade de um controle personalizado.The following code example demonstrates how to apply a FilterableAttribute attribute to a property of a custom control. Esse construtor é chamado internamente pelo ASP.NET para criar um FilterableAttribute objeto que representa o atributo.This constructor is called internally by ASP.NET to create a FilterableAttribute object that represents the attribute.


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

Comentários

Use este construtor para criar uma nova instância da FilterableAttribute classe.Use this constructor to create a new instance of the FilterableAttribute class. A tabela a seguir mostra o valor da propriedade inicial para uma instância da FilterableAttribute classe.The following table shows the initial property value for an instance of the FilterableAttribute class.

PropriedadeProperty Valor inicialInitial Value
Filterable O valor do filterable parâmetro.The value of the filterable parameter.

Aplica-se a

Confira também