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.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System/System.Net.Configuration/SmtpSection.cs b/mcs/class/System/System.Net.Configuration/SmtpSection.cs
index 9d5f74bd0c1..705dc920d57 100644
--- a/mcs/class/System/System.Net.Configuration/SmtpSection.cs
+++ b/mcs/class/System/System.Net.Configuration/SmtpSection.cs
@@ -44,6 +44,12 @@ namespace System.Net.Configuration {
set { base ["deliveryMethod"] = value; }
}
+ [ConfigurationProperty ("deliveryFormat", DefaultValue = SmtpDeliveryFormat.SevenBit)]
+ public SmtpDeliveryFormat DeliveryFormat {
+ get { return (SmtpDeliveryFormat) base ["deliveryFormat"]; }
+ set { base ["deliveryFormat"] = value; }
+ }
+
[ConfigurationProperty ("from")]
public string From {
get { return (string) base ["from"]; }