//------------------------------------------------------------------------------ // // 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. /// [HostProtection(MayLeakOnAbort = true)] public delegate void UserPreferenceChangingEventHandler(object sender, UserPreferenceChangingEventArgs e); }