To write a property you must have the GUID of the object and know the attribute name and type.
Library method name |
WriteProperty
|
---|---|
Description | Write a property of an object. |
Method signature |
void WriteProperty(Guid id, string attributeName, object newValue);
|
Method input parameters |
|
Return value | None |
The following .NET C# code is an example of a successful property write:
Guid id = client.GetObjectIdentifier("siteName:naeName/Folder1.AV1");
client.WriteProperty(id, "description", "This is an AV.");