Main Content

removeNetworkBinding

Delete AUTOSAR properties related to network binding from AUTOSAR dictionary

Since R2026a

Description

removeNetworkBinding(arProps,NetworkBinding) deletes the AUTOSAR properties related to the network binding specified by NetworkBinding in AUTOSAR adaptive models and architectural models from the AUTOSAR dictionary.

example

Examples

collapse all

Call the autosar.api.getAUTOSARProperties function to create the object arProps, which represents AUTOSAR properties information for the model autosar_LaneGuidance. Use the returned object to delete the AUTOSAR properties related to the DDS network binding from the AUTOSAR dictionary.

Model = "autosar_LaneGuidance";
openExample(Model);
arProps = autosar.api.getAUTOSARProperties(Model);
removeNetworkBinding(arProps,"DDS");

Input Arguments

collapse all

AUTOSAR properties information for a model, previously returned by autosar.api.getAUTOSARProperties(model), where model is a handle, character vector, or string scalar representing the model name.

Network binding name, specified as "SOME/IP", "DDS", or "UD".

Example: "SOME/IP"

Version History

Introduced in R2026a