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

MethodResponse 类

表示对直接方法的响应。

MethodResponse 的初始值设定项。

继承
builtins.object
MethodResponse

构造函数

MethodResponse(request_id, status, payload=None)

参数

名称 说明
request_id
必需
str

正在响应的 MethodRequest 的请求 ID。

status
必需
int

MethodRequest 的执行状态。

payload
dict, str, int, float, boolNone (<xref:JSON compatible values>)

要随响应一起发送的 JSON 有效负载。 (可选)

默认值: None

变量

名称 说明
request_id
str

正在响应的 MethodRequest 的请求 ID。

status
int

MethodRequest 的执行状态。

payload

要随响应一起发送的 JSON 有效负载。

方法

create_from_method_request

用于从 MethodRequest 创建 MethodResponse 的工厂方法。

create_from_method_request

用于从 MethodRequest 创建 MethodResponse 的工厂方法。

create_from_method_request(method_request, status, payload=None)

参数

名称 说明
method_request
必需
<xref:MethodRequest.>

要响应的 MethodRequest 对象。

status
必需
int

MethodRequest 的执行状态。

payload
默认值: None