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
- AutoSizeComboBox.cs
- DataTableNewRowEvent.cs
- ConfigXmlWhitespace.cs
- KnownTypeDataContractResolver.cs
- ItemList.cs
- XmlLanguage.cs
- ComponentGuaranteesAttribute.cs
- SqlNodeAnnotations.cs
- NameScope.cs
- Camera.cs
- RelationshipConverter.cs
- ParameterReplacerVisitor.cs
- GridViewDeletedEventArgs.cs
- ChannelSinkStacks.cs
- VarRemapper.cs
- ImageField.cs
- GridView.cs
- MarshalByRefObject.cs
- ProfileManager.cs
- RadioButtonList.cs
- CheckBox.cs
- WebPartTransformerAttribute.cs
- XmlChildNodes.cs
- PassportIdentity.cs
- ThaiBuddhistCalendar.cs
- AspCompat.cs
- TriggerCollection.cs
- RegexRunnerFactory.cs
- DLinqColumnProvider.cs
- ModuleBuilderData.cs
- CommandExpr.cs
- ToolStripLocationCancelEventArgs.cs
- PropertyDescriptorCollection.cs
- Baml2006ReaderFrame.cs
- Collection.cs
- RuleSettings.cs
- TimeStampChecker.cs
- GridLengthConverter.cs
- RegexWriter.cs
- Panel.cs
- PocoEntityKeyStrategy.cs
- PermissionRequestEvidence.cs
- ServiceDiscoveryBehavior.cs
- ObjectStateFormatter.cs
- EntityDataSourceState.cs
- DataControlFieldCollection.cs
- DataServiceQueryOfT.cs
- EncodedStreamFactory.cs
- HttpProtocolImporter.cs
- TypeCodeDomSerializer.cs
- SplitterPanel.cs
- ScrollEvent.cs
- SqlUnionizer.cs
- MessageFormatterConverter.cs
- SaveWorkflowAsyncResult.cs
- SqlProcedureAttribute.cs
- XmlTextAttribute.cs
- HtmlLinkAdapter.cs
- AssemblyFilter.cs
- LinkTarget.cs
- RootNamespaceAttribute.cs
- ScrollableControl.cs
- figurelengthconverter.cs
- CharEntityEncoderFallback.cs
- PropertyContainer.cs
- PropertiesTab.cs
- XPathArrayIterator.cs
- SqlXml.cs
- ChangeNode.cs
- UIElementParagraph.cs
- DetailsViewCommandEventArgs.cs
- NameValueConfigurationElement.cs
- CustomAttributeSerializer.cs
- CqlBlock.cs
- StreamGeometry.cs
- DependencyProperty.cs
- MD5.cs
- PointCollection.cs
- ImageFormatConverter.cs
- ProfileModule.cs
- TextElementAutomationPeer.cs
- DbMetaDataFactory.cs
- PersonalizationDictionary.cs
- NavigationHelper.cs
- JulianCalendar.cs
- SrgsText.cs
- __ConsoleStream.cs
- assemblycache.cs
- ISFTagAndGuidCache.cs
- ComponentManagerBroker.cs
- SetUserLanguageRequest.cs
- SourceChangedEventArgs.cs
- DataSourceProvider.cs
- TypePresenter.xaml.cs
- XDRSchema.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- DiscreteKeyFrames.cs
- OLEDB_Enum.cs
- OdbcConnectionPoolProviderInfo.cs
- UInt32Storage.cs