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
- ImageCodecInfo.cs
- NonSerializedAttribute.cs
- OleDbReferenceCollection.cs
- SqlRecordBuffer.cs
- ConfigXmlComment.cs
- XmlAnyElementAttribute.cs
- FrameDimension.cs
- SelectedDatesCollection.cs
- SoapTypeAttribute.cs
- CaseInsensitiveComparer.cs
- SEHException.cs
- DetailsViewRowCollection.cs
- TypeSystem.cs
- SupportsPreviewControlAttribute.cs
- PermissionSetEnumerator.cs
- EnumerableValidator.cs
- VisualProxy.cs
- NetworkAddressChange.cs
- DataControlFieldCell.cs
- Helper.cs
- FlowLayoutPanel.cs
- EncryptedData.cs
- CellNormalizer.cs
- FolderLevelBuildProviderCollection.cs
- HealthMonitoringSectionHelper.cs
- RawContentTypeMapper.cs
- ServiceTimeoutsElement.cs
- GroupQuery.cs
- ConfigurationManagerHelper.cs
- sqlser.cs
- OrthographicCamera.cs
- DefaultExpressionVisitor.cs
- RenderOptions.cs
- DataGridViewSelectedColumnCollection.cs
- DataContext.cs
- ItemList.cs
- dataSvcMapFileLoader.cs
- Tool.cs
- Span.cs
- DoubleStorage.cs
- XmlLinkedNode.cs
- XmlSequenceWriter.cs
- ClientRolePrincipal.cs
- EdmRelationshipRoleAttribute.cs
- RadialGradientBrush.cs
- ConfigUtil.cs
- IndexerNameAttribute.cs
- NamespaceInfo.cs
- DispatchChannelSink.cs
- ConstraintConverter.cs
- TextPointer.cs
- AutoCompleteStringCollection.cs
- Pair.cs
- SplineKeyFrames.cs
- ACE.cs
- CookieProtection.cs
- ValueTable.cs
- ConfigurationSchemaErrors.cs
- WindowsRegion.cs
- WebPartZoneBase.cs
- HyperLinkColumn.cs
- IDQuery.cs
- FileCodeGroup.cs
- PolyQuadraticBezierSegment.cs
- WsdlExporter.cs
- PrivilegeNotHeldException.cs
- SiteMapProvider.cs
- Point3DCollection.cs
- DynamicDocumentPaginator.cs
- CalendarModeChangedEventArgs.cs
- Component.cs
- ExceptionHelpers.cs
- HiddenField.cs
- WebPartEditorCancelVerb.cs
- ObjectCloneHelper.cs
- FontFamily.cs
- ReturnEventArgs.cs
- WebPartZoneBase.cs
- AuthenticatedStream.cs
- ClientBuildManagerCallback.cs
- DBConnection.cs
- ToolZone.cs
- SafeCryptContextHandle.cs
- RightsManagementPermission.cs
- TransformDescriptor.cs
- IEnumerable.cs
- InstanceCreationEditor.cs
- TextDecorationCollection.cs
- BaseCollection.cs
- safesecurityhelperavalon.cs
- TemplateBindingExtension.cs
- CancellationTokenSource.cs
- CodeLinePragma.cs
- SqlWriter.cs
- IRCollection.cs
- HostedTransportConfigurationManager.cs
- StandardTransformFactory.cs
- UserControlFileEditor.cs
- CodeDirectoryCompiler.cs
- SafeFileMappingHandle.cs