Compartilhar via


Método IVsWritableSettingsStore.GetString (String, String, String)

 

Publicado: abril de 2016

Retorna um valor de propriedade do tipo string.

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

Sintaxe

int GetString(
    string collectionPath,
    string propertyName,
    out string value
)
int GetString(
    String^ collectionPath,
    String^ propertyName,
    [OutAttribute] String^% value
)
abstract GetString : 
        collectionPath:string *
        propertyName:string *
        value:string byref -> int
Function GetString (
    collectionPath As String,
    propertyName As String,
    <OutAttribute> ByRef value As String
) As Integer

Parâmetros

  • collectionPath
    [in] O caminho da coleção.
  • propertyName
    [in] O nome da propriedade.
  • value
    [out] O valor.Isso deve ser passado como um BSTR não inicializado e o método irá alocar espaço suficiente para conter o valor da propriedade.O chamador deve chamar SysFreeString para liberar o BSTR quando ele não é mais necessária.

Valor de retorno

Type: System.Int32

Retorna S_OK se a propriedade foi retornada, E_INVALIDARG se a propriedade não existir ou se o tipo de propriedade não for uma seqüência de caracteres.

Implementações

IVsSettingsStore.GetString(String, String, String)

Consulte também

Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo