1 //------------------------------------------------------------------------------
2 // <copyright file="UserValidatedEventArgs.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.ClientServices.Providers {
8     using System;
9     using System.Diagnostics.CodeAnalysis;
10 
11     public class UserValidatedEventArgs : EventArgs
12     {
13         public string UserName {
14             get {
15                 return _UserName;
16             }
17         }
18         private string _UserName;
19 
20         [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId="username", Justification="consistent with Whidbey")]
UserValidatedEventArgs(string username)21         public UserValidatedEventArgs(string username) {
22             _UserName = username;
23         }
24     }
25 }
26