Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Net.Configuration/SmtpSection.cs')
-rw-r--r--mcs/class/System/System.Net.Configuration/SmtpSection.cs12
1 files changed, 6 insertions, 6 deletions
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"]; }
}