# Standard Return Types

The `ColdBox.cfc` has one setting that affects proxy operation:

* `ProxyReturnCollection` : This boolean setting determines if the proxy should return what the event handlers return or just return the request collection structure every time a `process()` method is called. This can be a very useful setting, if you don't even want to return any data from the handlers (via the `process()` method). The framework will just always return the request collection structure back to the proxy caller. By default, the framework has this setting turned to **false** so you can have more control and flexibility.

```javascript
coldbox.proxyReturnCollection = true;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://coldbox.ortusbooks.com/digging-deeper/coldbox-proxy/standard-return-types.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
