I have an ASP.net web application. It sits at https://www.example.com/Private.
I would like to create a .net console application that calls a web method on my ASP.net web application at https://www.example.com/Private/DataCall.
How do I program my .net console application to securely call the web method over HTTPS?
I have done this before in plain HTTP, but for this application, secure communication is essential.