BridgeStack.ApiEndpointBuilder.GetQueryStringParameters C# (CSharp) Method

GetQueryStringParameters() private method

Through reflection, lists the query string parameters, verifies they are conform to constraint attributes, and returns the deserialized version of them.
private GetQueryStringParameters ( ) : string
return string
        private string GetQueryStringParameters()
        {
            IQuery copy = Query.ShallowCopy(); // avoid changes in the original parameter list.
            IQuery query = copy.WithDefault(Client.Default);
            return query.ToQueryParams().Deserialize();
        }