Method SetValueWithoutNotify
SetValueWithoutNotify(T)
Sets the internal variable value and, even if different, doesn't notify of the change to subscribed listeners. This is intended to be used by developers to allow for setting multiple bindable variables before broadcasting any of them individually.
Declaration
public bool SetValueWithoutNotify(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The new value. |
Returns
Type | Description |
---|---|
bool | Returns true if a broadcast would have normally occurred if the property setter was used instead. |