制作需要基本身份验证的Web服务。从教程中,
https://msdn.microsoft.com/en-us/library/ms154673.aspx
代码
ReportingService service = new ReportingService();
service.Credentials = new System.Net.NetworkCredential("username", "password", "domain");
为什么我找不到“reportingservices”参考?我正在使用Microsoft Visual Studio 2015,C#。