FilterableAttribute(Boolean) Konstruktor
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Initierar en ny instans av FilterableAttribute klassen.
public:
FilterableAttribute(bool filterable);
public FilterableAttribute(bool filterable);
new System.Web.UI.FilterableAttribute : bool -> System.Web.UI.FilterableAttribute
Public Sub New (filterable As Boolean)
Parametrar
- filterable
- Boolean
trueför att ange att egenskapen som attributet tillämpas på stöder enhetsfiltrering. annars . false
Exempel
Följande kodexempel visar hur du tillämpar ett FilterableAttribute attribut på en egenskap för en anpassad kontroll. Konstruktorn anropas internt av ASP.NET för att skapa ett FilterableAttribute objekt som representerar attributet.
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
Kommentarer
Använd den här konstruktorn för att skapa en ny instans av FilterableAttribute klassen. I följande tabell visas det initiala egenskapsvärdet för en instans av FilterableAttribute klassen.
| Fastighet | Initialt värde |
|---|---|
| Filterable | Värdet för parametern filterable . |