Loading...
Select Version
Function: |
Reads all the properties of the specified outbound communication endpoint and returns a dictionary with key-value pairs for the properties. |
Parameters: |
The outbound communication endpoint whose properties are to be read. |
Return: | Dictionary with key-value pairs for the properties of the outbound communication endpoint. You can find the possible values for key in Properties of an outbound communication endpoint . |
Exceptions: |
|
Example: | ... import BcAdminOutboundCommEndpoint import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj) ceProps=BcAdminOutboundCommEndpoint.getProperties(ce_obj) ... |