Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / Mail / SmtpNtlmAuthenticationModule.cs / 5 / 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
- JavaScriptSerializer.cs
- Thread.cs
- ClientScriptManager.cs
- XmlExtensionFunction.cs
- DiscoveryReference.cs
- ObjectDataSourceMethodEventArgs.cs
- SizeF.cs
- ThreadStaticAttribute.cs
- URIFormatException.cs
- Expressions.cs
- TableItemPattern.cs
- BamlLocalizableResource.cs
- SynchronizationValidator.cs
- RegexTree.cs
- IndexingContentUnit.cs
- HeaderedContentControl.cs
- BmpBitmapDecoder.cs
- ClockGroup.cs
- FixedLineResult.cs
- PenContext.cs
- AlignmentXValidation.cs
- SqlDataSourceCache.cs
- Delegate.cs
- OptimizedTemplateContentHelper.cs
- SqlInternalConnection.cs
- AssemblyHash.cs
- OleDbParameterCollection.cs
- NavigationExpr.cs
- CellTreeNodeVisitors.cs
- LinqDataSourceValidationException.cs
- TextEditorDragDrop.cs
- ObjectItemCachedAssemblyLoader.cs
- OperationResponse.cs
- SafeFileHandle.cs
- Ops.cs
- DeviceFilterEditorDialog.cs
- ConfigurationElementProperty.cs
- ReadOnlyCollection.cs
- ObjectListItemCollection.cs
- VerticalAlignConverter.cs
- SymDocumentType.cs
- Scanner.cs
- ComponentResourceManager.cs
- FontUnitConverter.cs
- ConfigurationStrings.cs
- SmtpFailedRecipientException.cs
- WinInetCache.cs
- PageParserFilter.cs
- KeyTimeConverter.cs
- DbMetaDataFactory.cs
- QilReplaceVisitor.cs
- StringUtil.cs
- HiddenField.cs
- MaskInputRejectedEventArgs.cs
- ProfilePropertyNameValidator.cs
- MessageParameterAttribute.cs
- CLRBindingWorker.cs
- Marshal.cs
- OdbcParameterCollection.cs
- BasicCellRelation.cs
- DuplicateDetector.cs
- ScrollEvent.cs
- ListViewItemMouseHoverEvent.cs
- ComponentResourceManager.cs
- BamlCollectionHolder.cs
- SQLInt16Storage.cs
- StandardTransformFactory.cs
- DependencyPropertyHelper.cs
- ContentDefinition.cs
- IntegerValidatorAttribute.cs
- ClosableStream.cs
- SecurityDescriptor.cs
- EdmItemCollection.cs
- BamlMapTable.cs
- AssemblyInfo.cs
- DataListItemCollection.cs
- PropertyFilter.cs
- DES.cs
- CodeLinePragma.cs
- DataGridSortingEventArgs.cs
- ToolStripSplitStackLayout.cs
- TransformPattern.cs
- GridItemCollection.cs
- MSAANativeProvider.cs
- Scene3D.cs
- CookieParameter.cs
- Animatable.cs
- FindSimilarActivitiesVerb.cs
- SafeLocalMemHandle.cs
- ValidateNames.cs
- WmlSelectionListAdapter.cs
- Exceptions.cs
- XmlWhitespace.cs
- TransactionFlowProperty.cs
- TdsEnums.cs
- RadialGradientBrush.cs
- ConfigurationElementProperty.cs
- HtmlString.cs
- SqlProcedureAttribute.cs
- HttpResponseWrapper.cs