DiagnosticsSettings.GetDefault 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.
Retrieves the default diagnostics settings.
public:
static DiagnosticsSettings ^ GetDefault();
static DiagnosticsSettings GetDefault();
public static DiagnosticsSettings GetDefault();
function getDefault()
Public Shared Function GetDefault () As DiagnosticsSettings
Returns
A settings object that contains the user's current diagnostics settings.
Examples
// From within a single user environment.
Windows.System.UserProfile.DiagnosticsSettings defaultUser =
Windows.System.UserProfile.DiagnosticsSettings.GetDefault();
System.Diagnostics.Debug.WriteLine("Current user tailored experiences enabled: " +
defaultUser.CanUseDiagnosticsToTailorExperiences.ToString());