私はMVCプロジェクトを持っています。私はTelerik Reporting Servicesを内部に追加しようとしています。Telerik Reporting Services
私は、これは
Telerik.Reporting
Telerik.Reporting.Services.WebApi
Telerik.Reporting.XpsRendering
Telerik.ReportViewer.Mvc
また、私のWepApiConfigで
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
Telerik.Reporting.Services.WebApi.ReportsControllerConfiguration.RegisterRoutes(config);
}
}
と私は私のプロジェクトを実行したときに、私はこの例外
Method not found: 'Void Telerik.Reporting.Services.WebApi.ReportsControllerConfiguration.RegisterRoutes
約だれでも手掛かりを持って取得を参照して追加しました何が起こるのですか?