Aracılığıyla paylaş


FilterableAttribute.Filterable Özellik

Tanım

Özniteliğin uygulandığı özelliğin cihaz filtrelemeyi FilterableAttribute destekleyip desteklemediğini belirten bir değer alır.

public:
 property bool Filterable { bool get(); };
public bool Filterable { get; }
member this.Filterable : bool
Public ReadOnly Property Filterable As Boolean

Özellik Değeri

Boolean

true özniteliğinin uygulandığı özelliğin cihaz filtrelemeyi desteklediğini belirtmek için; aksi takdirde , false.

Örnekler

Aşağıdaki kod örneği, özelliğin cihaz filtrelemesini desteklemediğini belirtmek için özel denetimin özelliğine özniteliğin nasıl uygulanacağını FilterableAttribute gösterir.


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

Açıklamalar

özniteliğinin Filterable uygulandığı özelliğin cihaz filtrelemeyi FilterableAttribute destekleyip desteklemediğini belirlemek için özelliğini kullanın. Bir özellik cihaz filtrelemeyi desteklediğinde, bir cihaz filtresi belirterek belirli bir cihaz için özelliğin değerini geçersiz kılabilirsiniz. Daha fazla bilgi için bkz. Belirli Cihazlar için Özelleştirme.

Şunlara uygulanır

Ayrıca bkz.