using System.Security.Cryptography.X509Certificates;
namespace ClientCertInvocation
static void Main(string[] args)
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("https://my.local.machine:440/");
X509Store store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection collection = store.Certificates.Find(X509FindType.FindBySubjectName, "MyClientCert", true);
request.ClientCertificates = collection;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream stream = response.GetResponseStream();
using (var fileStream = File.Create("copy.html"))
stream.CopyTo(fileStream);