Skip to content

Latest commit

 

History

History
65 lines (56 loc) · 1.49 KB

File metadata and controls

65 lines (56 loc) · 1.49 KB
title raw_property_prefixes | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
f1_keywords
raw_property_prefixes
dev_langs
C++
helpviewer_keywords
raw_property_prefixes attribute
ms.assetid 03a0f48c-c460-4175-a762-9f7f8d84b12f
caps.latest.revision 4
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

raw_property_prefixes

C++ Specific

Specifies alternate prefixes for three property methods.

Syntax

raw_property_prefixes("GetPrefix","PutPrefix","PutRefPrefix")  

Parameters

GetPrefix
Prefix to be used for the propget methods.

PutPrefix
Prefix to be used for the propput methods.

PutRefPrefix
Prefix to be used for the propputref methods.

Remarks

By default, low-level propget, propput, and propputref methods are exposed by member functions named with prefixes of get_, put_, and putref_ respectively. These prefixes are compatible with the names used in the header files generated by MIDL.

END C++ Specific

See Also

#import Attributes
#import Directive