winrt::hresult_canceled结构 (C++/WinRT)

派生自 winrt::hresult_error的类型,表示ERROR_CANCELLED HRESULT 错误代码。 另请参阅 winrt::hresult_error 主题,了解 winrt::hresult_canceled也可用的成员。

语法

struct hresult_canceled : winrt::hresult_error

要求

支持的最低 SDK:Windows SDK 版本 10.0.17134.0 (Windows 10版本 1803)

命名空间: winrt

标头: %WindowsSdkDir%IncludeWindowsTargetPlatformVersion<>\cppwinrt\winrt\base.h (默认包含)

构造函数

构造函数 说明
hresult_canceled::hresult_canceled构造函数 使用输入数据的副本初始化 hresult_canceled 结构的新实例。

hresult_canceled::hresult_canceled构造函数

使用输入数据的副本初始化 hresult_canceled 结构的新实例。

语法

hresult_canceled() noexcept;
hresult_canceled(winrt::hstring const& message) noexcept;
hresult_canceled(winrt::hresult_error::from_abi_t) noexcept

parameters

message 一个信息性字符串,可帮助开发人员更正报告的错误条件。

请参阅