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
- EnumValidator.cs
- DataGridViewCellParsingEventArgs.cs
- ModelUtilities.cs
- CommonObjectSecurity.cs
- CategoryAttribute.cs
- UnsafeNativeMethods.cs
- LayoutEditorPart.cs
- DataControlCommands.cs
- RenderDataDrawingContext.cs
- SplitterEvent.cs
- SmtpNtlmAuthenticationModule.cs
- HashMembershipCondition.cs
- DependentTransaction.cs
- Range.cs
- WeakRefEnumerator.cs
- PriorityBinding.cs
- DataRowChangeEvent.cs
- BrowserInteropHelper.cs
- IntSumAggregationOperator.cs
- HMACRIPEMD160.cs
- Internal.cs
- WindowHideOrCloseTracker.cs
- WebServiceErrorEvent.cs
- RelatedEnd.cs
- AttributeCollection.cs
- Compilation.cs
- SafeProcessHandle.cs
- XmlSchemaValidationException.cs
- TraceListener.cs
- MultipleViewPatternIdentifiers.cs
- ProfileService.cs
- HeaderCollection.cs
- XPathSelectionIterator.cs
- RowToParametersTransformer.cs
- TableLayoutColumnStyleCollection.cs
- BufferedStream.cs
- PageParser.cs
- WinFormsUtils.cs
- ActivityWithResult.cs
- PointCollection.cs
- BinaryReader.cs
- TextEncodedRawTextWriter.cs
- Icon.cs
- CheckoutException.cs
- StringArrayConverter.cs
- TemplateGroupCollection.cs
- ViewValidator.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- ResourceAttributes.cs
- ErrorActivity.cs
- ViewPort3D.cs
- Binding.cs
- Calendar.cs
- XpsPackagingPolicy.cs
- ParameterReplacerVisitor.cs
- DbgUtil.cs
- RoleGroupCollection.cs
- Constraint.cs
- XPathSelfQuery.cs
- DisplayMemberTemplateSelector.cs
- ImpersonateTokenRef.cs
- BackoffTimeoutHelper.cs
- CheckBox.cs
- FontStyle.cs
- UrlMappingsSection.cs
- DemultiplexingClientMessageFormatter.cs
- SqlConnection.cs
- MaterialGroup.cs
- ToolbarAUtomationPeer.cs
- MimeReflector.cs
- EntityModelBuildProvider.cs
- WinFormsSecurity.cs
- HtmlPageAdapter.cs
- DoubleAnimationUsingKeyFrames.cs
- __Error.cs
- LoadMessageLogger.cs
- VersionPair.cs
- wmiutil.cs
- InvalidDataException.cs
- NativeActivityTransactionContext.cs
- WpfWebRequestHelper.cs
- DocumentSchemaValidator.cs
- DuplicateDetector.cs
- SamlSecurityTokenAuthenticator.cs
- SqlDataSourceConfigureSelectPanel.cs
- RectAnimationBase.cs
- ContainerControl.cs
- MobileControlsSectionHelper.cs
- CacheModeConverter.cs
- XdrBuilder.cs
- BigInt.cs
- BulletedListEventArgs.cs
- DataSourceControl.cs
- Ipv6Element.cs
- MarshalDirectiveException.cs
- MaterialGroup.cs
- BinaryObjectWriter.cs
- TraceContext.cs
- DataTableReaderListener.cs
- ObjectStateManager.cs