IVsWritableSettingsStore.GetUnsignedInt64(String, String, UInt64) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne une valeur de propriété d'entier long non signé 64 bits.
public:
int GetUnsignedInt64(System::String ^ collectionPath, System::String ^ propertyName, [Runtime::InteropServices::Out] System::UInt64 % value);
int GetUnsignedInt64(std::wstring const & collectionPath, std::wstring const & propertyName, [Runtime::InteropServices::Out] unsigned long & value);
public int GetUnsignedInt64 (string collectionPath, string propertyName, out ulong value);
abstract member GetUnsignedInt64 : string * string * -> int
Public Function GetUnsignedInt64 (collectionPath As String, propertyName As String, ByRef value As ULong) As Integer
Paramètres
- collectionPath
- String
[in] Chemin d'accès de la collection.
- propertyName
- String
[in] Nom de la propriété.
- value
- UInt64
[out] Valeur.
Retours
Retourne S_OK si la propriété est retournée, S_FALSE si la propriété n'existe pas ou E_INVALIDARG si le type de propriété n'est pas un entier long non signé 64 bits.
Implémente
Remarques
Si la propriété a été stockée en tant que valeur signée, les sémantiques de cast de type C++ standard sont appliquées à la valeur de sortie.