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; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WindowsAuthenticationEventArgs : EventArgs { private IPrincipal _User; private HttpContext _Context; private WindowsIdentity _Identity; ///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. ////// public IPrincipal User { get { return _User;} [SecurityPermission(SecurityAction.Demand, ControlPrincipal=true)] set { _User = value; } } ///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. ////// 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;}} ////// public WindowsAuthenticationEventArgs(WindowsIdentity identity, HttpContext context) { _Identity = identity; _Context = context; } } }Initializes a newly created instance of the /// WindowsAuthenticationEventArgs Class. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AttachedAnnotationChangedEventArgs.cs
- CreateUserWizardAutoFormat.cs
- SafeEventLogWriteHandle.cs
- AssemblyFilter.cs
- ReachDocumentReferenceSerializer.cs
- EntityContainerAssociationSet.cs
- namescope.cs
- Rijndael.cs
- CodeIdentifier.cs
- SolidBrush.cs
- ConnectorDragDropGlyph.cs
- ZoneButton.cs
- MouseActionConverter.cs
- ColorAnimationBase.cs
- Polygon.cs
- SQLRoleProvider.cs
- Grant.cs
- DataTableClearEvent.cs
- GPStream.cs
- DrawingState.cs
- Visual3DCollection.cs
- GestureRecognitionResult.cs
- SubMenuStyle.cs
- RectValueSerializer.cs
- SourceElementsCollection.cs
- ConnectionStringsExpressionBuilder.cs
- SettingsPropertyNotFoundException.cs
- FontEmbeddingManager.cs
- Quaternion.cs
- RegularExpressionValidator.cs
- TextMetrics.cs
- VerificationAttribute.cs
- FakeModelPropertyImpl.cs
- DNS.cs
- DbConnectionHelper.cs
- Validator.cs
- QilTargetType.cs
- DnsPermission.cs
- ItemAutomationPeer.cs
- ProtocolElement.cs
- DataComponentMethodGenerator.cs
- Assert.cs
- WorkflowInstance.cs
- ResolveCriteriaApril2005.cs
- MailHeaderInfo.cs
- _ConnectOverlappedAsyncResult.cs
- PolyLineSegment.cs
- WindowsPen.cs
- CodeDelegateCreateExpression.cs
- ProxyHwnd.cs
- PersonalizationStateInfo.cs
- Line.cs
- WebRequestModulesSection.cs
- FixedSOMTable.cs
- RefreshPropertiesAttribute.cs
- ExclusiveTcpTransportManager.cs
- _OverlappedAsyncResult.cs
- Intellisense.cs
- DataColumnChangeEvent.cs
- Contracts.cs
- Sql8ConformanceChecker.cs
- OrderByExpression.cs
- DataGridrowEditEndingEventArgs.cs
- XmlMembersMapping.cs
- AnimationTimeline.cs
- GridSplitterAutomationPeer.cs
- TrayIconDesigner.cs
- WindowsGraphicsCacheManager.cs
- DataKeyArray.cs
- WorkflowMarkupSerializer.cs
- NavigationEventArgs.cs
- XamlBrushSerializer.cs
- EntityDesignerDataSourceView.cs
- AttachedProperty.cs
- CheckBox.cs
- FontCollection.cs
- Win32Native.cs
- OleDbStruct.cs
- WrapPanel.cs
- HttpListenerRequestUriBuilder.cs
- ExtenderProviderService.cs
- GPRECT.cs
- MappedMetaModel.cs
- Nodes.cs
- SwitchLevelAttribute.cs
- PropertyNames.cs
- SiteMapNodeItem.cs
- WebException.cs
- IndentedWriter.cs
- ImageCodecInfoPrivate.cs
- OleDbReferenceCollection.cs
- TransformGroup.cs
- ObjectConverter.cs
- SiteMapProvider.cs
- SortDescriptionCollection.cs
- XhtmlTextWriter.cs
- MasterPage.cs
- _NetRes.cs
- MethodSet.cs
- IndexerNameAttribute.cs