我对我的RIA服务界面做了一些更改,但SL在我做更新时没有得到它们。
基本上从虚空变为bool,所以我可以检查完成情况。
我尝试删除,再次等等。
无论我做什么,当我调用我的客户端上下文时,它仍会显示旧界面。
[ServiceContract]
public interface IUploadService
{
[OperationContract]
bool UploadFile(CrmFileUpload fileUpload);
}
public partial class CrmFileUpload
{
public string FileName { get; set; }
public byte[] Chunk { get; set; }
}
更新的代码:
public void TestMe(string testString)
{
_context.TestMethodAsync(testString); //this shows void, but everything in the WCF is a string
}