Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.06 KB

File metadata and controls

39 lines (28 loc) · 1.06 KB
title _com_error::Description | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-language
ms.topic language-reference
f1_keywords
_com_error::Description
dev_langs
C++
helpviewer_keywords
Description method [C++]
ms.assetid 88191e24-4ee8-44a6-8c4c-3758e22e0548
author mikeblome
ms.author mblome
ms.workload
cplusplus

_com_error::Description

Microsoft Specific

Calls IErrorInfo::GetDescription function.

Syntax

_bstr_t Description( ) const;

Return Value

Returns the result of IErrorInfo::GetDescription for the IErrorInfo object recorded within the _com_error object. The resulting BSTR is encapsulated in a _bstr_t object. If no IErrorInfo is recorded, it returns an empty _bstr_t.

Remarks

Calls the IErrorInfo::GetDescription function and retrieves IErrorInfo recorded within the _com_error object. Any failure while calling the IErrorInfo::GetDescription method is ignored.

END Microsoft Specific

See also

_com_error Class