Table of Contents

Method UpdateProperty

Namespace
Skyline.DataMiner.Scripting
Assembly
SLManagedScripting.dll

UpdateProperty(ConnectivityConnectionProperty)

Updates the specified connection property.

public bool UpdateProperty(ConnectivityConnectionProperty prop)

Parameters

prop ConnectivityConnectionProperty

The property to update.

Returns

bool

true if the update succeeded; otherwise, false.

Remarks

Feature introduced in DataMiner 8.5.3 (RN 8854).

UpdateProperty(ConnectivityConnectionProperty, bool)

Updates the specified connection property.

public bool UpdateProperty(ConnectivityConnectionProperty prop, bool both)

Parameters

prop ConnectivityConnectionProperty

The property to update.

both bool

true if the connection property should be updated on both the source and destination element; otherwise, false.

Returns

bool

true if the update succeeded; otherwise, false.

Remarks

Feature introduced in DataMiner 9.5.1 (RN 14594).

UpdateProperty(int, string, string, string, int)

Updates the property with the specified ID.

public bool UpdateProperty(int id, string name, string type, string value, int link)

Parameters

id int

The ID of the property.

name string

The new name of the property.

type string

The new type of the property.

value string

The new value of the property.

link int

The new ID of the connection to which this property belongs.

Returns

bool

true if the update succeeded; otherwise, false.

Remarks

Feature introduced in DataMiner 8.5.3 (RN 8854).

UpdateProperty(int, string, string, string, int, bool)

Updates the property with the specified ID.

public bool UpdateProperty(int id, string name, string type, string value, int link, bool both)

Parameters

id int

The ID of the property.

name string

The new name of the property.

type string

The new type of the property.

value string

The new value of the property.

link int

The new ID of the connection to which this property belongs.

both bool

true if the connection property should be updated on both the source and destination element; otherwise, false.

Returns

bool

true if the update succeeded; otherwise, false.

Remarks

Feature introduced in DataMiner 9.5.1 (RN 14594).