HttpServer.HttpHelper.Add C# (CSharp) Method

Add() private static method

private static Add ( IHttpInput input, string name, string value ) : void
input IHttpInput
name string
value string
return void
        private static void Add(IHttpInput input, string name, string value)
        {
            input.Add(HttpUtility.UrlDecode(name), HttpUtility.UrlDecode(value));
        }