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
- TextWriter.cs
- BitmapCodecInfo.cs
- XmlIgnoreAttribute.cs
- DataGridAutoFormat.cs
- InputLanguageProfileNotifySink.cs
- DataGridViewRowCancelEventArgs.cs
- HttpContext.cs
- ShaperBuffers.cs
- PasswordDeriveBytes.cs
- ClientSettingsSection.cs
- SchemaNamespaceManager.cs
- RtfToXamlReader.cs
- GenericUI.cs
- FixedStringLookup.cs
- COSERVERINFO.cs
- TextParagraph.cs
- RightNameExpirationInfoPair.cs
- FormatterConverter.cs
- ParamArrayAttribute.cs
- StateMachineTimers.cs
- RtfToken.cs
- Queue.cs
- StylusTip.cs
- TdsParserHelperClasses.cs
- BitmapFrame.cs
- ContextMenuAutomationPeer.cs
- IxmlLineInfo.cs
- IntranetCredentialPolicy.cs
- DbBuffer.cs
- WeakEventManager.cs
- NamespaceCollection.cs
- CqlParser.cs
- XmlWellformedWriterHelpers.cs
- ScriptServiceAttribute.cs
- OutputScope.cs
- DataBindingExpressionBuilder.cs
- grammarelement.cs
- URLAttribute.cs
- cookiecontainer.cs
- SoapCodeExporter.cs
- InfoCardServiceInstallComponent.cs
- SoapSchemaExporter.cs
- EventLogInternal.cs
- PerspectiveCamera.cs
- ListItemCollection.cs
- MetabaseServerConfig.cs
- ToolStripGrip.cs
- FixedDocumentSequencePaginator.cs
- InputGestureCollection.cs
- ScriptBehaviorDescriptor.cs
- ConcatQueryOperator.cs
- Variable.cs
- TraceLog.cs
- ToolStripHighContrastRenderer.cs
- KeyFrames.cs
- ModuleElement.cs
- EntitySqlQueryState.cs
- Bitmap.cs
- StorageScalarPropertyMapping.cs
- ProcessingInstructionAction.cs
- DefaultEventAttribute.cs
- Mappings.cs
- Zone.cs
- webclient.cs
- ForwardPositionQuery.cs
- EntityRecordInfo.cs
- VisualTarget.cs
- VBIdentifierDesigner.xaml.cs
- _NestedSingleAsyncResult.cs
- WebPartVerb.cs
- XmlAnyElementAttributes.cs
- SQLGuidStorage.cs
- ButtonChrome.cs
- ServiceContractListItem.cs
- IncomingWebResponseContext.cs
- RequestTimeoutManager.cs
- HijriCalendar.cs
- BrushValueSerializer.cs
- QilInvokeLateBound.cs
- FocusManager.cs
- LoginDesignerUtil.cs
- ILGenerator.cs
- DataGridViewEditingControlShowingEventArgs.cs
- HttpProfileBase.cs
- ApplicationException.cs
- TraceHwndHost.cs
- AuthenticationSection.cs
- StructuralType.cs
- SHA256Managed.cs
- SpellerError.cs
- PathGradientBrush.cs
- TimelineClockCollection.cs
- CollectionConverter.cs
- PictureBox.cs
- ServiceAuthorizationManager.cs
- GlyphRun.cs
- Pointer.cs
- KnownBoxes.cs
- ProfileInfo.cs
- StringAnimationBase.cs