Compartilhar via


Método IVsSettingsStore.GetStringOrDefault (String, String, String, String)

 

Publicado: abril de 2016

Retorna um valor de propriedade de tipo de cadeia de caracteres ou uma cadeia de caracteres de determinado padrão.

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

Sintaxe

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

Parâmetros

  • collectionPath
    Type: System.String

    [in] O caminho da coleção.

  • defaultValue
    Type: System.String

    [in] O valor padrão para retornar se a propriedade não é definida.

  • value
    Type: System.String

    [out] O valor. Isso deve ser passado como um BSTR não inicializado e o método irá alocar espaço suficiente para armazenar o valor da propriedade. O chamador deve chamar SysFreeString para liberar o BSTR quando ele não for mais necessário.

Valor de retorno

Type: System.Int32

Retorna S_OK se a propriedade foi retornada, S_FALSE se a propriedade não existir, ou E_INVALIDARG se o tipo de propriedade não é um inteiro.

Consulte também

Interface IVsSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo