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 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.