Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Mail / SmtpNtlmAuthenticationModule.cs / 1305376 / SmtpNtlmAuthenticationModule.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mail { using System; using System.Collections; using System.IO; using System.Net; using System.Security.Permissions; using System.Security.Authentication.ExtendedProtection; // #if MAKE_MAILCLIENT_PUBLIC internal #else internal #endif class SmtpNtlmAuthenticationModule : ISmtpAuthenticationModule { Hashtable sessions = new Hashtable(); internal SmtpNtlmAuthenticationModule() { } #region ISmtpAuthenticationModule Members // Security this method will access NetworkCredential properties that demand UnmanagedCode and Environment Permission [EnvironmentPermission(SecurityAction.Assert, Unrestricted=true)] [SecurityPermission(SecurityAction.Assert, Flags=SecurityPermissionFlag.UnmanagedCode)] public Authorization Authenticate(string challenge, NetworkCredential credential, object sessionCookie, string spn, ChannelBinding channelBindingToken) { if(Logging.On)Logging.Enter(Logging.Web, this, "Authenticate", null); try { lock (this.sessions) { NTAuthentication clientContext = this.sessions[sessionCookie] as NTAuthentication; if (clientContext == null) { if(credential == null){ return null; } this.sessions[sessionCookie] = clientContext = new NTAuthentication(false, "Ntlm", credential, spn, ContextFlags.Connection, channelBindingToken); } string resp = clientContext.GetOutgoingBlob(challenge); if (!clientContext.IsCompleted) { return new Authorization(resp, false); } else { this.sessions.Remove(sessionCookie); return new Authorization(resp, true); } } } finally { if(Logging.On)Logging.Exit(Logging.Web, this, "Authenticate", null); } } public string AuthenticationType { get { return "ntlm"; } } public void CloseContext(object sessionCookie) { // This is a no-op since the context is not // kept open by this module beyond auth completion. } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStripRendererSwitcher.cs
- KeyPressEvent.cs
- InputGestureCollection.cs
- RoutingExtensionElement.cs
- MdImport.cs
- SqlResolver.cs
- HierarchicalDataBoundControl.cs
- WebResponse.cs
- SmtpFailedRecipientException.cs
- OpCodes.cs
- Win32Exception.cs
- CqlQuery.cs
- CallbackValidatorAttribute.cs
- ByteAnimation.cs
- DashStyle.cs
- ThicknessKeyFrameCollection.cs
- ByteStorage.cs
- ContextStaticAttribute.cs
- DataGridViewRowPostPaintEventArgs.cs
- EdmItemCollection.OcAssemblyCache.cs
- ErrorView.xaml.cs
- ControlBindingsCollection.cs
- WindowsImpersonationContext.cs
- ToolBarButtonClickEvent.cs
- ButtonBaseAdapter.cs
- Matrix.cs
- ActivityDesigner.cs
- CodeIdentifier.cs
- ConstraintCollection.cs
- IdentityElement.cs
- WorkflowExecutor.cs
- DispatcherObject.cs
- RefType.cs
- VectorValueSerializer.cs
- EditorServiceContext.cs
- cryptoapiTransform.cs
- WebPartManager.cs
- PolyBezierSegmentFigureLogic.cs
- GenerateScriptTypeAttribute.cs
- WebServiceReceiveDesigner.cs
- DataGridViewIntLinkedList.cs
- SafeEventLogWriteHandle.cs
- PasswordBox.cs
- WebPartHeaderCloseVerb.cs
- RenderingEventArgs.cs
- util.cs
- OleDbConnectionInternal.cs
- ComponentCommands.cs
- PageCache.cs
- DataViewSettingCollection.cs
- ItemsPanelTemplate.cs
- ObjectTokenCategory.cs
- WCFServiceClientProxyGenerator.cs
- DataTableCollection.cs
- DeferredReference.cs
- InvalidCardException.cs
- SqlServices.cs
- TimerElapsedEvenArgs.cs
- ThreadInterruptedException.cs
- ScrollPattern.cs
- VectorAnimation.cs
- UtilityExtension.cs
- CookieProtection.cs
- SoapFormatter.cs
- DateTimeAutomationPeer.cs
- IDispatchConstantAttribute.cs
- Line.cs
- XPathNodeIterator.cs
- HttpListenerException.cs
- SystemGatewayIPAddressInformation.cs
- PackagingUtilities.cs
- ToolboxDataAttribute.cs
- SafeNativeMethodsCLR.cs
- WebFaultClientMessageInspector.cs
- NavigatingCancelEventArgs.cs
- AssemblyBuilder.cs
- ChangeNode.cs
- SystemNetworkInterface.cs
- FontFamilyIdentifier.cs
- MarkupProperty.cs
- ViewGenResults.cs
- ToolboxItemAttribute.cs
- DebugHandleTracker.cs
- SocketCache.cs
- PublishLicense.cs
- TypeContext.cs
- ChannelToken.cs
- UnionExpr.cs
- AttachedAnnotation.cs
- TypeConvertions.cs
- TemplatePartAttribute.cs
- PenThreadPool.cs
- AppSettingsExpressionEditor.cs
- Pipe.cs
- TypeLoadException.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- SqlReferenceCollection.cs
- MetadataCacheItem.cs
- DbSetClause.cs
- ContextMenuStripGroup.cs