//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace Microsoft.Win32 { using System; using System.Diagnostics; using System.Security.Permissions; /// /// Represents the method that will handle the event. /// [HostProtectionAttribute(MayLeakOnAbort = true)] public delegate void UserPreferenceChangedEventHandler(object sender, UserPreferenceChangedEventArgs e); }