Method DeleteConnectivityConnectionProperty
DeleteConnectivityConnectionProperty(int, int, int, bool)
Deletes the specified DCF connection property.
bool DeleteConnectivityConnectionProperty(int id, int dmaID, int eleID, bool both)
Parameters
id
intThe ID of the connection property.
dmaID
intThe DataMiner Agent ID of the element.
eleID
intThe element ID of the element.
both
booltrue
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
intThe ID of the connection property.
dmaID
intThe DataMiner Agent ID of the element.
eleID
intThe 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
intThe ID of the connection property.
connId
intThe ID of the connection to which this property belongs.
dmaID
intThe DataMiner Agent ID of the element.
eleID
intThe element ID of the element.
both
booltrue
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
intThe ID of the connection property.
connId
intThe ID of the connection.
dmaID
intThe DataMiner Agent ID of the element.
eleID
intThe 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).