//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
* DefaultAuthenticationEventArgs class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Security {
using System.Security.Principal;
using System.Security.Permissions;
///
/// [To be supplied.]
///
public sealed class DefaultAuthenticationEventArgs : EventArgs {
private HttpContext _Context;
///
/// [To be supplied.]
///
public HttpContext Context { get { return _Context;}}
///
/// [To be supplied.]
///
public DefaultAuthenticationEventArgs(HttpContext context) {
_Context = context;
}
}
}