Table of Contents

Method DeleteConnectivityConnectionProperty

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

DeleteConnectivityConnectionProperty(int, int, int, bool)

Deletes the specified DCF connection property.

bool DeleteConnectivityConnectionProperty(int id, int dmaID, int eleID, bool both)

Parameters

id int

The ID of the connection property.

dmaID int

The DataMiner Agent ID of the element.

eleID int

The element ID of the element.

both bool

true to delete the property at both ends of the connection; otherwise, false.

Returns

bool

true if the deletion succeeded; otherwise, false.

Examples

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

Remarks

Feature introduced in DataMiner 9.5.1 (RN 14594).

DeleteConnectivityConnectionProperty(int, int, int)

Deletes the specified DCF connection property.

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

Parameters

id int

The ID of the connection 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.DeleteConnectivityConnectionProperty(1, 400, 2000);

Remarks

Feature introduced in DataMiner 8.5.3 (RN 9296).

DeleteConnectivityConnectionProperty(int, int, int, int, bool)

Deletes the specified DCF connection property.

bool DeleteConnectivityConnectionProperty(int id, int connId, int dmaID, int eleID, bool both)

Parameters

id int

The ID of the connection property.

connId int

The ID of the connection to which this property belongs.

dmaID int

The DataMiner Agent ID of the element.

eleID int

The element ID of the element.

both bool

true to delete the property at both ends of the connection; otherwise, false.

Returns

bool

true if the deletion succeeded; otherwise, false.

Examples

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

Remarks

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

Feature introduced in DataMiner 9.5.1 (RN 14594).

DeleteConnectivityConnectionProperty(int, int, int, int)

Deletes the specified DCF connection property.

bool DeleteConnectivityConnectionProperty(int id, int connId, int dmaID, int eleID)

Parameters

id int

The ID of the connection property.

connId int

The ID of the connection.

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.DeleteConnectivityConnectionProperty(1, 1, 400, 2000);

Remarks

Feature introduced in DataMiner 8.5.3 (RN 9296).