Share via


DeviceFilterElement 构造函数

定义

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

重载

DeviceFilterElement(String, String, String)

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

DeviceFilterElement(String, Type, String)

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

DeviceFilterElement(String, String, String)

DeviceFilterElement 类的新实例初始化为比较筛选器。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 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 移动应用程序的信息,请参阅 移动应用 & 具有 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 中的方法,它是计算委托。

注解

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

适用于