IVsWritableSettingsStore.GetUnsignedInt64(String, String, UInt64) Method

Definition

Returns a 64-bit unsigned long integer property value.

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 * uint64 -> int
Public Function GetUnsignedInt64 (collectionPath As String, propertyName As String, ByRef value As ULong) As Integer

Parameters

collectionPath
String

[in] The path of the collection.

propertyName
String

[in] The property name.

value
UInt64

[out] The value.

Returns

Returns S_OK if the property was returned, S_FALSE if the property does not exist or E_INVALIDARG if the property type is not a 64-bit unsigned long integer.

Implements

Remarks

If the property was stored as a signed value then regular C++ type casting semantics are applied on the output value.

Applies to