source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/AttemptingLoginEventArgs.cs@ 1180

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

Initial Import of BMX4

File size: 1.1 KB
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 the AttemptingLoginEvent to allow changes in workflow with
10 /// this Cancelable event args class
11 /// </summary>
12 public class AttemptingLoginEventArgs : CancelEventArgs
13 {
14 /// <summary>
15 /// The LoginProcess can be modified (e.g. ConnectionSpec) after the user has OK'd the dialog
16 /// but before the login attempt is made.
17 /// </summary>
18 public LoginProcess Process { get; set; }
19
20 /// <summary>
21 /// The receiver of the event can perform the login differently or not allow
22 /// the login. If Handled is set the True the LoginProcess assumes the login was attempted.
23 /// </summary>
24 public bool Handled { get; set; }
25
26 /// <summary>
27 /// Set HandledSucccessfully is the Handled logging was successful.
28 /// </summary>
29 public bool HandledSucccessfully { get; set; }
30 }
31}
Note: See TracBrowser for help on using the repository browser.