Skip to content

Instantly share code, notes, and snippets.

@asutosha
asutosha / SimpleHttpClient.cs
Created October 5, 2022 19:16 — forked from bryanbarnard/SimpleHttpClient.cs
Simple C# .NET 4.5 HTTPClient Request Using Basic Auth and Proxy
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net;
namespace HTTP_Test
@asutosha
asutosha / WebServiceInvoker.cs
Created August 10, 2016 14:01 — forked from escobar5/WebServiceInvoker.cs
Dynamically invoking a web service
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Reflection;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.ServiceModel.Security;