I was looking at
and the used BeginSend appear to have been removed and a few other methods are marked obsolete.
client.SendAsync(msg); works. Is this the preferred async method?
I was looking at
and the used BeginSend appear to have been removed and a few other methods are marked obsolete.
client.SendAsync(msg); works. Is this the preferred async method?
@mortenma,
You are right. You should use the SendAsync
method instead of BeginSend
/EndSend
methods. Documentation and API Reference will be updated soon.