IVsSettingsStore.GetPropertyCount(String, UInt32) 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 the number of properties in a specified collection.
public:
int GetPropertyCount(System::String ^ collectionPath, [Runtime::InteropServices::Out] System::UInt32 % propertyCount);
int GetPropertyCount(std::wstring const & collectionPath, [Runtime::InteropServices::Out] unsigned int & propertyCount);
public int GetPropertyCount (string collectionPath, out uint propertyCount);
abstract member GetPropertyCount : string * uint32 -> int
Public Function GetPropertyCount (collectionPath As String, ByRef propertyCount As UInteger) As Integer
Parameters
- collectionPath
- String
[in] The path of the collection.
- propertyCount
- UInt32
[out] The number of properties in the collection.
Returns
Returns S_OK if the property count was returned. If the collection does not exist, the method returns E_INVALIDARG.
Remarks
This method is safe to access from any thread.