ProfileOptimization.SetProfileRoot(String) 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.
Enables optimization profiling for the current application domain, and sets the folder where the optimization profile files are stored. On a single-core computer, the method is ignored.
public:
static void SetProfileRoot(System::String ^ directoryPath);
public static void SetProfileRoot (string directoryPath);
[System.Security.SecurityCritical]
public static void SetProfileRoot (string directoryPath);
static member SetProfileRoot : string -> unit
[<System.Security.SecurityCritical>]
static member SetProfileRoot : string -> unit
Public Shared Sub SetProfileRoot (directoryPath As String)
Parameters
- directoryPath
- String
The full path to the folder where profile files are stored for the current application domain.
- Attributes
Remarks
You must call this method before you call the StartProfile method for the first time in the current application domain. If you call SetProfileRoot more than once in the same application domain, all calls after the first are ignored.
The specified folder must already exist. If it does not exist, calling this method does not create it, and no profiling occurs.
On computers that do not have multiple cores, this method is ignored.