This repository was archived by the owner on Aug 31, 2020. It is now read-only.

Description
RtmpClient have asynchronous methods.
But it is not like asynchronous method for Windows Runtime.
Developers will suffer the disadvantage of some in status quo.
- Developers of C# or VB can't await asynchronous methods of RtmpClient.
- Developers of all programming languages can't know of the exception in the asynchronous processing.
So, We change should be asynchronous method for RtmpClient to Windows Runtime style.
- Return IAsyncAction/IAsyncOperation.
- Change method name Windows Runtime style.
ex:
Connect method name to ConnectAsync method name.
If you agree with this proposal, I will do this.