Método IVsWritableSettingsStore.GetInt64 (String, String, Int64)
Publicado: abril de 2016
Retorna um valor de propriedade do tipo inteiro de 64 bits.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Sintaxe
int GetInt64(
string collectionPath,
string propertyName,
out long value
)
int GetInt64(
String^ collectionPath,
String^ propertyName,
[OutAttribute] long long% value
)
abstract GetInt64 :
collectionPath:string *
propertyName:string *
value:int64 byref -> int
Function GetInt64 (
collectionPath As String,
propertyName As String,
<OutAttribute> ByRef value As Long
) As Integer
Parâmetros
- collectionPath
[in] O caminho da coleção.
- propertyName
[in] O nome da propriedade.
- 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.GetInt64(String, String, Int64)
Comentários
Se a propriedade foi armazenada como um valor não 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