Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

getProperties() - Read properties of a proxy

Function:

BcAdminProxy.getProperties()

Reads all the properties of the specified proxy and returns a dictionary with key value pairs for the properties.

Parameters:

bc_object (BcObject of type BcObjectType.PROXY)

Proxy whose properties you want to read.

Return:

Dictionary with the key-value pairs for all the properties of the proxy (see Properties of a proxy ).

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminMain
import BcAdminProxy
...
bcproxies=BcAdminMain.getList("proxy")
proxy_obj=bcproxies["BCProxy"]
proxyProps=BcAdminProxy.getProperties(proxy_obj)
...