Closed JornWildt closed 7 years ago
And if "myLink" is ISessionLink then I would like to do:
using (myLink.Post<BOMCase>(args))
{
}
But that would require a large set of extension methods to ISessionLink (all the sync/async HTTP methods).
So maybe this would be okay:
using (myLink.Bind().Post<BOMCase>(args))
{
}
This is a duplicate of #28.
using (myLink.Bind().Post<BOMCase>(args))
can be done as using (myLink.Follow().Post<BOMCase>(args))
.
It seems a bit silly that I have to do this:
When "myLink" is ILink I should be able to do: