Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Mail / SmtpNtlmAuthenticationModule.cs / 1305376 / 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; using System.Security.Authentication.ExtendedProtection; // #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, string spn, ChannelBinding channelBindingToken) { 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, spn, ContextFlags.Connection, channelBindingToken); } string resp = clientContext.GetOutgoingBlob(challenge); 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
- GeometryModel3D.cs
- Effect.cs
- DynamicPropertyHolder.cs
- CqlIdentifiers.cs
- Logging.cs
- SiteMap.cs
- WindowsListViewSubItem.cs
- SqlEnums.cs
- Menu.cs
- ADConnectionHelper.cs
- AccessDataSourceView.cs
- ObjectToken.cs
- HashUtility.cs
- MetadataHelper.cs
- NotifyCollectionChangedEventArgs.cs
- ArrayWithOffset.cs
- OdbcPermission.cs
- HttpInputStream.cs
- SortDescriptionCollection.cs
- Constraint.cs
- XmlStreamStore.cs
- HtmlWindow.cs
- XmlProcessingInstruction.cs
- CacheMode.cs
- AuthorizationRule.cs
- DatePickerAutomationPeer.cs
- _AutoWebProxyScriptWrapper.cs
- GenericEnumerator.cs
- ToolboxItem.cs
- XmlTextReaderImpl.cs
- LayoutTableCell.cs
- RelationshipEndCollection.cs
- HtmlForm.cs
- AssemblyNameProxy.cs
- ServiceDiscoveryElement.cs
- RSAOAEPKeyExchangeFormatter.cs
- CommandField.cs
- SerializationSectionGroup.cs
- TemplateModeChangedEventArgs.cs
- SoapConverter.cs
- BufferedWebEventProvider.cs
- DependencySource.cs
- MatrixTransform3D.cs
- SrgsGrammarCompiler.cs
- WorkflowEventArgs.cs
- ProfileGroupSettings.cs
- DoubleLink.cs
- XmlMtomWriter.cs
- ImageConverter.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- MenuRendererStandards.cs
- ObjectListTitleAttribute.cs
- DbConnectionPoolIdentity.cs
- Keyboard.cs
- FormsIdentity.cs
- RandomNumberGenerator.cs
- DockPattern.cs
- OleDbDataAdapter.cs
- ToolTip.cs
- HebrewNumber.cs
- xsdvalidator.cs
- MailSettingsSection.cs
- ServiceReference.cs
- TemplateControl.cs
- SystemNetworkInterface.cs
- RecordManager.cs
- GlyphManager.cs
- versioninfo.cs
- SmtpSection.cs
- SecurityTokenValidationException.cs
- SiteMembershipCondition.cs
- ButtonBase.cs
- WsatServiceCertificate.cs
- WebPartCancelEventArgs.cs
- GenericEnumConverter.cs
- JavaScriptObjectDeserializer.cs
- ListViewItemSelectionChangedEvent.cs
- FileSecurity.cs
- ConfigurationStrings.cs
- NativeMethodsCLR.cs
- ScrollViewerAutomationPeer.cs
- SpellerHighlightLayer.cs
- COM2ComponentEditor.cs
- XMLSyntaxException.cs
- ImageFormatConverter.cs
- SQLInt16.cs
- BufferedReadStream.cs
- tooltip.cs
- MetadataSerializer.cs
- BaseHashHelper.cs
- ButtonBase.cs
- AutoGeneratedField.cs
- FontEmbeddingManager.cs
- ToolStripPanelCell.cs
- PerformanceCounterCategory.cs
- Calendar.cs
- InternalEnumValidatorAttribute.cs
- Nullable.cs
- SocketElement.cs
- ClrProviderManifest.cs