NHibernate.Lob.External.Helper.addHeaders C# (CSharp) Method

addHeaders() public static method

Add the given headers to the WebRequest
public static addHeaders ( WebRequest req, SortedList headers ) : void
req System.Net.WebRequest Web request to add the headers to.
headers System.Collections.SortedList A map of string to string representing the HTTP headers to pass (can be null)
return void
		public static void addHeaders(WebRequest req, SortedList headers)
		{
			addHeaders(req, headers, "");
		}

Same methods

Helper::addHeaders ( WebRequest req, SortedList headers, string prefix ) : void