Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using System.ComponentModel;
|
---|
5 |
|
---|
6 | namespace 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.