Adding Authorization Header to Web Reference
问题 I'm attempting to make requests to a client's web service (I don't know the underlying platform at the client). I've consumed the client's WSDL in Visual Studio 2010 using "Add Web Reference" and generated my proxy class (called "ContactService"). I now need to add an authorization header like the one below to my service request. Header=Authorization & Value=Basic 12345678901234567890 (the "123456..." value above is just placeholder) ContactService service = new ContactService(); //not sure