Generic Class makes .NET Core HttpClient Calls
Note: This class has been updated. Here’s a generic class that abstracts async HttpClient calls in .NET Core. It can be used, for example, to make calls from a desktop application or web site...
Note: This class has been updated. Here’s a generic class that abstracts async HttpClient calls in .NET Core. It can be used, for example, to make calls from a desktop application or web site...
I often want to get (and less frequently set) the value of a class property using a string containing the property name rather than a standard dot reference. So instead of this: I want...