Click or drag to resize

StrixSerializationPropertiesSet Method (Int32, Object, String)

Stores a value to be synchronized by an integer key.

Namespace:  SoftGear.Strix.Unity.Runtime
Assembly:  StrixUnityRuntime (in StrixUnityRuntime.dll) Version: 1.5.0
Syntax
C#
public void Set(
	int key,
	Object value,
	string description = null
)

Parameters

key
Type: SystemInt32
Integer key of the value to synchronize.
value
Type: SystemObject
The value you want to synchronize.
description (Optional)
Type: SystemString
Description of the value that is used to give more information in case of a key conflict.
Remarks
If the value with the same key already exists, the method throws a ConflictingPropertyException.
See Also