Table of Contents

Class ValueChangedEventArgs

Namespace
BuildSoft.VRChat.Osc
Assembly
vrcosclib.dll

Provides data for value change events.

public class ValueChangedEventArgs : EventArgs
Inheritance
ValueChangedEventArgs
Derived
Inherited Members

Constructors

ValueChangedEventArgs(object?, object?, ValueChangedReason)

Initializes a new instance of the ValueChangedEventArgs class.

public ValueChangedEventArgs(object? oldValue, object? newValue, ValueChangedReason reason)

Parameters

oldValue object

The old value.

newValue object

The new value.

reason ValueChangedReason

The reason for the change in the value.

Properties

NewValue

Gets the new value.

public object? NewValue { get; }

Property Value

object

OldValue

Gets the old value.

public object? OldValue { get; }

Property Value

object

Reason

Gets the reason for the change in value.

public ValueChangedReason Reason { get; }

Property Value

ValueChangedReason