This section show example how to calling API using HttpClient in C#.
ApiCallerHelper.cs
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
namespace WebApplicationMvcApi.Helper
{
public class ApiCallerHelper
{
private static string endpointName =...
Showing posts with label API. Show all posts
Showing posts with label API. Show all posts
Sunday, 28 October 2018
Thursday, 17 March 2016
17
Mar
To use MailChimp API V3.0 in C# language, do the steps below:
Create C# Web Form Project called 'MailChimpV3'.
Add Json.NET Framework to project Reference. Here I use Json 8.0.2 version from Newtonsoft.
Create folder called `MailChimp` on the project.
Add C# class called `MailChimpManager.cs` in the `MailChimp`...