Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.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
- SqlTriggerContext.cs
- DefaultValueAttribute.cs
- Rect3DConverter.cs
- RoleGroup.cs
- XamlPointCollectionSerializer.cs
- SelectionRange.cs
- HtmlInputSubmit.cs
- ConstructorExpr.cs
- StateRuntime.cs
- RenderDataDrawingContext.cs
- PropertyContainer.cs
- SelectionEditor.cs
- Schema.cs
- Configuration.cs
- KnownBoxes.cs
- CategoryState.cs
- RecommendedAsConfigurableAttribute.cs
- TextBlockAutomationPeer.cs
- TypedColumnHandler.cs
- WsatProxy.cs
- SByteStorage.cs
- OuterGlowBitmapEffect.cs
- EnumerableRowCollection.cs
- PackWebResponse.cs
- CollectionBuilder.cs
- SMSvcHost.cs
- UriTemplateClientFormatter.cs
- _DomainName.cs
- XmlValidatingReader.cs
- DataRecord.cs
- Nullable.cs
- SystemInformation.cs
- Parameter.cs
- OutputCacheProfileCollection.cs
- DataControlFieldCell.cs
- WebPartConnection.cs
- TextEditorCopyPaste.cs
- DesignerSelectionListAdapter.cs
- SafeBitVector32.cs
- SelectionHighlightInfo.cs
- HttpProfileBase.cs
- SmiEventStream.cs
- DeploymentSection.cs
- GridSplitter.cs
- UxThemeWrapper.cs
- LoginName.cs
- SoapConverter.cs
- CollectionView.cs
- BigInt.cs
- RadioButtonDesigner.cs
- Condition.cs
- SectionXmlInfo.cs
- JsonXmlDataContract.cs
- WebPartEditVerb.cs
- Parameter.cs
- TablePatternIdentifiers.cs
- ASCIIEncoding.cs
- ForceCopyBuildProvider.cs
- UpdateTranslator.cs
- MultipleViewProviderWrapper.cs
- EUCJPEncoding.cs
- BlockCollection.cs
- ReachVisualSerializer.cs
- MetafileHeader.cs
- RequestCachePolicy.cs
- ProfessionalColors.cs
- HighlightOverlayGlyph.cs
- Matrix.cs
- CompoundFileStreamReference.cs
- TypeBuilder.cs
- BitmapFrameEncode.cs
- CacheManager.cs
- FileChangesMonitor.cs
- ShadowGlyph.cs
- TextControlDesigner.cs
- CreateRefExpr.cs
- CommentAction.cs
- X509ChainElement.cs
- XsltQilFactory.cs
- OletxDependentTransaction.cs
- WindowsListViewItem.cs
- CloseCollectionAsyncResult.cs
- SafeMILHandle.cs
- Range.cs
- HostingMessageProperty.cs
- EntityDesignerDataSourceView.cs
- DataColumnChangeEvent.cs
- DispatcherSynchronizationContext.cs
- XomlCompilerError.cs
- ResourceSet.cs
- OdbcPermission.cs
- RijndaelManaged.cs
- GlyphsSerializer.cs
- TableRow.cs
- ButtonField.cs
- SmtpTransport.cs
- Pick.cs
- _Connection.cs
- DataObject.cs
- Bold.cs