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
- AdornerPresentationContext.cs
- ResourceReferenceExpressionConverter.cs
- ReadOnlyNameValueCollection.cs
- HostingEnvironmentException.cs
- OleDbParameter.cs
- NameValuePair.cs
- TreeNode.cs
- AuthStoreRoleProvider.cs
- GuidConverter.cs
- DCSafeHandle.cs
- ReferentialConstraintRoleElement.cs
- CheckBoxAutomationPeer.cs
- ElapsedEventArgs.cs
- TopClause.cs
- ServiceDesigner.cs
- SchemaImporter.cs
- OleDbError.cs
- ScrollPatternIdentifiers.cs
- StrongNameSignatureInformation.cs
- DocumentSignatureManager.cs
- TextWriterTraceListener.cs
- PropertyMapper.cs
- CodeComment.cs
- RulePatternOps.cs
- IPAddressCollection.cs
- InstancePersistenceException.cs
- Expressions.cs
- QueueSurrogate.cs
- FontCacheLogic.cs
- ProfileModule.cs
- NodeFunctions.cs
- QilScopedVisitor.cs
- EdmComplexPropertyAttribute.cs
- SafeEventLogWriteHandle.cs
- RootProfilePropertySettingsCollection.cs
- StringConcat.cs
- StrongNameIdentityPermission.cs
- Baml6Assembly.cs
- HttpWebResponse.cs
- RowCache.cs
- StrongNameUtility.cs
- WebPartConnectionsEventArgs.cs
- SecurityCriticalDataForSet.cs
- MenuItemBindingCollection.cs
- CacheDependency.cs
- CallSiteHelpers.cs
- ReadContentAsBinaryHelper.cs
- SqlErrorCollection.cs
- ServiceHostingEnvironment.cs
- Zone.cs
- PowerStatus.cs
- AppDomain.cs
- MetadataExchangeBindings.cs
- TerminatorSinks.cs
- UnsafeCollabNativeMethods.cs
- RotateTransform.cs
- TableLayoutPanelCellPosition.cs
- MultiplexingDispatchMessageFormatter.cs
- UIElementParagraph.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- TextEffect.cs
- ParseElementCollection.cs
- Speller.cs
- validation.cs
- SafeNativeMemoryHandle.cs
- DbDataReader.cs
- DataBinding.cs
- NativeActivityAbortContext.cs
- TraceHwndHost.cs
- Decoder.cs
- ElementMarkupObject.cs
- SafeNativeMethods.cs
- ContainerUtilities.cs
- UserControlFileEditor.cs
- TransformValueSerializer.cs
- SystemMulticastIPAddressInformation.cs
- Column.cs
- X509ServiceCertificateAuthenticationElement.cs
- compensatingcollection.cs
- ExpandSegmentCollection.cs
- PtsCache.cs
- SqlTypesSchemaImporter.cs
- InfoCardBinaryReader.cs
- TcpAppDomainProtocolHandler.cs
- FontFaceLayoutInfo.cs
- Walker.cs
- AccessControlEntry.cs
- Int64Converter.cs
- RefreshEventArgs.cs
- ReflectPropertyDescriptor.cs
- TypeDescriptionProviderAttribute.cs
- UserControlCodeDomTreeGenerator.cs
- XmlBinaryWriterSession.cs
- Partitioner.cs
- TCEAdapterGenerator.cs
- AmbientValueAttribute.cs
- XmlExtensionFunction.cs
- UserControlCodeDomTreeGenerator.cs
- ManipulationStartedEventArgs.cs
- InteropEnvironment.cs