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
- LeafCellTreeNode.cs
- ResXResourceSet.cs
- CancelEventArgs.cs
- ServiceModelActivationSectionGroup.cs
- DataServiceQueryOfT.cs
- TransformedBitmap.cs
- AssemblyBuilderData.cs
- OrderedDictionary.cs
- HtmlEmptyTagControlBuilder.cs
- NonNullItemCollection.cs
- AsymmetricSignatureFormatter.cs
- StyleSheetDesigner.cs
- EntityDesignerDataSourceView.cs
- SerialPort.cs
- LayoutTable.cs
- UmAlQuraCalendar.cs
- SafeWaitHandle.cs
- ExpandedWrapper.cs
- TaskResultSetter.cs
- ResourceDefaultValueAttribute.cs
- CharacterMetrics.cs
- DefaultBindingPropertyAttribute.cs
- WaitHandleCannotBeOpenedException.cs
- MouseButtonEventArgs.cs
- ObjectResult.cs
- MSAAWinEventWrap.cs
- InvalidTimeZoneException.cs
- Int64Converter.cs
- ComponentResourceManager.cs
- SqlInternalConnectionTds.cs
- CompensationDesigner.cs
- TreeViewItemAutomationPeer.cs
- Label.cs
- CheckBoxRenderer.cs
- DocumentApplicationJournalEntry.cs
- NumberFormatter.cs
- DisplayNameAttribute.cs
- CopyCodeAction.cs
- XmlAttributeCache.cs
- SemaphoreFullException.cs
- CharacterString.cs
- LogManagementAsyncResult.cs
- PageThemeCodeDomTreeGenerator.cs
- ProfessionalColors.cs
- TextRange.cs
- InputBuffer.cs
- SecurityTokenTypes.cs
- AutoResizedEvent.cs
- ReferenceSchema.cs
- XmlResolver.cs
- TextDecorationLocationValidation.cs
- CommandLibraryHelper.cs
- BaseParser.cs
- MapPathBasedVirtualPathProvider.cs
- ExpressionBuilderCollection.cs
- dataSvcMapFileLoader.cs
- IconHelper.cs
- DataControlFieldTypeEditor.cs
- TextEditorTables.cs
- XPathDocumentIterator.cs
- ParameterBuilder.cs
- PassportAuthentication.cs
- diagnosticsswitches.cs
- AutoGeneratedFieldProperties.cs
- ExpandCollapseProviderWrapper.cs
- AsymmetricSignatureDeformatter.cs
- FormParameter.cs
- RemoteHelper.cs
- TextWriterTraceListener.cs
- MasterPageBuildProvider.cs
- SmtpReplyReader.cs
- XPathBinder.cs
- RegexCapture.cs
- TextFormatterImp.cs
- DiffuseMaterial.cs
- XmlEntityReference.cs
- DataGridViewTextBoxColumn.cs
- InternalSafeNativeMethods.cs
- AxDesigner.cs
- UserControlParser.cs
- JumpItem.cs
- RecordManager.cs
- ReaderWriterLockWrapper.cs
- ZipFileInfoCollection.cs
- WebPartZoneCollection.cs
- TripleDESCryptoServiceProvider.cs
- ParserOptions.cs
- AsyncMethodInvoker.cs
- XsltConvert.cs
- FaultCode.cs
- Int32Storage.cs
- HwndSourceParameters.cs
- activationcontext.cs
- CodeDelegateCreateExpression.cs
- PathFigureCollectionValueSerializer.cs
- List.cs
- XmlSchemaObjectTable.cs
- PaperSource.cs
- ConsoleCancelEventArgs.cs
- BindableTemplateBuilder.cs