Compartilhar via


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

 

Publicado: abril de 2016

Retorna um valor de propriedade do tipo seqüência de caracteres ou uma seqüência de caracteres padrão fornecido.

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
    [in] O caminho da coleção.
  • propertyName
    [in] O nome da propriedade.
  • defaultValue
    [in] O valor padrão para retornar se a propriedade não está definida.
  • 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, S_FALSE se a propriedade não existir, ou E_INVALIDARG se o tipo de propriedade não for um inteiro.

Implementações

IVsSettingsStore.GetStringOrDefault(String, String, String, String)

Consulte também

Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo