# Binder Configuration Properties

Whether you use WireBox standalone or within a ColdBox context, a Binder gets a structure of configuration properties so it can use them whenever you are configuring it or declaring mappings. If you are in **standalone** mode, the Injector can be constructed with a **properties** structure that will be passed to the binder for usage.&#x20;

{% hint style="info" %}
If you are in a ColdBox application, the ColdBox application configuration structure is passed to you.&#x20;
{% endhint %}

You can then use these properties with the following methods in your Binder:

* `getProperty( name, [default] )` : Get a specific property
* `getProperties()` : Get all the properties structure
* `propertyExists( name )` : Check if a property exists
* `setProperty( name, value )` : Dynamically add properties to the structure

```cfscript
// Init with your own properties
new wirebox.system.ioc.Injector( properties = myProps )
```


---

# 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/configuration/configuring-wirebox/binder-configuration-properties.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.
