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

ModuleClient.GetTwinAsync 方法

定义

重载

GetTwinAsync()

检索当前模块的模块孪生对象。

GetTwinAsync(CancellationToken)

检索当前模块的模块孪生对象。

GetTwinAsync()

检索当前模块的模块孪生对象。

public System.Threading.Tasks.Task<Microsoft.Azure.Devices.Shared.Twin> GetTwinAsync ();
member this.GetTwinAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.Shared.Twin>
Public Function GetTwinAsync () As Task(Of Twin)

返回

当前模块的模块孪生对象

适用于

GetTwinAsync(CancellationToken)

检索当前模块的模块孪生对象。

public System.Threading.Tasks.Task<Microsoft.Azure.Devices.Shared.Twin> GetTwinAsync (System.Threading.CancellationToken cancellationToken);
member this.GetTwinAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.Shared.Twin>
Public Function GetTwinAsync (cancellationToken As CancellationToken) As Task(Of Twin)

参数

cancellationToken
CancellationToken

用于取消操作的取消标记。

返回

当前模块的模块孪生对象

例外

取消操作时引发。

适用于