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

addMetadataHeaders() public static method

Add the given metadata fields to the WebRequest.
public static addMetadataHeaders ( WebRequest req, SortedList metadata ) : void
req System.Net.WebRequest Web request to add the headers to.
metadata System.Collections.SortedList A map of string to string representing the S3 metadata for this resource.
return void
		public static void addMetadataHeaders(WebRequest req, SortedList metadata)
		{
			addHeaders(req, metadata, METADATA_PREFIX);
		}