Partilhar via


CComBSTR::acrescentar

Acrescenta um dos lpsz ou o BSTR membro de bstrSrc para m_str.

HRESULT Append(
   const CComBSTR& bstrSrc 
) throw( );
HRESULT Append(
   wchar_t ch
) throw( );
HRESULT Append(
   char ch
) throw( );
HRESULT Append(
   LPCOLESTR lpsz 
) throw( );
HRESULT Append(
   LPCSTR lpsz 
) throw( );
HRESULT Append(
   LPCOLESTR lpsz,
   int nLen 
) throw( );

Parâmetros

  • bstrSrc
    [in] A CComBSTR objeto para acrescentar.

  • CH
    [in] Um caractere para acrescentar.

  • lpsz
    [in] Uma seqüência de caractere terminada em zero para acrescentar.Você pode passar uma cadeia de caracteres Unicode por meio de LPCOLESTR sobrecarregar ou uma seqüência de caracteres ANSI via o LPCSTR versão.

  • nLen
    [in] O número de caracteres de lpsz Para acrescentar.

Valor de retorno

S_OK no sucesso ou qualquer padrão HRESULT valor de erro.

Comentários

Uma seqüência de caracteres ANSI será convertida para Unicode antes que estão sendo acrescentados.

Exemplo

enum { urlASP, urlHTM, urlISAPI } urlType;
urlType = urlASP;

CComBSTR bstrURL = OLESTR("http://SomeSite/");
CComBSTR bstrDEF = OLESTR("/OtherSite");
CComBSTR bstrASP = OLESTR("default.asp");

CComBSTR bstrTemp;
HRESULT hr;

switch (urlType)
{
case urlASP:
   // bstrURL is 'http://SomeSite/default.asp'
   hr = bstrURL.Append(bstrASP);
   break;

case urlHTM:
   // bstrURL is 'http://SomeSite/default.htm'
   hr = bstrURL.Append(OLESTR("default.htm"));
   break;

case urlISAPI:
   // bstrURL is 'http://SomeSite/default.dll?func'
   hr = bstrURL.Append(OLESTR("default.dll?func"));
   break;

default:
   // bstrTemp is 'http://'
   hr = bstrTemp.Append(bstrURL, 7);
   // bstrURL is 'http://OtherSite'
   if (hr == S_OK)
       hr = bstrTemp.Append(bstrDEF);
   bstrURL = bstrTemp;

   break;
}

Requisitos

Cabeçalho: atlcomcli.h

Consulte também

Referência

Classe CComBSTR

CComBSTR::AppendBSTR

CComBSTR::operador +=

Outros recursos

CComBSTR membros