NHttp.HttpRequest.Merge C# (CSharp) Method

Merge() private method

private Merge ( NameValueCollection target, NameValueCollection source ) : void
target System.Collections.Specialized.NameValueCollection
source System.Collections.Specialized.NameValueCollection
return void
        private void Merge(NameValueCollection target, NameValueCollection source)
        {
            foreach (string key in source.AllKeys)
            {
                target[key] = source[key];
            }
        }