Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Mail / SmtpNtlmAuthenticationModule.cs / 1 / 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; // #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) { 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,null,ContextFlags.Connection); } string resp = (challenge != null ? clientContext.GetOutgoingBlob(challenge) : clientContext.GetOutgoingBlob(null)); 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. //------------------------------------------------------------------------------ //// 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; // #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) { 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,null,ContextFlags.Connection); } string resp = (challenge != null ? clientContext.GetOutgoingBlob(challenge) : clientContext.GetOutgoingBlob(null)); 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
- ExpandoObject.cs
- WeakEventManager.cs
- MediaPlayer.cs
- ListSortDescription.cs
- DateTimeValueSerializerContext.cs
- SubstitutionList.cs
- NamespaceDecl.cs
- ClientApiGenerator.cs
- PeerReferralPolicy.cs
- AppSecurityManager.cs
- TextFormatterContext.cs
- Object.cs
- DynamicActivity.cs
- TimelineGroup.cs
- DoubleLinkList.cs
- ArraySortHelper.cs
- nulltextcontainer.cs
- SafeRightsManagementPubHandle.cs
- MimeWriter.cs
- WebControl.cs
- coordinator.cs
- XmlSerializationWriter.cs
- AdapterUtil.cs
- DynamicPropertyHolder.cs
- ApplicationId.cs
- SqlProfileProvider.cs
- ButtonChrome.cs
- ManagementClass.cs
- DefaultTextStoreTextComposition.cs
- ActivityDesignerResources.cs
- XmlWriterSettings.cs
- SiteOfOriginPart.cs
- CultureTableRecord.cs
- HtmlSelect.cs
- TiffBitmapDecoder.cs
- WSAddressing10ProblemHeaderQNameFault.cs
- OracleRowUpdatingEventArgs.cs
- CompiledQueryCacheKey.cs
- Speller.cs
- XmlNodeChangedEventManager.cs
- DeflateEmulationStream.cs
- FormsAuthenticationEventArgs.cs
- ChangeInterceptorAttribute.cs
- UIElementParagraph.cs
- ConstraintConverter.cs
- IPipelineRuntime.cs
- ElapsedEventArgs.cs
- ConnectionStringsExpressionBuilder.cs
- SyntaxCheck.cs
- StylusPlugin.cs
- ValidationService.cs
- XmlC14NWriter.cs
- DesignerAttribute.cs
- GestureRecognizer.cs
- InteropAutomationProvider.cs
- JoinGraph.cs
- ImageCodecInfo.cs
- InputScopeNameConverter.cs
- WorkflowServiceHost.cs
- MenuBindingsEditorForm.cs
- Bits.cs
- ItemsPresenter.cs
- MouseEventArgs.cs
- XmlMembersMapping.cs
- MethodBuilderInstantiation.cs
- MeasurementDCInfo.cs
- DataGridTextColumn.cs
- WebPartHeaderCloseVerb.cs
- SR.cs
- ColumnHeaderConverter.cs
- DefaultShape.cs
- ProcessHostServerConfig.cs
- PopOutPanel.cs
- ResourceReferenceExpressionConverter.cs
- MouseCaptureWithinProperty.cs
- MsmqOutputChannel.cs
- CellTreeNodeVisitors.cs
- RelatedEnd.cs
- RequestNavigateEventArgs.cs
- ToolboxItem.cs
- PageCodeDomTreeGenerator.cs
- ToolbarAUtomationPeer.cs
- Visual3D.cs
- Image.cs
- HttpRuntimeSection.cs
- WebPartUtil.cs
- TypeSource.cs
- ResizeGrip.cs
- CreateUserWizardStep.cs
- StaticResourceExtension.cs
- filewebresponse.cs
- Char.cs
- filewebrequest.cs
- PrimaryKeyTypeConverter.cs
- ObjectListDataBindEventArgs.cs
- PropertyGridDesigner.cs
- FormsAuthenticationUserCollection.cs
- CheckBoxPopupAdapter.cs
- BindingGroup.cs
- BamlRecordHelper.cs