Method DeleteConnectivityInterfaceProperty
DeleteConnectivityInterfaceProperty(int, int, int)
Deletes the specified DCF interface property.
bool DeleteConnectivityInterfaceProperty(int id, int dmaID, int eleID)
Parameters
id
intThe ID of the interface 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.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
intThe ID of the interface property.
itfId
intThe ID of the interface.
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.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).