Método IVsPersistSolutionProps.WriteSolutionProps (IVsHierarchy, String, IPropertyBag)

 

Grava o arquivo. sln propriedades da solução.

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

Sintaxe

int WriteSolutionProps(
    IVsHierarchy pHierarchy,
    string pszKey,
    IPropertyBag pPropBag
)
int WriteSolutionProps(
    IVsHierarchy^ pHierarchy,
    String^ pszKey,
    IPropertyBag^ pPropBag
)
abstract WriteSolutionProps : 
        pHierarchy:IVsHierarchy *
        pszKey:string *
        pPropBag:IPropertyBag -> int
Function WriteSolutionProps (
    pHierarchy As IVsHierarchy,
    pszKey As String,
    pPropBag As IPropertyBag
) As Integer

Parâmetros

  • pszKey
    [in] Nome do conjunto de propriedades, o conjunto de propriedades.
  • pPropBag
    [in] Ponteiro para o IPropertyBag interface para que os pares nome/valor de propriedade são gravados.

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:

HRESULT IVsPersistSolutionProps::WriteSolutionProps(
   [in] IVsHierarchy *pHierarchy,
   [in] LPCOLESTR pszKey,
   [in] IPropertyBag *pPropBag
);

Consulte também

Interface IVsPersistSolutionProps
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo