Método IVsSettingsStore.GetUnsignedInt64OrDefault (String, String, UInt64, UInt64)

 

Retorna uma propriedade de inteiro longo não assinado de 64 bits de um valor 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 GetUnsignedInt64OrDefault(
    string collectionPath,
    string propertyName,
    ulong defaultValue,
    out ulong value
)
int GetUnsignedInt64OrDefault(
    String^ collectionPath,
    String^ propertyName,
    unsigned long long defaultValue,
    [OutAttribute] unsigned long long% value
)
abstract GetUnsignedInt64OrDefault : 
        collectionPath:string *
        propertyName:string *
        defaultValue:uint64 *
        value:uint64 byref -> int
Function GetUnsignedInt64OrDefault (
    collectionPath As String,
    propertyName As String,
    defaultValue As ULong,
    <OutAttribute> ByRef value As ULong
) 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 for um inteiro longo não assinado.

Consulte também

Interface IVsSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo