Adding Task<T> operation contract to WCF service contract

55 Views Asked by At

I am working on a file with all synchronous WCF operation contracts. I am adding a new method, or new contract which will use async-await pattern.

My method will have a similar signature to this

Task<TResult> DispatchOperation(...)

svcutil is not generating this correctly with Task<TResult> return type so I am not able to use await nor can I use that async pattern.

I know svcutil generation command has the /async flag which ends up generating methods with Synchronous and Aysnc pattern (Using Begin / End style), but for that particular new method I am adding, it should be only async via Task, Async Await pattern. is this not possible?

0

There are 0 best solutions below