NHttp.HttpRequest.Merge C# (CSharp) 메소드

Merge() 개인적인 메소드

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