Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Reads all the properties of the specified inbound service and returns a dictionary with key-value pairs for the properties. |
Parameters: |
Inbound service whose properties are to be read. |
Return: | Dictionary with the key-value pairs for all the properties of the inbound service. You can find the possible values for |
Exceptions: |
|
Example: | ...
import BcAdminInboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
is_obj=BcAdminInboundService.getObject("SRV",proxy_obj)
isProps=BcAdminInboundService.getProperties(is_obj)
...
|