Partilhar via


Método IVsPropertyStreamOut.WriteSzAsBSTR (String, String, String)

 

Grave um valor de propriedade de seqüência terminada por caractere nulo como um BSTR.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int WriteSzAsBSTR(
    string szPropertyName,
    string szValue,
    string szLineComment
)
int WriteSzAsBSTR(
    String^ szPropertyName,
    String^ szValue,
    String^ szLineComment
)
abstract WriteSzAsBSTR : 
        szPropertyName:string *
        szValue:string *
        szLineComment:string -> int
Function WriteSzAsBSTR (
    szPropertyName As String,
    szValue As String,
    szLineComment As String
) As Integer

Parâmetros

  • szPropertyName
    [in] A seqüência de caracteres que contém o nome da propriedade.
  • szValue
    [in] Seqüência de caracteres que contém o valor da propriedade.
  • szLineComment
    [in] Uma seqüência de caracteres opcional que contém um comentário.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell.idl:

[C++]

HRESULT IVsPropertyStreamOut::WriteSzAsBSTR(
   [in] LPCOLESTR szPropertyName, 
   [in] LPCOLESTR szValue, 
   [in, optional] LPCOLESTR szLineComment
);

Consulte também

Interface IVsPropertyStreamOut
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo