Click or drag to resize

StrixSerializationPropertiesGetT Method (Int32, T)

Gets a synchronized value by an integer key.

Namespace:  SoftGear.Strix.Unity.Runtime
Assembly:  StrixUnityRuntime (in StrixUnityRuntime.dll) Version: 1.5.0
Syntax
C#
public bool Get<T>(
	int key,
	ref T value
)

Parameters

key
Type: SystemInt32
Integer key of the value to get.
value
Type: T
When this method returns, contains the value if it was found. If the value was not found or a value of a type different from T was found, the value that was passed is not changed.

Type Parameters

T
Type of the value.

Return Value

Type: Boolean
if the value with the given key and of given type was present; otherwise, .
See Also