你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

MethodRequest 构造函数

定义

重载

MethodRequest(String)

使用不带任何方法数据和额外时间的设备连接和发送响应初始化此类的新实例。

MethodRequest(String, Byte[])

初始化此类的新实例。

MethodRequest(String, Nullable<TimeSpan>, Nullable<TimeSpan>)

初始化此类的新实例,而不使用任何方法数据。

MethodRequest(String, Byte[], Nullable<TimeSpan>, Nullable<TimeSpan>)

初始化此类的新实例。

MethodRequest(String)

使用不带任何方法数据和额外时间的设备连接和发送响应初始化此类的新实例。

public MethodRequest (string name);
new Microsoft.Azure.Devices.Client.MethodRequest : string -> Microsoft.Azure.Devices.Client.MethodRequest
Public Sub New (name As String)

参数

name
String

方法名称。

适用于

MethodRequest(String, Byte[])

初始化此类的新实例。

public MethodRequest (string name, byte[] data);
new Microsoft.Azure.Devices.Client.MethodRequest : string * byte[] -> Microsoft.Azure.Devices.Client.MethodRequest
Public Sub New (name As String, data As Byte())

参数

name
String

方法名称。

data
Byte[]

方法数据。

适用于

MethodRequest(String, Nullable<TimeSpan>, Nullable<TimeSpan>)

初始化此类的新实例,而不使用任何方法数据。

public MethodRequest (string name, TimeSpan? responseTimeout, TimeSpan? connectionTimeout);
new Microsoft.Azure.Devices.Client.MethodRequest : string * Nullable<TimeSpan> * Nullable<TimeSpan> -> Microsoft.Azure.Devices.Client.MethodRequest
Public Sub New (name As String, responseTimeout As Nullable(Of TimeSpan), connectionTimeout As Nullable(Of TimeSpan))

参数

name
String

方法名称。

responseTimeout
Nullable<TimeSpan>

方法超时值。

connectionTimeout
Nullable<TimeSpan>

设备连接超时值。

适用于

MethodRequest(String, Byte[], Nullable<TimeSpan>, Nullable<TimeSpan>)

初始化此类的新实例。

public MethodRequest (string name, byte[] data, TimeSpan? responseTimeout, TimeSpan? connectionTimeout);
new Microsoft.Azure.Devices.Client.MethodRequest : string * byte[] * Nullable<TimeSpan> * Nullable<TimeSpan> -> Microsoft.Azure.Devices.Client.MethodRequest
Public Sub New (name As String, data As Byte(), responseTimeout As Nullable(Of TimeSpan), connectionTimeout As Nullable(Of TimeSpan))

参数

name
String

方法名称。

data
Byte[]

方法数据。

responseTimeout
Nullable<TimeSpan>

方法超时值。

connectionTimeout
Nullable<TimeSpan>

设备连接超时值。

适用于