Microsoft.Research.DataOnboarding.WebApplication.Infrastructure.RequestParams.RequestParams C# (CSharp) Method

RequestParams() public method

public RequestParams ( ) : System.Collections.Specialized
return System.Collections.Specialized
        public RequestParams()
        {
            //set the default mode as GET
            RequestMode = Infrastructure.RequestMode.GET;
            Values = new NameValueCollection();
            AllowAutoRedirect = true;
        }
RequestParams