IVsWritableSettingsStore.GetUnsignedInt64(String, String, UInt64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
This method is safe to access from any thread.