Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / Configuration / SmtpNetworkElement.cs / 1 / SmtpNetworkElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Net; using System.Net.Mail; using System.Reflection; using System.Security.Permissions; public sealed class SmtpNetworkElement : ConfigurationElement { public SmtpNetworkElement() { this.properties.Add(this.defaultCredentials); this.properties.Add(this.host); this.properties.Add(this.password); this.properties.Add(this.port); this.properties.Add(this.userName); } protected override void PostDeserialize() { // Perf optimization. If the configuration is coming from machine.config // It is safe and we don't need to check for permissions. if (EvaluationContext.IsMachineLevel) return; PropertyInformation portPropertyInfo = ElementInformation.Properties[ConfigurationStrings.Port]; if (portPropertyInfo.ValueOrigin == PropertyValueOrigin.SetHere && (int)portPropertyInfo.Value != (int)portPropertyInfo.DefaultValue) { try { (new SmtpPermission(SmtpAccess.ConnectToUnrestrictedPort)).Demand(); } catch (Exception exception) { throw new ConfigurationErrorsException( SR.GetString(SR.net_config_property_permission, portPropertyInfo.Name), exception); } } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.DefaultCredentials, DefaultValue = false)] public bool DefaultCredentials { get { return (bool)this[this.defaultCredentials]; } set { this[this.defaultCredentials] = value; } } [ConfigurationProperty(ConfigurationStrings.Host)] public string Host { get { return (string)this[this.host]; } set { this[this.host] = value; } } [ConfigurationProperty(ConfigurationStrings.Password)] public string Password { get { return (string)this[this.password]; } set { this[this.password] = value; } } [ConfigurationProperty(ConfigurationStrings.Port, DefaultValue = 25)] public int Port { get { return (int)this[this.port]; } set { // this[this.port] = value; } } [ConfigurationProperty(ConfigurationStrings.UserName)] public string UserName { get { return (string)this[this.userName]; } set { this[this.userName] = value; } } // ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty defaultCredentials = new ConfigurationProperty(ConfigurationStrings.DefaultCredentials, typeof(bool), false, ConfigurationPropertyOptions.None); readonly ConfigurationProperty host = new ConfigurationProperty(ConfigurationStrings.Host, typeof(string), null, ConfigurationPropertyOptions.None); readonly ConfigurationProperty password = new ConfigurationProperty(ConfigurationStrings.Password, typeof(string), null, ConfigurationPropertyOptions.None); readonly ConfigurationProperty port = new ConfigurationProperty(ConfigurationStrings.Port, typeof(int), 25, null, new IntegerValidator(IPEndPoint.MinPort+1, IPEndPoint.MaxPort), ConfigurationPropertyOptions.None); readonly ConfigurationProperty userName = new ConfigurationProperty(ConfigurationStrings.UserName, typeof(string), null, ConfigurationPropertyOptions.None); } internal sealed class SmtpNetworkElementInternal { internal SmtpNetworkElementInternal(SmtpNetworkElement element) { this.host = element.Host; this.port = element.Port; if (element.DefaultCredentials) { this.credential = (NetworkCredential)CredentialCache.DefaultCredentials; } else if (element.UserName != null && element.UserName.Length > 0) { this.credential = new NetworkCredential(element.UserName, element.Password); } } internal NetworkCredential Credential { get { return this.credential; } } internal string Host { get { return this.host; } } internal int Port { get { return this.port; } } string host; int port; NetworkCredential credential = null; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Net; using System.Net.Mail; using System.Reflection; using System.Security.Permissions; public sealed class SmtpNetworkElement : ConfigurationElement { public SmtpNetworkElement() { this.properties.Add(this.defaultCredentials); this.properties.Add(this.host); this.properties.Add(this.password); this.properties.Add(this.port); this.properties.Add(this.userName); } protected override void PostDeserialize() { // Perf optimization. If the configuration is coming from machine.config // It is safe and we don't need to check for permissions. if (EvaluationContext.IsMachineLevel) return; PropertyInformation portPropertyInfo = ElementInformation.Properties[ConfigurationStrings.Port]; if (portPropertyInfo.ValueOrigin == PropertyValueOrigin.SetHere && (int)portPropertyInfo.Value != (int)portPropertyInfo.DefaultValue) { try { (new SmtpPermission(SmtpAccess.ConnectToUnrestrictedPort)).Demand(); } catch (Exception exception) { throw new ConfigurationErrorsException( SR.GetString(SR.net_config_property_permission, portPropertyInfo.Name), exception); } } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.DefaultCredentials, DefaultValue = false)] public bool DefaultCredentials { get { return (bool)this[this.defaultCredentials]; } set { this[this.defaultCredentials] = value; } } [ConfigurationProperty(ConfigurationStrings.Host)] public string Host { get { return (string)this[this.host]; } set { this[this.host] = value; } } [ConfigurationProperty(ConfigurationStrings.Password)] public string Password { get { return (string)this[this.password]; } set { this[this.password] = value; } } [ConfigurationProperty(ConfigurationStrings.Port, DefaultValue = 25)] public int Port { get { return (int)this[this.port]; } set { // this[this.port] = value; } } [ConfigurationProperty(ConfigurationStrings.UserName)] public string UserName { get { return (string)this[this.userName]; } set { this[this.userName] = value; } } // ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty defaultCredentials = new ConfigurationProperty(ConfigurationStrings.DefaultCredentials, typeof(bool), false, ConfigurationPropertyOptions.None); readonly ConfigurationProperty host = new ConfigurationProperty(ConfigurationStrings.Host, typeof(string), null, ConfigurationPropertyOptions.None); readonly ConfigurationProperty password = new ConfigurationProperty(ConfigurationStrings.Password, typeof(string), null, ConfigurationPropertyOptions.None); readonly ConfigurationProperty port = new ConfigurationProperty(ConfigurationStrings.Port, typeof(int), 25, null, new IntegerValidator(IPEndPoint.MinPort+1, IPEndPoint.MaxPort), ConfigurationPropertyOptions.None); readonly ConfigurationProperty userName = new ConfigurationProperty(ConfigurationStrings.UserName, typeof(string), null, ConfigurationPropertyOptions.None); } internal sealed class SmtpNetworkElementInternal { internal SmtpNetworkElementInternal(SmtpNetworkElement element) { this.host = element.Host; this.port = element.Port; if (element.DefaultCredentials) { this.credential = (NetworkCredential)CredentialCache.DefaultCredentials; } else if (element.UserName != null && element.UserName.Length > 0) { this.credential = new NetworkCredential(element.UserName, element.Password); } } internal NetworkCredential Credential { get { return this.credential; } } internal string Host { get { return this.host; } } internal int Port { get { return this.port; } } string host; int port; NetworkCredential credential = null; } } // 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
- OdbcPermission.cs
- DSASignatureDeformatter.cs
- Table.cs
- ItemCheckedEvent.cs
- ReachDocumentReferenceCollectionSerializer.cs
- MimeParameter.cs
- CustomCategoryAttribute.cs
- WindowsListViewGroupSubsetLink.cs
- DataGridViewTopLeftHeaderCell.cs
- DesignerProperties.cs
- ITextView.cs
- DataRecordInternal.cs
- Overlapped.cs
- ProvidersHelper.cs
- GridViewColumnHeaderAutomationPeer.cs
- UrlUtility.cs
- ParameterToken.cs
- SchemaElementDecl.cs
- XmlObjectSerializerReadContext.cs
- EnumerableRowCollection.cs
- GeometryConverter.cs
- HtmlElementErrorEventArgs.cs
- _DigestClient.cs
- InvalidPropValue.cs
- MimeFormImporter.cs
- altserialization.cs
- TargetInvocationException.cs
- SchemaType.cs
- DependencyObjectProvider.cs
- Rotation3D.cs
- PopupRootAutomationPeer.cs
- SeparatorAutomationPeer.cs
- ConfigurationManagerHelperFactory.cs
- NativeMethods.cs
- MultiSelectRootGridEntry.cs
- OutputCacheSection.cs
- DesignerTransactionCloseEvent.cs
- DashStyle.cs
- CommandLibraryHelper.cs
- SocketInformation.cs
- ColumnHeaderCollectionEditor.cs
- CodeDirectiveCollection.cs
- ReadOnlyObservableCollection.cs
- SurrogateDataContract.cs
- SqlAggregateChecker.cs
- SymmetricKey.cs
- StatusStrip.cs
- BitStream.cs
- OperatingSystem.cs
- FormatConvertedBitmap.cs
- ColorConvertedBitmap.cs
- AnimationLayer.cs
- DataRelationPropertyDescriptor.cs
- ReflectPropertyDescriptor.cs
- AnonymousIdentificationSection.cs
- TableItemProviderWrapper.cs
- MenuItemStyle.cs
- ConnectionManagementElement.cs
- FileDialog.cs
- DoubleAnimationUsingKeyFrames.cs
- TemplateApplicationHelper.cs
- TextEditorTyping.cs
- ParenthesizePropertyNameAttribute.cs
- FixedPage.cs
- FlowLayoutSettings.cs
- Control.cs
- ClientFormsIdentity.cs
- SystemWebSectionGroup.cs
- TreeViewDesigner.cs
- MaterialGroup.cs
- StructuredTypeInfo.cs
- PropertyInfoSet.cs
- CalendarDay.cs
- DockPatternIdentifiers.cs
- ClassGenerator.cs
- TimeSpanStorage.cs
- GeneralTransform3D.cs
- DataListDesigner.cs
- IChannel.cs
- WebExceptionStatus.cs
- OraclePermissionAttribute.cs
- contentDescriptor.cs
- SessionStateModule.cs
- WebResourceAttribute.cs
- ColorPalette.cs
- SelfSignedCertificate.cs
- XmlSchemaSequence.cs
- FontDialog.cs
- RtType.cs
- Main.cs
- TextEditor.cs
- ClosableStream.cs
- TemplateParser.cs
- ExceptionDetail.cs
- BadImageFormatException.cs
- SafeNativeMethods.cs
- PersonalizableAttribute.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- DataServiceResponse.cs
- MonthChangedEventArgs.cs