2

我有一个在这样的功能之前运行的方法,

[BeforeFeature, Scope(Feature = "Feature1"]
Method()
{
}

我希望为我编写的另一个功能文件运行相同的方法,即 Feature2

我如何在范围绑定中结合这个“Feature2”?

我试过这个

[BeforeFeature, Scope(Feature = "Feature1"]
[Scope(Feature="Feature2")]

但没有用。该方法仅适用于 Feature1,不适用于 Feature2

4

1 回答 1

2

根据范围规则,多个Scope绑定将是 OR'd,所以我希望第二个示例能够工作。您确定功能名称拼写正确吗?

我将尝试获取一个示例来验证此行为。

于 2015-06-16T08:29:54.097 回答