X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.Net.Configuration%2FSmtpSection.cs;h=d13dd0d6d15d6bc3822d8d327e866d0e3855f61f;hb=cd51491631380ed56723fdfc66945213f9864b5a;hp=e61fc13d1ffe9f65ad0d09156c83d568952ee54d;hpb=5c94b81517e934060ca88474eaefb2b516be734a;p=mono.git diff --git a/mcs/class/System/System.Net.Configuration/SmtpSection.cs b/mcs/class/System/System.Net.Configuration/SmtpSection.cs index e61fc13d1ff..d13dd0d6d15 100644 --- a/mcs/class/System/System.Net.Configuration/SmtpSection.cs +++ b/mcs/class/System/System.Net.Configuration/SmtpSection.cs @@ -39,24 +39,24 @@ namespace System.Net.Configuration { public sealed class SmtpSection : ConfigurationSection { [ConfigurationProperty ("deliveryMethod", DefaultValue = "Network")] - public SmtpDeliveryMethod DeliveryMethod { - get { return (SmtpDeliveryMethod) base ["deliveryMethod"]; } + public SmtpDeliveryMethod DeliveryMethod { + get { return (SmtpDeliveryMethod) base ["deliveryMethod"]; } set { base ["deliveryMethod"] = value; } } [ConfigurationProperty ("from")] - public string From { - get { return (string) base ["from"]; } + public string From { + get { return (string) base ["from"]; } set { base ["from"] = value; } } [ConfigurationProperty ("network")] - public SmtpNetworkElement Network { + public SmtpNetworkElement Network { get { return (SmtpNetworkElement) base ["network"]; } } [ConfigurationProperty ("specifiedPickupDirectory")] - public SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory { + public SmtpSpecifiedPickupDirectoryElement SpecifiedPickupDirectory { get { return (SmtpSpecifiedPickupDirectoryElement) base ["specifiedPickupDirectory"]; } }