Nancy.Json.JsonSettings in Nancy v2



我正在从 Nancy 1.4.5 -> 2.0 升级我的项目

而且我有错误:

public class AppBootstrapper : AutofacNancyBootstrapper
{
    private readonly ILifetimeScope _scope;
    public AppBootstrapper(ILifetimeScope scope)
    {
        _scope = scope;
    }
    protected override ILifetimeScope GetApplicationContainer()
    {
        return _scope;
    }
    protected override void ApplicationStartup(ILifetimeScope container, IPipelines pipelines)
    {
        JsonSettings.MaxJsonLength = int.MaxValue;
        JsonSettings.RetainCasing = true;
        base.ApplicationStartup(container, pipelines);
    }
}

}

Error CS0103 The name 'JsonSettings' does not exist in the current context

如何解决此问题?

AppBootstrapper类中添加了方法:

public class AppBootstrapper : DefaultNancyBootstrapper
{
    public override void Configure(INancyEnvironment environment)
    {
        environment.Json(retainCasing: true);
    }
    ... other methods
}

并在web.config中添加了maxJsonLength

<system.web.extensions>
  <scripting>
    <webServices>
      <jsonSerialization maxJsonLength="2147483647"/>
    </webServices>
  </scripting>
</system.web.extensions>

最新更新