Question by
Baumkuchen · Dec 22, 2016 at 12:10 PM ·
asyncservicewcf
Consume Async methods async in Unity from a WCF service
Hello how I could consume in Unity "Async methods" from a WCF service?
Like here;
public void Hello()
{
throw new NotImplementedException();
}
public IAsyncResult BeginHello(AsyncCallback callback, object asyncState)
{
throw new NotImplementedException();
}
public void EndHello(IAsyncResult result)
{
throw new NotImplementedException();
}
Comment