Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- SchemaAttDef.cs
- ViewGenResults.cs
- NameObjectCollectionBase.cs
- GiveFeedbackEvent.cs
- TextProviderWrapper.cs
- HttpModuleCollection.cs
- WsiProfilesElementCollection.cs
- DataGridViewCellLinkedList.cs
- SubpageParaClient.cs
- PersonalizationProvider.cs
- Metadata.cs
- XmlAnyElementAttribute.cs
- EmptyControlCollection.cs
- UnsafeNativeMethods.cs
- WebServiceData.cs
- DefaultHttpHandler.cs
- JsonGlobals.cs
- RawKeyboardInputReport.cs
- EnumMemberAttribute.cs
- RecognizerBase.cs
- CodeMemberMethod.cs
- SqlBulkCopy.cs
- MatrixAnimationBase.cs
- RoutedPropertyChangedEventArgs.cs
- TextSearch.cs
- BackgroundFormatInfo.cs
- SchemaHelper.cs
- TemplateBindingExtension.cs
- FileEnumerator.cs
- SqlConnectionString.cs
- CodeRegionDirective.cs
- FlowDocumentReaderAutomationPeer.cs
- Effect.cs
- HttpCacheParams.cs
- TransformerTypeCollection.cs
- NameGenerator.cs
- WebPartMinimizeVerb.cs
- DecimalFormatter.cs
- COM2FontConverter.cs
- FormsAuthentication.cs
- LinkedResourceCollection.cs
- MediaElement.cs
- ParentQuery.cs
- ViewCellSlot.cs
- SourceFilter.cs
- RegexTree.cs
- TableProviderWrapper.cs
- StateMachine.cs
- DataServiceResponse.cs
- PackWebResponse.cs
- ItemDragEvent.cs
- CounterCreationDataCollection.cs
- DesignerTransactionCloseEvent.cs
- Condition.cs
- TypeUtil.cs
- StreamWithDictionary.cs
- HtmlEncodedRawTextWriter.cs
- AuthenticationServiceManager.cs
- Qualifier.cs
- TableLayoutPanelCellPosition.cs
- EFColumnProvider.cs
- MultipleCopiesCollection.cs
- MetadataException.cs
- ValueUtilsSmi.cs
- EntityObject.cs
- CapabilitiesRule.cs
- UInt32Converter.cs
- TouchEventArgs.cs
- InputLanguage.cs
- IndentedWriter.cs
- RichTextBox.cs
- SqlParameter.cs
- KeyValuePairs.cs
- SerializerWriterEventHandlers.cs
- InstanceKeyCompleteException.cs
- AuthenticateEventArgs.cs
- xdrvalidator.cs
- XmlWellformedWriter.cs
- HelpInfo.cs
- GridProviderWrapper.cs
- XmlSignatureManifest.cs
- MsmqPoisonMessageException.cs
- CompoundFileReference.cs
- XmlSchemaParticle.cs
- XmlDeclaration.cs
- XmlSchemaParticle.cs
- PixelFormatConverter.cs
- AsnEncodedData.cs
- ConfigsHelper.cs
- WindowsListViewGroupHelper.cs
- GACIdentityPermission.cs
- ScriptServiceAttribute.cs
- WebPartVerbsEventArgs.cs
- WindowProviderWrapper.cs
- TextContainerChangeEventArgs.cs
- TimerElapsedEvenArgs.cs
- FixedPageProcessor.cs
- ReadOnlyDictionary.cs
- UdpSocketReceiveManager.cs
- Stopwatch.cs