Method DeleteConnectivityInterfaceProperty
DeleteConnectivityInterfaceProperty(int, int, int)
Deletes the specified DCF interface property.
bool DeleteConnectivityInterfaceProperty(int id, int dmaID, int eleID)
Parameters
idintThe ID of the interface property.
dmaIDintThe DataMiner Agent ID of the element.
eleIDintThe element ID of the element.
Returns
- bool
trueif 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
idintThe ID of the interface property.
itfIdintThe ID of the interface.
dmaIDintThe DataMiner Agent ID of the element.
eleIDintThe element ID of the element.
Returns
- bool
trueif 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).