Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. //------------------------------------------------------------------------------ //Initializes a newly created instance of the /// WindowsAuthenticationEventArgs Class. ///// 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.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
- CommandBinding.cs
- FromReply.cs
- ProcessModuleCollection.cs
- DefaultEventAttribute.cs
- UIElementCollection.cs
- ThousandthOfEmRealPoints.cs
- XhtmlBasicPageAdapter.cs
- WebPartConnection.cs
- TabItemWrapperAutomationPeer.cs
- XmlSortKeyAccumulator.cs
- CommonDialog.cs
- CustomWebEventKey.cs
- OleDbException.cs
- ConnectionDemuxer.cs
- KeyConverter.cs
- ClientFormsIdentity.cs
- SystemIPv4InterfaceProperties.cs
- ReferenceConverter.cs
- Compiler.cs
- VarInfo.cs
- HttpModuleCollection.cs
- StateMachine.cs
- EntityTypeEmitter.cs
- DirectionalLight.cs
- MenuEventArgs.cs
- TCPListener.cs
- FormsAuthenticationModule.cs
- EntityDataSourceUtil.cs
- TextProviderWrapper.cs
- CellIdBoolean.cs
- FacetEnabledSchemaElement.cs
- MenuAutomationPeer.cs
- ToolStripLabel.cs
- NameValueFileSectionHandler.cs
- PropertyTabChangedEvent.cs
- EditableLabelControl.cs
- RequestTimeoutManager.cs
- Validator.cs
- TextParagraphView.cs
- ServiceInfo.cs
- EdmToObjectNamespaceMap.cs
- Cloud.cs
- WebControlAdapter.cs
- Path.cs
- CustomError.cs
- TextElementEnumerator.cs
- DataServiceQueryException.cs
- HttpPostServerProtocol.cs
- IdnElement.cs
- ColorTranslator.cs
- SharedPersonalizationStateInfo.cs
- _AcceptOverlappedAsyncResult.cs
- _ProxyChain.cs
- InheritanceRules.cs
- SimpleHandlerBuildProvider.cs
- TextFormatterHost.cs
- CodeDelegateInvokeExpression.cs
- EastAsianLunisolarCalendar.cs
- LocalizableResourceBuilder.cs
- CodeIterationStatement.cs
- DataGrid.cs
- OptimalTextSource.cs
- DBSchemaTable.cs
- TemplateBindingExpressionConverter.cs
- RegexWorker.cs
- Int64KeyFrameCollection.cs
- UnsafeNativeMethods.cs
- ClientSettingsSection.cs
- ObjectReaderCompiler.cs
- ProxyGenerationError.cs
- ButtonBaseAutomationPeer.cs
- returneventsaver.cs
- ModelPropertyDescriptor.cs
- PowerStatus.cs
- XmlDataSourceView.cs
- PenThreadPool.cs
- HttpModuleCollection.cs
- TcpServerChannel.cs
- SecurityElement.cs
- PositiveTimeSpanValidatorAttribute.cs
- TextSelectionHelper.cs
- DiscoveryServiceExtension.cs
- exports.cs
- BindStream.cs
- RelationshipSet.cs
- ListViewGroupCollectionEditor.cs
- OleDbTransaction.cs
- XPathAncestorIterator.cs
- BlurEffect.cs
- IntPtr.cs
- EntityCommandCompilationException.cs
- StorageMappingItemCollection.cs
- JsonSerializer.cs
- BaseCollection.cs
- LineSegment.cs
- FigureParagraph.cs
- DeflateStream.cs
- KeySplineConverter.cs
- DelegatingTypeDescriptionProvider.cs
- GridItemPatternIdentifiers.cs