Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

modifyProperties() - Eigenschaften eines Outbound Communication Endpoints ändern

Funktion:

BcAdminOutboundCommEndpoint.modifyProperties()

Ändert alle Eigenschaften des angegebenen Outbound Communication Endpoints, die im angegebenen Dictionary enthalten sind.

Parameter:

bc_object
(BcObject vom Typ BcObjectType.OUTBOUND_COMM_ENDPOINT)

Outbound Communication Endpoint, dessen Eigenschaften geändert werden sollen.

props

Dictionary mit den key-value-Paaren der Eigenschaften, die geändert werden sollen. Mögliche Werte für key finden Sie in Eigenschaften eines Outbound Communication Endpoints

Rückgabe:

Keine

Exceptions:

BcObjectException, BcParameterException, BcToolException

Beispiel:

...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj)
modPr={"desc":"modified"}
BcAdminOutboundCommEndpoint.modifyProperties(ce_obj,modPr)
...