Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Mail / SmtpAuthenticationManager.cs / 1 / SmtpAuthenticationManager.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mail { using System; using System.Collections; using System.IO; using System.Net; internal static class SmtpAuthenticationManager { static ArrayList modules = new ArrayList(); static SmtpAuthenticationManager() { // #if !FEATURE_PAL if (ComNetOS.IsWin2K) { // Negotiate supported only if Win2K or later Register(new SmtpNegotiateAuthenticationModule()); } Register(new SmtpNtlmAuthenticationModule()); Register(new SmtpDigestAuthenticationModule()); #endif // !FEATURE_PAL Register(new SmtpLoginAuthenticationModule()); } internal static void Register(ISmtpAuthenticationModule module) { if (module == null) throw new ArgumentNullException("module"); lock (modules) { modules.Add(module); } } /* // Consider removing. internal static void Unregister(ISmtpAuthenticationModule module) { if (module == null) throw new ArgumentNullException("module"); lock (modules) { modules.Remove(module); } } */ /* // Consider removing. internal static void Unregister(string authenticationType) { if (authenticationType == null) throw new ArgumentNullException("authenticationType"); lock (modules) { foreach (ISmtpAuthenticationModule module in modules) { if (0 == string.Compare(module.AuthenticationType, authenticationType, StringComparison.OrdinalIgnoreCase)) { modules.Remove(module); } } } } */ internal static ISmtpAuthenticationModule[] GetModules() { lock (modules) { ISmtpAuthenticationModule[] copy = new ISmtpAuthenticationModule[modules.Count]; modules.CopyTo(0, copy, 0, modules.Count); return copy; } } } } // 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; internal static class SmtpAuthenticationManager { static ArrayList modules = new ArrayList(); static SmtpAuthenticationManager() { // #if !FEATURE_PAL if (ComNetOS.IsWin2K) { // Negotiate supported only if Win2K or later Register(new SmtpNegotiateAuthenticationModule()); } Register(new SmtpNtlmAuthenticationModule()); Register(new SmtpDigestAuthenticationModule()); #endif // !FEATURE_PAL Register(new SmtpLoginAuthenticationModule()); } internal static void Register(ISmtpAuthenticationModule module) { if (module == null) throw new ArgumentNullException("module"); lock (modules) { modules.Add(module); } } /* // Consider removing. internal static void Unregister(ISmtpAuthenticationModule module) { if (module == null) throw new ArgumentNullException("module"); lock (modules) { modules.Remove(module); } } */ /* // Consider removing. internal static void Unregister(string authenticationType) { if (authenticationType == null) throw new ArgumentNullException("authenticationType"); lock (modules) { foreach (ISmtpAuthenticationModule module in modules) { if (0 == string.Compare(module.AuthenticationType, authenticationType, StringComparison.OrdinalIgnoreCase)) { modules.Remove(module); } } } } */ internal static ISmtpAuthenticationModule[] GetModules() { lock (modules) { ISmtpAuthenticationModule[] copy = new ISmtpAuthenticationModule[modules.Count]; modules.CopyTo(0, copy, 0, modules.Count); return copy; } } } } // 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
- CharAnimationBase.cs
- StringFormat.cs
- Floater.cs
- PolicyDesigner.cs
- XNodeSchemaApplier.cs
- WebPartManagerInternals.cs
- TextRunProperties.cs
- DataTablePropertyDescriptor.cs
- InheritanceAttribute.cs
- BamlLocalizableResourceKey.cs
- DuplexChannel.cs
- ExceptionWrapper.cs
- newitemfactory.cs
- MessageFilter.cs
- WebDescriptionAttribute.cs
- HttpCacheVaryByContentEncodings.cs
- lengthconverter.cs
- XomlCompilerParameters.cs
- TimeZone.cs
- SchemaImporterExtension.cs
- XmlRootAttribute.cs
- OleDbErrorCollection.cs
- PageWrapper.cs
- FullTextLine.cs
- AttributeTableBuilder.cs
- EpmContentDeSerializerBase.cs
- StreamInfo.cs
- StateRuntime.cs
- AuthenticationManager.cs
- Vector3DAnimation.cs
- ConfigurationManagerInternal.cs
- SoapInteropTypes.cs
- PageBuildProvider.cs
- ProgressPage.cs
- TextTreeUndoUnit.cs
- RefreshPropertiesAttribute.cs
- EntityStoreSchemaFilterEntry.cs
- DesignTimeValidationFeature.cs
- SafeRegistryHandle.cs
- HitTestWithGeometryDrawingContextWalker.cs
- SelectionUIHandler.cs
- AuthorizationRule.cs
- URI.cs
- Geometry3D.cs
- DataGridItemEventArgs.cs
- ObjectListComponentEditor.cs
- Enum.cs
- Control.cs
- NavigatingCancelEventArgs.cs
- TdsParameterSetter.cs
- GlyphManager.cs
- HttpDebugHandler.cs
- RepeatButton.cs
- NodeFunctions.cs
- _WebProxyDataBuilder.cs
- DurableInstanceProvider.cs
- Types.cs
- LocationReferenceValue.cs
- SplayTreeNode.cs
- ParseChildrenAsPropertiesAttribute.cs
- EncodingFallbackAwareXmlTextWriter.cs
- SendSecurityHeaderElement.cs
- Panel.cs
- MimeTextImporter.cs
- SettingsPropertyIsReadOnlyException.cs
- GuidConverter.cs
- BindingMAnagerBase.cs
- BindingMAnagerBase.cs
- ParserExtension.cs
- X509SecurityTokenProvider.cs
- NameValuePair.cs
- DataGridSortCommandEventArgs.cs
- StreamGeometry.cs
- CatalogPartCollection.cs
- PeerTransportListenAddressConverter.cs
- OrderedDictionaryStateHelper.cs
- ResXFileRef.cs
- XmlCharCheckingWriter.cs
- HttpChannelHelpers.cs
- TemplatePropertyEntry.cs
- XmlSchemaSimpleContentExtension.cs
- BufferedReceiveManager.cs
- LayoutManager.cs
- SoapHelper.cs
- SettingsSection.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- TripleDESCryptoServiceProvider.cs
- JournalEntryStack.cs
- DataGridViewRowCollection.cs
- DashStyle.cs
- PasswordBoxAutomationPeer.cs
- TableCell.cs
- OperationFormatter.cs
- PrincipalPermission.cs
- HttpValueCollection.cs
- Lease.cs
- MessageEventSubscriptionService.cs
- OleCmdHelper.cs
- MenuItemAutomationPeer.cs
- DoubleSumAggregationOperator.cs