契约中两个方法定义相同
接口A,接口B中都声明了同样的方法。接口方法不同。
[OperationContract] FileResult DownloadFile(string fullpath)
在调用时提示服务器拒绝。
通过 OperationContract Name 指定不同的名称
[OperationContract(Name = "DownloadFileB")] FileResult DownloadFile(string fullpath)