Initial commit
[mono.git] / mcs / class / referencesource / System / compmod / microsoft / win32 / SessionEndingEventHandler.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="SessionEndingEventHandler.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 //------------------------------------------------------------------------------
6
7 /*
8  */
9 namespace Microsoft.Win32 {
10     using System;
11     using System.Diagnostics;
12     using System.Security.Permissions;
13
14     /// <devdoc>
15     /// <para>Represents the method that will handle the <see cref='Microsoft.Win32.SystemEvents.SessionEnding'/> event.</para>
16     /// </devdoc>
17     [HostProtectionAttribute(MayLeakOnAbort = true)]
18     public delegate void SessionEndingEventHandler(object sender, SessionEndingEventArgs e);
19 }
20