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
- UIntPtr.cs
- CompositeKey.cs
- CodeStatementCollection.cs
- XmlAttributeHolder.cs
- ColumnHeader.cs
- FamilyMapCollection.cs
- DataGridClipboardHelper.cs
- X509PeerCertificateElement.cs
- TypeConverterAttribute.cs
- MouseGestureValueSerializer.cs
- BackStopAuthenticationModule.cs
- XmlDocumentSerializer.cs
- RightsManagementEncryptedStream.cs
- SchemaElementLookUpTable.cs
- TextSpan.cs
- FillErrorEventArgs.cs
- AgileSafeNativeMemoryHandle.cs
- SpellCheck.cs
- RenameRuleObjectDialog.cs
- StopStoryboard.cs
- querybuilder.cs
- GPStream.cs
- RepeaterDataBoundAdapter.cs
- Size3D.cs
- OledbConnectionStringbuilder.cs
- WaitHandle.cs
- TextRunTypographyProperties.cs
- TcpTransportBindingElement.cs
- AccessedThroughPropertyAttribute.cs
- SystemUdpStatistics.cs
- LinkClickEvent.cs
- ColorBlend.cs
- IsolatedStorageFile.cs
- VScrollBar.cs
- SyntaxCheck.cs
- BamlResourceSerializer.cs
- BindValidator.cs
- ClientBuildManagerCallback.cs
- OdbcConnectionOpen.cs
- SelectionGlyphBase.cs
- SQLSingleStorage.cs
- IdnMapping.cs
- SoapDocumentMethodAttribute.cs
- RenderContext.cs
- OleDbException.cs
- ISessionStateStore.cs
- DataGridHeaderBorder.cs
- FillBehavior.cs
- ClonableStack.cs
- CodeTypeMemberCollection.cs
- OdbcReferenceCollection.cs
- ellipse.cs
- Emitter.cs
- Attachment.cs
- UserControlCodeDomTreeGenerator.cs
- GridViewSelectEventArgs.cs
- WsdlBuildProvider.cs
- KerberosSecurityTokenAuthenticator.cs
- QilInvokeLateBound.cs
- DataControlPagerLinkButton.cs
- ReadOnlyDataSource.cs
- SizeAnimationUsingKeyFrames.cs
- HttpWriter.cs
- SiteMapSection.cs
- TypeUnloadedException.cs
- LambdaCompiler.Expressions.cs
- SetStateDesigner.cs
- ListManagerBindingsCollection.cs
- HttpPostServerProtocol.cs
- PlanCompilerUtil.cs
- VisualTarget.cs
- WmlValidationSummaryAdapter.cs
- SqlResolver.cs
- CqlLexer.cs
- WorkflowDesigner.cs
- ScalarConstant.cs
- DefinitionUpdate.cs
- cookie.cs
- ListSortDescriptionCollection.cs
- ReflectionUtil.cs
- Int16AnimationUsingKeyFrames.cs
- SystemWebSectionGroup.cs
- EditorZoneBase.cs
- SafeHandles.cs
- Container.cs
- SmtpNetworkElement.cs
- StringKeyFrameCollection.cs
- ProcessHostFactoryHelper.cs
- AmbientValueAttribute.cs
- ModuleElement.cs
- TypeValidationEventArgs.cs
- SchemaImporter.cs
- ToolStripManager.cs
- ModelPropertyCollectionImpl.cs
- ServicePointManagerElement.cs
- QuinticEase.cs
- XmlSchemaSequence.cs
- XmlTextReader.cs
- HttpServerUtilityWrapper.cs
- PeerContact.cs