IDebugFAEntryTags::SetProperties method (extsfns.h)

The SetProperties method sets the name or description (or both) of a tag in a DebugFailureAnalysisTags object.

Syntax

HRESULT SetProperties(
  [in] FA_TAG Tag,
  [in] PCSTR  Name,
  [in] PCSTR  Description,
  [in] ULONG  Flags
);

Parameters

[in] Tag

A value in the FA_TAG enumeration. This method sets the name or description (or both) of this tag.

[in] Name

A pointer to a null-terminated string that specifies the name to be set. If the tag already has a name, this method overwrites the old name. If this parameter is NULL, the name of the tag is not changed.

[in] Description

A pointer to a null-terminated string that specifies the description to be set. If the tag already has a description, this method overwrites the old description. If this parameter is NULL, the description of the tag is not changed.

[in] Flags

Reserved. Set this parameter to NULL.

Return value

If this method succeeds, it returns S_OK. Otherwise it returns an error code. Error codes are defined in winerror.h and strsafe.h.

Requirements

Requirement Value
Target Platform Desktop
Header extsfns.h

See also

GetProperties

IDebugFAEntryTags

IDebugFailureAnalysis2

Writing an Analysis Extension Plug-in to Extend !analyze

_EFN_Analyze