Bloom.Api.RequestInfo.GetQueryParameters C# (CSharp) Method

GetQueryParameters() public method

Processes the QueryString, decoding the values if needed
public GetQueryParameters ( ) : NameValueCollection
return System.Collections.Specialized.NameValueCollection
        public NameValueCollection GetQueryParameters()
        {
            if(_queryStringList == null)
            {
                _queryStringList = HttpUtility.ParseQueryString(this._actualContext.Request.Url.Query);
            }

            return _queryStringList;
        }