# WireBox Namespace

Talk and get objects from the current wirebox injector

| DSL                     | Description                                                                                                                                                |
| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| wirebox                 | Get a reference to the current injector                                                                                                                    |
| wirebox:parent          | Get a reference to the parent injector (if any)                                                                                                            |
| wirebox:eventManager    | Get a reference to injector's event manager                                                                                                                |
| wirebox:binder          | Get a reference to the injector's binder                                                                                                                   |
| wirebox:populator       | Get a reference to a WireBox's Object Populator utility                                                                                                    |
| wirebox:scope:{scope}   | Get a direct reference to an internal or custom scope object                                                                                               |
| wirebox:properties      | Get the entire properties structure the injector is initialized with. If running within a ColdBox context then it is the structure of application settings |
| wirebox:property:{name} | Retrieve one key of the properties structure                                                                                                               |

```javascript
property name="beanFactory" inject="wirebox";
property name="settings" inject="wirebox:properties";
property name="singletonCache" inject="wirebox:scope:singleton";
property name="populator" inject="wirebox:populator";
property name="binder" inject="wirebox:binder";
```


---

# 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://wirebox.ortusbooks.com/5/usage/injection-dsl/wirebox-namespace.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.
