Table of Contents

Method DeleteConnectivityInterfaceProperty

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

DeleteConnectivityInterfaceProperty(int, int, int)

Deletes the specified DCF interface property.

bool DeleteConnectivityInterfaceProperty(int id, int dmaID, int eleID)

Parameters

id int

The ID of the interface property.

dmaID int

The DataMiner Agent ID of the element.

eleID int

The element ID of the element.

Returns

bool

true if the deletion succeeded; otherwise, false.

Examples

bool hasSucceeded = protocol.DeleteConnectivityInterfaceProperty(1, 400, 2000);

Remarks

Feature introduced in DataMiner 8.5.3 (RN 9296).

DeleteConnectivityInterfaceProperty(int, int, int, int)

Deletes the specified DCF interface property.

bool DeleteConnectivityInterfaceProperty(int id, int itfId, int dmaID, int eleID)

Parameters

id int

The ID of the interface property.

itfId int

The ID of the interface.

dmaID int

The DataMiner Agent ID of the element.

eleID int

The element ID of the element.

Returns

bool

true if the deletion succeeded; otherwise, false.

Examples

bool hasSucceeded = protocol.DeleteConnectivityInterfaceProperty(1, 1, 400, 2000);

Remarks

In case itfId is not correct, the property will not be deleted.

Feature introduced in DataMiner 8.5.3 (RN 9296).