通过


DeviceFilterElement 构造函数

定义

初始化 DeviceFilterElement 类的新实例。 此 API 已过时。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 Mobile Apps &具有 ASP.NET 的网站。

重载

名称 说明
DeviceFilterElement(String, String, String)

将类的新实例 DeviceFilterElement 初始化为比较筛选器。 此 API 已过时。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 Mobile Apps &具有 ASP.NET 的网站。

DeviceFilterElement(String, Type, String)

将类的新实例 DeviceFilterElement 初始化为计算器筛选器。 此 API 已过时。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 Mobile Apps &具有 ASP.NET 的网站。

DeviceFilterElement(String, String, String)

将类的新实例 DeviceFilterElement 初始化为比较筛选器。 此 API 已过时。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 Mobile Apps &具有 ASP.NET 的网站。

public:
 DeviceFilterElement(System::String ^ name, System::String ^ compareName, System::String ^ argument);
public DeviceFilterElement(string name, string compareName, string argument);
new System.Web.Mobile.DeviceFilterElement : string * string * string -> System.Web.Mobile.DeviceFilterElement
Public Sub New (name As String, compareName As String, argument As String)

参数

name
String

将标识计算器的名称。

compareName
String

比较计算器评估的功能。

argument
String

应对其比较功能的自变量。

注解

此构造函数用于创建比较筛选器。

另请参阅

适用于

DeviceFilterElement(String, Type, String)

将类的新实例 DeviceFilterElement 初始化为计算器筛选器。 此 API 已过时。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 Mobile Apps &具有 ASP.NET 的网站。

public:
 DeviceFilterElement(System::String ^ name, Type ^ filterClass, System::String ^ method);
public DeviceFilterElement(string name, Type filterClass, string method);
new System.Web.Mobile.DeviceFilterElement : string * Type * string -> System.Web.Mobile.DeviceFilterElement
Public Sub New (name As String, filterClass As Type, method As String)

参数

name
String

将标识计算器的名称。

filterClass
Type

包含计算器委托的类类型。

method
String

filterClass该方法是计算器委托。

注解

这是计算器(或基于委托)筛选器的构造函数。

适用于