ServiceStack.ServiceHost.Feature不包含Remove的定义

时间:2012-09-21 16:37:49

标签: servicestack

我引用了ServiceStack.dll ver-3.9.4

包含AppHost.cs中的代码

SetConfig(新的EndpointHostConfig {

EnableFeatures = Feature.All.Remove(Feature.Html),

});

我收到以下错误,无法编译

'ServiceStack.ServiceHost.Feature'不包含'Remove'的定义,并且没有扩展方法'Remove'可以找到接受类型'ServiceStack.ServiceHost.Feature'的第一个参数(你是否缺少using指令或汇编参考?)

尝试包括许多指令,但我仍然无法超越这个

使用Funq;

使用ServiceStack.WebHost.Endpoints;

使用ServiceStack.ServiceHost;

使用ServiceStack.WebHost.Endpoints.Support;

使用ServiceStack.Common.Support;

使用ServiceStack.Common.Extensions;

使用ServiceStack.Common.Utils;

使用ServiceStack.Common.Web;

使用ServiceStack.Logging.Support.Logging;

使用ServiceStack.CacheAccess;

使用ServiceStack.CacheAccess.Providers;

使用ServiceStack.OrmLite;

使用ServiceStack.WebHost;

1 个答案:

答案 0 :(得分:5)

Enum.RemoveServiceStack.Common中的扩展方法。

您应该考虑使用ReSharper来消除此问题,因为它会自动解析命名空间引用。