Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Security / WindowsAuthenticationEventArgs.cs / 1 / WindowsAuthenticationEventArgs.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* WindowsAuthenticationEventArgs class
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.Security {
using System.Security.Principal;
using System.Security.Permissions;
///
/// The Windows authentication module raises this event. This
/// is the event argument passed to the WindowsAuthentication_OnAuthenticate event.
/// Contains a WindowsIdentity object and the IPrincipal object used for the context.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class WindowsAuthenticationEventArgs : EventArgs {
private IPrincipal _User;
private HttpContext _Context;
private WindowsIdentity _Identity;
///
/// IPrincipal object to be associated with the request.
///
/// The user object should be attached
/// to the context.
/// If User is non null
/// and Context.User is null, the WindowsAuthenticationModule will initialize
/// Context.User with WindowsAuthenticationEventArgs.User.
///
public IPrincipal User {
get { return _User;}
[SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)]
set {
_User = value;
}
}
///
/// The HttpContext intrinsic (provides access to
/// Request, Response, and User objects).
///
public HttpContext Context { get { return _Context;}}
///
/// An authenticated Windows identity.
///
public WindowsIdentity Identity { get { return _Identity;}}
///
/// Initializes a newly created instance of the
/// WindowsAuthenticationEventArgs Class.
///
public WindowsAuthenticationEventArgs(WindowsIdentity identity, HttpContext context) {
_Identity = identity;
_Context = context;
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComProxy.cs
- XsltContext.cs
- EllipticalNodeOperations.cs
- ExpanderAutomationPeer.cs
- PointLight.cs
- Codec.cs
- StylusPointDescription.cs
- ClientConfigurationHost.cs
- ProviderConnectionPointCollection.cs
- panel.cs
- WebPartConnectionsCancelVerb.cs
- DesignOnlyAttribute.cs
- ReaderOutput.cs
- TextFormatterHost.cs
- ImageClickEventArgs.cs
- ImageMap.cs
- SafeSystemMetrics.cs
- GeometryCollection.cs
- TypeCollectionPropertyEditor.cs
- WebPartManagerInternals.cs
- TextRangeEdit.cs
- LedgerEntryCollection.cs
- MembershipUser.cs
- FrameDimension.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- HTMLTagNameToTypeMapper.cs
- ModuleElement.cs
- Convert.cs
- DoubleLinkList.cs
- AppAction.cs
- XsdBuilder.cs
- ChangePassword.cs
- StringAnimationBase.cs
- SiteMapNodeItem.cs
- StrongNamePublicKeyBlob.cs
- RotationValidation.cs
- BitmapFrameDecode.cs
- TextTreeTextNode.cs
- CryptoHelper.cs
- ZipIORawDataFileBlock.cs
- FrameworkTextComposition.cs
- BamlLocalizabilityResolver.cs
- odbcmetadatacolumnnames.cs
- RegexMatchCollection.cs
- CapabilitiesPattern.cs
- CurrentChangingEventArgs.cs
- ZoneLinkButton.cs
- DataGridViewColumnStateChangedEventArgs.cs
- XsltQilFactory.cs
- DataGridCell.cs
- OuterGlowBitmapEffect.cs
- WorkflowValidationFailedException.cs
- ApplicationSecurityManager.cs
- DependencyPropertyDescriptor.cs
- BooleanKeyFrameCollection.cs
- AspNetCompatibilityRequirementsMode.cs
- DesignerProperties.cs
- UnhandledExceptionEventArgs.cs
- TextEvent.cs
- DataTemplate.cs
- SolidColorBrush.cs
- Convert.cs
- WebRequestModulesSection.cs
- UnsafeNativeMethods.cs
- ActivityExecutionContextCollection.cs
- ClientUIRequest.cs
- TimeSpanConverter.cs
- IconHelper.cs
- PageContent.cs
- CookieProtection.cs
- SqlIdentifier.cs
- PopupRoot.cs
- HttpCookieCollection.cs
- WebPartCatalogCloseVerb.cs
- Environment.cs
- WebPartEditorApplyVerb.cs
- ProcessHostMapPath.cs
- ResourceSet.cs
- WebPartHelpVerb.cs
- AnonymousIdentificationSection.cs
- CriticalExceptions.cs
- MetadataSource.cs
- ExpanderAutomationPeer.cs
- SettingsContext.cs
- FixedHyperLink.cs
- AssemblyNameProxy.cs
- NonParentingControl.cs
- InkSerializer.cs
- ValidationRuleCollection.cs
- TextPatternIdentifiers.cs
- PageCodeDomTreeGenerator.cs
- Action.cs
- RulePatternOps.cs
- SqlRewriteScalarSubqueries.cs
- InputScopeManager.cs
- EventLogSession.cs
- XPathDocument.cs
- BitmapEffectGroup.cs
- PageVisual.cs
- SchemaNamespaceManager.cs