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() - Eigenschaften eines Outbound Communication Endpoint lesen

Funktion:

BcAdminOutboundCommEndpoint.getProperties()

Liest alle Eigenschaften des angegebenen Outbound Communication Endpoint und gibt ein Dictionary mit key-value-Paaren der Eigenschaften zurück.

Parameter:

bc_object
(BcObject vom Typ BcObjectType.OUTBOUND_COMM_ENDPOINT)

Der Outbound Communication Endpoint., dessen Eigenschaften gelesen werden sollen.

Rückgabe:

Dictionary mit key-value-Paaren der Eigenschaften des Outbound Communication Endpoints. Mögliche Werte für key finden Sie in Eigenschaften eines Outbound Communication Endpoints .

Exceptions:

BcObjectException, BcToolException

Beispiel:

...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj)
ceProps=BcAdminOutboundCommEndpoint.getProperties(ce_obj)
...