你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ServiceClient.SendAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SendAsync(String, Message, Nullable<TimeSpan>) |
将云到设备的消息发送到指定的设备。 此调用是通过 AMQP 进行的。 |
SendAsync(String, String, Message, Nullable<TimeSpan>) |
将云到设备的消息发送到指定的模块。 |
SendAsync(String, Message, Nullable<TimeSpan>)
将云到设备的消息发送到指定的设备。 此调用是通过 AMQP 进行的。
public virtual System.Threading.Tasks.Task SendAsync (string deviceId, Microsoft.Azure.Devices.Message message, TimeSpan? timeout = default);
abstract member SendAsync : string * Microsoft.Azure.Devices.Message * Nullable<TimeSpan> -> System.Threading.Tasks.Task
override this.SendAsync : string * Microsoft.Azure.Devices.Message * Nullable<TimeSpan> -> System.Threading.Tasks.Task
Public Overridable Function SendAsync (deviceId As String, message As Message, Optional timeout As Nullable(Of TimeSpan) = Nothing) As Task
参数
- deviceId
- String
目标设备的设备标识符。
- message
- Message
云到设备的消息。
返回
适用于
SendAsync(String, String, Message, Nullable<TimeSpan>)
将云到设备的消息发送到指定的模块。
public virtual System.Threading.Tasks.Task SendAsync (string deviceId, string moduleId, Microsoft.Azure.Devices.Message message, TimeSpan? timeout = default);
abstract member SendAsync : string * string * Microsoft.Azure.Devices.Message * Nullable<TimeSpan> -> System.Threading.Tasks.Task
override this.SendAsync : string * string * Microsoft.Azure.Devices.Message * Nullable<TimeSpan> -> System.Threading.Tasks.Task
Public Overridable Function SendAsync (deviceId As String, moduleId As String, message As Message, Optional timeout As Nullable(Of TimeSpan) = Nothing) As Task
参数
- deviceId
- String
目标设备的设备标识符。
- moduleId
- String
目标模块的模块标识符。
- message
- Message
云到模块的消息。