source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/LoginAttemptedEventArgs.cs@ 1149

Last change on this file since 1149 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 763 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.ComponentModel;
5
6namespace IndianHealthService.BMXNet.WinForm
7{
8 /// <summary>
9 /// The LoginProcess provides feedback after every LoginAttempt, even if the login
10 /// attempt was performer using the AttemptingLoginEvent. If a custom dialog box or action can
11 /// take place and Handled set to True, the LoginProcess will not display the standard dialog.
12 /// The LoginProcess is available so examine or modify.
13 /// </summary>
14 public class LoginAttemptedEventArgs : CancelEventArgs
15 {
16 public LoginProcess Process { get; set; }
17 public bool WasSuccessful { get; set; }
18 public bool Handled { get; set; }
19 }
20}
Note: See TracBrowser for help on using the repository browser.