We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The point of unified messages is that they can work both over CM and webapi, and Steam does this have implementing underlying "service transport"
We have WebAPI method that does Task<T> CallProtobufAsync<T> where you have to manually provide the request and response types.
WebAPI
Task<T> CallProtobufAsync<T>
We can make this nicer (after #1433), that the calling could would be similar, but the request would be sent over http instead of cm.
SK uses it here for example:
SteamKit/SteamKit2/SteamKit2/Steam/WebAPI/ContentServerDirectoryService.cs
Line 77 in 0931a59
The text was updated successfully, but these errors were encountered:
dynamic
No branches or pull requests
The point of unified messages is that they can work both over CM and webapi, and Steam does this have implementing underlying "service transport"
We have
WebAPI
method that doesTask<T> CallProtobufAsync<T>
where you have to manually provide the request and response types.We can make this nicer (after #1433), that the calling could would be similar, but the request would be sent over http instead of cm.
SK uses it here for example:
SteamKit/SteamKit2/SteamKit2/Steam/WebAPI/ContentServerDirectoryService.cs
Line 77 in 0931a59
The text was updated successfully, but these errors were encountered: