Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- WebScriptMetadataFormatter.cs
- WebPartDescriptionCollection.cs
- TextDecorations.cs
- ToolStripDesignerAvailabilityAttribute.cs
- ValidationHelper.cs
- StructureChangedEventArgs.cs
- AnimatedTypeHelpers.cs
- _NativeSSPI.cs
- GridViewHeaderRowPresenter.cs
- TextCompositionEventArgs.cs
- CodeCompiler.cs
- Composition.cs
- Cursor.cs
- RSAPKCS1SignatureFormatter.cs
- ConfigXmlText.cs
- PopupRoot.cs
- _ListenerRequestStream.cs
- QuarticEase.cs
- ImageIndexConverter.cs
- XmlSchemaAnyAttribute.cs
- ToolStripContainerDesigner.cs
- UnicastIPAddressInformationCollection.cs
- PrivilegeNotHeldException.cs
- BackStopAuthenticationModule.cs
- UrlMappingsModule.cs
- TypeUnloadedException.cs
- HostedBindingBehavior.cs
- figurelengthconverter.cs
- LOSFormatter.cs
- SingleAnimationBase.cs
- HttpProxyCredentialType.cs
- QueueProcessor.cs
- EncryptedXml.cs
- BitmapEffectInputConnector.cs
- StaticFileHandler.cs
- templategroup.cs
- ChangeProcessor.cs
- UnaryQueryOperator.cs
- InstanceLockedException.cs
- DateTimeOffsetConverter.cs
- WrappedIUnknown.cs
- ModuleElement.cs
- InternalSafeNativeMethods.cs
- DataPointer.cs
- XmlEventCache.cs
- SmiTypedGetterSetter.cs
- FontNamesConverter.cs
- PeerInputChannelListener.cs
- DataTemplate.cs
- GlyphingCache.cs
- NetworkStream.cs
- HandlerBase.cs
- CellPartitioner.cs
- MenuItem.cs
- SecureEnvironment.cs
- AssertHelper.cs
- TextEffectCollection.cs
- ComNativeDescriptor.cs
- ColumnResult.cs
- ValidationHelper.cs
- BaseTemplateParser.cs
- WebHostUnsafeNativeMethods.cs
- XmlSchemaException.cs
- SequenceRangeCollection.cs
- ConfigsHelper.cs
- TableRow.cs
- ParseChildrenAsPropertiesAttribute.cs
- InkCanvasAutomationPeer.cs
- PrincipalPermission.cs
- HighContrastHelper.cs
- Debugger.cs
- SQLDateTime.cs
- ClonableStack.cs
- LineServices.cs
- DelayedRegex.cs
- TextPattern.cs
- ListView.cs
- SingleSelectRootGridEntry.cs
- FileChangeNotifier.cs
- AutomationTextAttribute.cs
- RegexParser.cs
- StateElement.cs
- SemaphoreSecurity.cs
- OAVariantLib.cs
- FileDetails.cs
- ResourceManager.cs
- FieldCollectionEditor.cs
- BeginEvent.cs
- SchemaTypeEmitter.cs
- SocketInformation.cs
- uribuilder.cs
- ExceptionRoutedEventArgs.cs
- DesignerAutoFormatStyle.cs
- Model3D.cs
- TraceHandler.cs
- XamlInt32CollectionSerializer.cs
- WebEvents.cs
- ProtocolsSection.cs
- ForeignConstraint.cs
- DateTimeSerializationSection.cs