作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法在配置部分设置多个枚举值?
就像您在 .net 中所做的那样 object.Filter = Filter.Update | Filter.Create;
<wacther filter="update, created"/>
是否支持类似的东西?
最佳答案
开箱即用:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var section = (MySection)ConfigurationManager.GetSection("mySection");
Console.WriteLine(section.Enum);
}
}
public class MySection : ConfigurationSection
{
[ConfigurationProperty("enum")]
public MyEnum Enum
{
get { return (MyEnum)this["enum"]; }
set { this["enum"] = value; }
}
}
[Flags]
public enum MyEnum
{
None = 0,
Foo = 1,
Bar = 2,
Baz = 4
}
}
<configSections>
<section name="mySection" type="ConsoleApplication1.MySection, ConsoleApplication1"/>
</configSections>
<mySection enum="Foo, Bar"/>
打印:Foo、Bar
关于c# - ConfigurationSection 多个枚举值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13174375/
我是一名优秀的程序员,十分优秀!