IVsProfileDataManager::GetSettingsFiles Method (UInt32, IVsProfileSettingsFileCollection^)
Visual Studio 2015
Retrieves one or more settings files.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int GetSettingsFiles( unsigned int fileLocations, [OutAttribute] IVsProfileSettingsFileCollection^% ppCollection )
Parameters
- fileLocations
-
Type:
System::UInt32
[in] Bit flags indicating which locations to check for settings files. Constructed from values in the __VSPROFILELOCATIONS enumeration.
- ppCollection
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsProfileSettingsFileCollection^
[out] Pointer to an IVsProfileSettingsFileCollection interface for the retrieved settings files.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsProfileDataManager::GetSettingsFiles(
[in] VSPROFILELOCATIONS fileLocations,
[out] IVsProfileSettingsFileCollection **ppCollection
);
Show: