namespace RestEase { /// /// Helper used to create a properly encoded query string for a request /// public abstract class QueryStringBuilder { /// /// Override this method to return a suitably escaped query string /// /// Information about the request /// The escaped query string public abstract string Build(QueryStringBuilderInfo info); } }