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
- NavigationExpr.cs
- ExpressionConverter.cs
- regiisutil.cs
- ThreadAttributes.cs
- XmlWrappingReader.cs
- DataBindingHandlerAttribute.cs
- XPathExpr.cs
- SchemaImporter.cs
- PingOptions.cs
- AjaxFrameworkAssemblyAttribute.cs
- PropertyAccessVisitor.cs
- WsdlImporterElement.cs
- KeysConverter.cs
- EditorPartCollection.cs
- ContentPropertyAttribute.cs
- DataControlLinkButton.cs
- CommandBindingCollection.cs
- ReadOnlyCollection.cs
- ControlIdConverter.cs
- DesignerSerializationVisibilityAttribute.cs
- DynamicRouteExpression.cs
- QuaternionRotation3D.cs
- RenderContext.cs
- WebSysDescriptionAttribute.cs
- WorkerRequest.cs
- WrappingXamlSchemaContext.cs
- TTSEvent.cs
- IndentTextWriter.cs
- EntityProxyFactory.cs
- ColorAnimationUsingKeyFrames.cs
- TraceProvider.cs
- XamlSerializer.cs
- WhitespaceReader.cs
- FontFaceLayoutInfo.cs
- EpmSyndicationContentSerializer.cs
- X509CertificateCollection.cs
- CodeSnippetExpression.cs
- TranslateTransform.cs
- InkCollectionBehavior.cs
- DictionaryBase.cs
- HasCopySemanticsAttribute.cs
- SpellCheck.cs
- WebPartManagerDesigner.cs
- LayoutTableCell.cs
- PathTooLongException.cs
- SoapCodeExporter.cs
- CompiledQuery.cs
- AuthenticationConfig.cs
- UrlParameterReader.cs
- OdbcPermission.cs
- HtmlTableRow.cs
- SimpleWorkerRequest.cs
- CapabilitiesState.cs
- BrowserCapabilitiesFactory35.cs
- IncrementalReadDecoders.cs
- DummyDataSource.cs
- AttributeUsageAttribute.cs
- Canonicalizers.cs
- ExecutionContext.cs
- Hex.cs
- SqlProfileProvider.cs
- LineVisual.cs
- ToolBar.cs
- XmlILOptimizerVisitor.cs
- GcHandle.cs
- LayoutSettings.cs
- BitmapSource.cs
- sqlinternaltransaction.cs
- ConstructorArgumentAttribute.cs
- OpenTypeMethods.cs
- LineBreak.cs
- BaseDataList.cs
- EndpointAddressElementBase.cs
- DataGridViewCellValueEventArgs.cs
- SchemaElementDecl.cs
- CategoryAttribute.cs
- BindingManagerDataErrorEventArgs.cs
- ScriptingProfileServiceSection.cs
- BCryptNative.cs
- BadImageFormatException.cs
- OleDbErrorCollection.cs
- XsltConvert.cs
- KeyboardEventArgs.cs
- NonSerializedAttribute.cs
- TranslateTransform3D.cs
- AgileSafeNativeMemoryHandle.cs
- DependencyObjectCodeDomSerializer.cs
- NameValueFileSectionHandler.cs
- WindowsScrollBarBits.cs
- TokenBasedSet.cs
- MSHTMLHostUtil.cs
- HttpClientChannel.cs
- Models.cs
- EventLogTraceListener.cs
- UnauthorizedAccessException.cs
- RegistrySecurity.cs
- SafeCryptoHandles.cs
- Descriptor.cs
- DesignerCategoryAttribute.cs
- RoleGroup.cs