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
- MimeTypePropertyAttribute.cs
- sqlpipe.cs
- UnauthorizedWebPart.cs
- RunWorkerCompletedEventArgs.cs
- IsolatedStorageFilePermission.cs
- TextRange.cs
- Package.cs
- AnnouncementInnerClient11.cs
- CodeTryCatchFinallyStatement.cs
- RectangleConverter.cs
- QueryOutputWriter.cs
- NavigationFailedEventArgs.cs
- ObjectListFieldCollection.cs
- TextServicesLoader.cs
- DataDocumentXPathNavigator.cs
- CorrelationTokenInvalidatedHandler.cs
- EditorPart.cs
- ListControlConvertEventArgs.cs
- LockedHandleGlyph.cs
- Compiler.cs
- DataGridViewCell.cs
- GridViewColumnCollection.cs
- WebRequestModuleElement.cs
- PanelDesigner.cs
- HttpDigestClientElement.cs
- TextDecorations.cs
- unsafenativemethodsother.cs
- StringWriter.cs
- BookmarkList.cs
- WebPartEditorApplyVerb.cs
- DBCommand.cs
- MetabaseSettingsIis7.cs
- HostingPreferredMapPath.cs
- RenameRuleObjectDialog.cs
- Base64Encoding.cs
- DBSchemaRow.cs
- BufferedConnection.cs
- SingleTagSectionHandler.cs
- SqlFunctionAttribute.cs
- SymLanguageVendor.cs
- OdbcFactory.cs
- ConfigurationConverterBase.cs
- TypeDelegator.cs
- ContentHostHelper.cs
- BooleanConverter.cs
- PropertySourceInfo.cs
- Int32Converter.cs
- AddInEnvironment.cs
- VirtualPathProvider.cs
- OutputCacheSettingsSection.cs
- EntityConnectionStringBuilder.cs
- BrowserCapabilitiesFactoryBase.cs
- BaseValidator.cs
- SqlConnectionStringBuilder.cs
- ScrollChrome.cs
- CellTreeNodeVisitors.cs
- UserControlParser.cs
- ModelItemCollectionImpl.cs
- SrgsGrammar.cs
- Bookmark.cs
- X509UI.cs
- ObjectDataSource.cs
- InfoCard.cs
- TokenizerHelper.cs
- MultiPropertyDescriptorGridEntry.cs
- RefreshPropertiesAttribute.cs
- HotCommands.cs
- PasswordDeriveBytes.cs
- ProfileEventArgs.cs
- XsdBuilder.cs
- ExpandButtonVisibilityConverter.cs
- EntityTransaction.cs
- LinqDataView.cs
- LineBreakRecord.cs
- SynchronousReceiveBehavior.cs
- KnownBoxes.cs
- DesignerOptionService.cs
- InheritanceUI.cs
- MessageSecurityVersionConverter.cs
- ApplicationSecurityInfo.cs
- FormattedText.cs
- HttpValueCollection.cs
- AspNetSynchronizationContext.cs
- SystemResources.cs
- BinaryHeap.cs
- UnknownWrapper.cs
- Merger.cs
- ListBoxAutomationPeer.cs
- EventItfInfo.cs
- dtdvalidator.cs
- TransportSecurityProtocol.cs
- BitStack.cs
- XamlFilter.cs
- BindingContext.cs
- Boolean.cs
- EditorPartChrome.cs
- PreviewPageInfo.cs
- VScrollProperties.cs
- SqlWorkflowPersistenceService.cs
- CodePageUtils.cs