Compartilhar via


Método IVsWritableSettingsStore.GetInt64OrDefault (String, String, Int64, Int64)

 

Publicado: abril de 2016

Retorna um valor inteiro de 64 bits ou um valor padrão especificado.

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

Sintaxe

int GetInt64OrDefault(
    string collectionPath,
    string propertyName,
    long defaultValue,
    out long value
)
int GetInt64OrDefault(
    String^ collectionPath,
    String^ propertyName,
    long long defaultValue,
    [OutAttribute] long long% value
)
abstract GetInt64OrDefault : 
        collectionPath:string *
        propertyName:string *
        defaultValue:int64 *
        value:int64 byref -> int
Function GetInt64OrDefault (
    collectionPath As String,
    propertyName As String,
    defaultValue As Long,
    <OutAttribute> ByRef value As Long
) 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.

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 de 64 bits.

Implementações

IVsSettingsStore.GetInt64OrDefault(String, String, Int64, Int64)

Comentários

Se a propriedade foi armazenada como um valor assinado, a semântica de conversão de tipo C++ regular é aplicada no valor de saída.

Consulte também

Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo