I am busy creating a WCF Web Service, that needs an ASYNC call. I have done this so far:
public async Task<bool> sendData(Data data) {
bool sent = await Task<bool>.Factory.StartNew(() => {
return someNameSpace.ReceiveData(data);
});
return sent;
}
So my question is, does the call to the dll also need to be marked as async?
ie. within the dll
public async Task<bool> ReceiveData(Data data) {
// some async code
// some code here
}