Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SessionEndingEventArgs.cs « Microsoft.Win32 « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19279827fc63d7f7a35068be39d7efba4fbb8077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// SessionEndingEventArgs.cs
//
// Author:
//  Johannes Roith (johannes@jroith.de)
//
// (C) 2002 Johannes Roith
//
namespace Microsoft.Win32 {

	/// <summary>
	/// </summary>
public class SessionEndingEventArgs : System.EventArgs{

	SessionEndReasons myreason;
	bool mycancel;

	public SessionEndingEventArgs(SessionEndReasons reason)
	{
		this.myreason = reason;
	}
	
	public SessionEndReasons Reason {

		get{
			return myreason;
		}
		
	}
	

	public bool Cancel {

		get{
			return mycancel;
		}
		set{
		
		}
		
	}

}

}