I want to be able to do something like this following code in C#
WebRequest request = WebRequest.Create(sharepointFile);
request.Credentials = CredentialCache.DefaultCredentials;
request.Method = "PUT";

Is there some way to do it in VBA? how do I add File I/O references and such in my VBE editor?