Método IVsWritableSettingsStore.SetUnsignedInt64 (String, String, UInt64)
Define o valor de uma propriedade de inteiro não assinado de 64 bits.Se o tipo de dados de theprevious da propriedade não é SettingsType_Int64, este método substitui-lo.Se a propriedade não existir, ele criará uma.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Sintaxe
int SetUnsignedInt64(
string collectionPath,
string propertyName,
ulong value
)
int SetUnsignedInt64(
String^ collectionPath,
String^ propertyName,
unsigned long long value
)
abstract SetUnsignedInt64 :
collectionPath:string *
propertyName:string *
value:uint64 -> int
Function SetUnsignedInt64 (
collectionPath As String,
propertyName As String,
value As ULong
) As Integer
Parâmetros
- collectionPath
[in] O caminho para a coleção.
- propertyName
[in] A propriedade.
- value
[in] O valor.
Valor de retorno
Type: System.Int32
Retorna T:Microsoft.VisualStudio.VSConstants.S_OK se o valor foi definido.Se a coleção não existe, o método retorna T:Microsoft.VisualStudio.VSConstants.E_INVALIDARG.
Consulte também
Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo