You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,73 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="EmbeddedMailObject.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls {
|
||||
|
||||
using System.Web.Mail;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Drawing.Design;
|
||||
using System.Web;
|
||||
|
||||
[TypeConverter(typeof(EmbeddedMailObjectTypeConverter))]
|
||||
public sealed class EmbeddedMailObject {
|
||||
private string _path;
|
||||
private string _name;
|
||||
|
||||
public EmbeddedMailObject() {
|
||||
}
|
||||
|
||||
public EmbeddedMailObject(string name, string path) {
|
||||
Name = name;
|
||||
Path = path;
|
||||
}
|
||||
|
||||
[
|
||||
WebCategory("Behavior"),
|
||||
DefaultValue(""),
|
||||
WebSysDescription(SR.EmbeddedMailObject_Name),
|
||||
NotifyParentProperty(true)
|
||||
]
|
||||
public string Name {
|
||||
get {
|
||||
return (_name != null) ? _name : String.Empty;
|
||||
}
|
||||
set {
|
||||
_name = value;
|
||||
}
|
||||
}
|
||||
|
||||
[
|
||||
WebCategory("Behavior"),
|
||||
DefaultValue(""),
|
||||
WebSysDescription(SR.EmbeddedMailObject_Path),
|
||||
Editor("System.Web.UI.Design.MailFileEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)),
|
||||
NotifyParentProperty(true),
|
||||
UrlProperty(),
|
||||
]
|
||||
public string Path {
|
||||
get {
|
||||
return (_path == null) ? String.Empty : _path;
|
||||
}
|
||||
set {
|
||||
_path = value;
|
||||
}
|
||||
}
|
||||
|
||||
private sealed class EmbeddedMailObjectTypeConverter : TypeConverter {
|
||||
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) {
|
||||
if (destinationType == typeof(string)) {
|
||||
return "EmbeddedMailObject";
|
||||
}
|
||||
|
||||
return base.ConvertTo(context, culture, value, destinationType);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user