Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Security / WindowsAuthenticationEventArgs.cs / 1305376 / 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; ////// 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.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
- TextEditor.cs
- WindowsComboBox.cs
- RotationValidation.cs
- SetterBase.cs
- StylusDownEventArgs.cs
- AmbientLight.cs
- FileRecordSequenceCompletedAsyncResult.cs
- PageAsyncTaskManager.cs
- BmpBitmapDecoder.cs
- ClientType.cs
- WorkflowView.cs
- FixedSOMTableRow.cs
- XmlBinaryReaderSession.cs
- DiscoveryViaBehavior.cs
- PenThread.cs
- OdbcError.cs
- StringResourceManager.cs
- IImplicitResourceProvider.cs
- DataSpaceManager.cs
- NumericExpr.cs
- KeyGestureConverter.cs
- FixedElement.cs
- SQLSingle.cs
- OletxTransactionManager.cs
- SafeUserTokenHandle.cs
- WindowHideOrCloseTracker.cs
- IndexedString.cs
- TreeNodeStyle.cs
- SerializationFieldInfo.cs
- Processor.cs
- ScriptingSectionGroup.cs
- SafeProcessHandle.cs
- DetectEofStream.cs
- XmlSchemaSimpleTypeList.cs
- MembershipPasswordException.cs
- HostedAspNetEnvironment.cs
- PhysicalAddress.cs
- ZoneIdentityPermission.cs
- TransportChannelFactory.cs
- TextServicesContext.cs
- StylusPointCollection.cs
- GridView.cs
- TemplatedMailWebEventProvider.cs
- StructuralCache.cs
- SerializationInfoEnumerator.cs
- ConfigUtil.cs
- securitycriticaldataClass.cs
- AuthenticationModulesSection.cs
- SamlSubjectStatement.cs
- EasingKeyFrames.cs
- LineBreak.cs
- SafeNativeMethods.cs
- ObjectDataSourceStatusEventArgs.cs
- OdbcConnection.cs
- InteropBitmapSource.cs
- HtmlFormWrapper.cs
- CollectionView.cs
- UpdateDelegates.Generated.cs
- ConstraintStruct.cs
- xmlsaver.cs
- PerspectiveCamera.cs
- WbemProvider.cs
- StreamWriter.cs
- localization.cs
- DataTableCollection.cs
- ConfigurationManagerInternalFactory.cs
- Transform3DGroup.cs
- ThreadStaticAttribute.cs
- Overlapped.cs
- HScrollProperties.cs
- ByteAnimationUsingKeyFrames.cs
- DeobfuscatingStream.cs
- Token.cs
- BuildResult.cs
- coordinator.cs
- SessionStateUtil.cs
- AssemblyHash.cs
- AutomationPeer.cs
- ScalarConstant.cs
- AttributedMetaModel.cs
- SingleObjectCollection.cs
- SynchronizationScope.cs
- DataRelationPropertyDescriptor.cs
- SafeArrayRankMismatchException.cs
- DocumentAutomationPeer.cs
- Section.cs
- PageCache.cs
- InsufficientMemoryException.cs
- XPathExpr.cs
- SystemDropShadowChrome.cs
- ColorInterpolationModeValidation.cs
- WeakReference.cs
- StoreAnnotationsMap.cs
- StyleTypedPropertyAttribute.cs
- CssStyleCollection.cs
- WebPartDisplayMode.cs
- FontEditor.cs
- SessionStateModule.cs
- XmlReader.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs