
Public Member Functions | |
| void | RegisterProxy (IProxy proxy) |
Register an IProxy instance with the Model. | |
| IProxy | RetrieveProxy (string proxyName) |
Retrieve an IProxy instance from the Model. | |
| IProxy | RemoveProxy (string proxyName) |
Remove an IProxy instance from the Model. | |
| bool | HasProxy (string proxyName) |
| Check if a Proxy is registered. | |
In PureMVC, IModel implementors provide access to IProxy objects by named lookup
An IModel assumes these responsibilities:
IProxy instances IProxy instances | bool PureMVC.Interfaces.IModel.HasProxy | ( | string | proxyName | ) |
Check if a Proxy is registered.
| proxyName | The name of the proxy to check for |
proxyName.Implemented in PureMVC.Core.Model.
| void PureMVC.Interfaces.IModel.RegisterProxy | ( | IProxy | proxy | ) |
Register an IProxy instance with the Model.
| proxy | A reference to the proxy object to be held by the Model |
Implemented in PureMVC.Core.Model.
| IProxy PureMVC.Interfaces.IModel.RemoveProxy | ( | string | proxyName | ) |
Remove an IProxy instance from the Model.
| proxyName | The name of the IProxy instance to be removed |
Implemented in PureMVC.Core.Model.
| IProxy PureMVC.Interfaces.IModel.RetrieveProxy | ( | string | proxyName | ) |
Retrieve an IProxy instance from the Model.
| proxyName | The name of the proxy to retrieve |
IProxy instance previously registered with the given proxyNameImplemented in PureMVC.Core.Model.
1.5.8