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
- DataQuery.cs
- DiagnosticsConfiguration.cs
- ZipIOLocalFileBlock.cs
- PolyBezierSegment.cs
- XPathMessageFilterElementComparer.cs
- FilterRepeater.cs
- HttpException.cs
- NamespaceInfo.cs
- ExpressionsCollectionEditor.cs
- InternalCache.cs
- TextFormatter.cs
- DefaultTextStoreTextComposition.cs
- FixedSOMPageElement.cs
- DataGridRowHeader.cs
- BlobPersonalizationState.cs
- FormViewDeleteEventArgs.cs
- CheckBoxField.cs
- ReadWriteSpinLock.cs
- PageRequestManager.cs
- WinEventWrap.cs
- TemplateBuilder.cs
- HttpModuleCollection.cs
- ClassDataContract.cs
- CompiledRegexRunnerFactory.cs
- ReliabilityContractAttribute.cs
- XamlNamespaceHelper.cs
- ProxyGenerator.cs
- RuleSettingsCollection.cs
- _AcceptOverlappedAsyncResult.cs
- StreamUpgradeInitiator.cs
- XmlSchemaAttributeGroupRef.cs
- BasicCommandTreeVisitor.cs
- ToolStripContentPanel.cs
- InternalBufferOverflowException.cs
- InvokeDelegate.cs
- BatchStream.cs
- ApplicationBuildProvider.cs
- CompilerCollection.cs
- UpdatePanelTrigger.cs
- FormsAuthenticationUser.cs
- FileInfo.cs
- New.cs
- DocumentsTrace.cs
- UnsafeNativeMethods.cs
- ValidationHelpers.cs
- WorkflowQueuingService.cs
- WebPartPersonalization.cs
- SystemEvents.cs
- MethodImplAttribute.cs
- OleDbConnectionInternal.cs
- EntityCodeGenerator.cs
- Calendar.cs
- TransformGroup.cs
- XPathNodeInfoAtom.cs
- SqlMultiplexer.cs
- OptimalTextSource.cs
- SyncOperationState.cs
- ThicknessAnimationBase.cs
- InvalidComObjectException.cs
- Avt.cs
- DataGridViewCellEventArgs.cs
- ActivityBindForm.cs
- DataRecordInfo.cs
- Icon.cs
- CodeBlockBuilder.cs
- JsonWriter.cs
- MultiTrigger.cs
- HybridDictionary.cs
- InternalSafeNativeMethods.cs
- LocalizationParserHooks.cs
- ActionMismatchAddressingException.cs
- DragDrop.cs
- GlobalizationSection.cs
- XPathAxisIterator.cs
- Button.cs
- Camera.cs
- RenamedEventArgs.cs
- unsafenativemethodsother.cs
- TimeStampChecker.cs
- EmptyCollection.cs
- PkcsUtils.cs
- DataControlFieldCollection.cs
- AuthenticationManager.cs
- ScriptResourceAttribute.cs
- XPathPatternParser.cs
- SqlReferenceCollection.cs
- TreeNodeSelectionProcessor.cs
- TraceRecords.cs
- OleDbRowUpdatingEvent.cs
- QueryUtil.cs
- EntityDataSourceColumn.cs
- LocatorManager.cs
- TextAction.cs
- ImageMetadata.cs
- TextRangeProviderWrapper.cs
- Error.cs
- CustomAttribute.cs
- FileDialog_Vista.cs
- DataSourceXmlSubItemAttribute.cs
- WindowsGraphicsCacheManager.cs