Partager via


CComBSTR::Detach

Détache m_str de l'objet d' CComBSTR et définit m_str à NULL.

BSTR Detach( ) throw( );

Valeur de retour

BSTR associé à l'objet d' CComBSTR .

Exemple

// Method which converts bstrIn to uppercase 
STDMETHODIMP BSTRToUpper(BSTR bstrIn, BSTR* pbstrOut)
{ 
    if (bstrIn == NULL || pbstrOut == NULL) 
        return E_POINTER; 

    // Create a temporary copy of bstrIn
    CComBSTR bstrTemp(bstrIn); 

    if (!bstrTemp) 
        return E_OUTOFMEMORY; 

    // Make string uppercase
    HRESULT hr;
    hr = bstrTemp.ToUpper();
    if (hr != S_OK)
        return hr;

    // Return m_str member of bstrTemp 
    *pbstrOut = bstrTemp.Detach(); 

    return S_OK; 
}

Configuration requise

Header: atlbase.h

Voir aussi

Référence

Classe CComBSTR

CComBSTR::Attach