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
- InvalidateEvent.cs
- ScrollPattern.cs
- Trace.cs
- SafeProcessHandle.cs
- AuthStoreRoleProvider.cs
- WebPartDisplayModeCollection.cs
- MetadataItemCollectionFactory.cs
- BufferedWebEventProvider.cs
- JournalEntryListConverter.cs
- FontNamesConverter.cs
- Parsers.cs
- MexTcpBindingElement.cs
- ListView.cs
- DiscoveryOperationContext.cs
- XmlSchemaValidationException.cs
- ISAPIRuntime.cs
- DataObjectSettingDataEventArgs.cs
- TraceHandler.cs
- IOThreadScheduler.cs
- CacheOutputQuery.cs
- HierarchicalDataSourceControl.cs
- InputScope.cs
- CheckBox.cs
- CodeTryCatchFinallyStatement.cs
- ActivationArguments.cs
- CommandID.cs
- SingleKeyFrameCollection.cs
- ImageDrawing.cs
- SystemDropShadowChrome.cs
- XmlBinaryReaderSession.cs
- RSAPKCS1SignatureFormatter.cs
- PriorityItem.cs
- PerformanceCounterPermission.cs
- BooleanConverter.cs
- DelegatingConfigHost.cs
- ScheduleChanges.cs
- DataServiceQueryContinuation.cs
- MenuItemStyleCollectionEditor.cs
- RegexWorker.cs
- SecurityPolicySection.cs
- MetadataExchangeClient.cs
- DBCSCodePageEncoding.cs
- PlatformCulture.cs
- MessageProperties.cs
- HttpWriter.cs
- RulePatternOps.cs
- _UncName.cs
- IPAddress.cs
- HttpContext.cs
- IIS7WorkerRequest.cs
- Events.cs
- ISO2022Encoding.cs
- RelationalExpressions.cs
- MultipartContentParser.cs
- Int32CAMarshaler.cs
- AppModelKnownContentFactory.cs
- OracleConnectionString.cs
- IMembershipProvider.cs
- PersonalizationState.cs
- StringReader.cs
- BamlVersionHeader.cs
- XmlSchemaValidator.cs
- DifferencingCollection.cs
- SqlCacheDependencySection.cs
- CacheAxisQuery.cs
- regiisutil.cs
- FileLogRecord.cs
- HMAC.cs
- EdmMember.cs
- DataTrigger.cs
- ValueConversionAttribute.cs
- HttpListenerException.cs
- SqlProvider.cs
- LinqDataSourceSelectEventArgs.cs
- FontInfo.cs
- DescendentsWalker.cs
- Axis.cs
- AbsoluteQuery.cs
- sqlpipe.cs
- basecomparevalidator.cs
- ContainerUIElement3D.cs
- SocketInformation.cs
- RepeatButtonAutomationPeer.cs
- TdsEnums.cs
- Thumb.cs
- SignedXmlDebugLog.cs
- OraclePermission.cs
- XmlConvert.cs
- TemplateBindingExpression.cs
- Sql8ConformanceChecker.cs
- Dynamic.cs
- NonVisualControlAttribute.cs
- ApplicationProxyInternal.cs
- MexServiceChannelBuilder.cs
- OdbcParameterCollection.cs
- ObjectDesignerDataSourceView.cs
- CodeTypeReference.cs
- ConfigurationStrings.cs
- Literal.cs
- WebSysDefaultValueAttribute.cs