Table of Contents

Class ValueChangedEventArgs<T>

Namespace
BuildSoft.VRChat.Osc
Assembly
vrcosclib.dll

Provides data for value change events.

public class ValueChangedEventArgs<T> : EventArgs

Type Parameters

T

The type of the value that was changed.

Inheritance
ValueChangedEventArgs<T>
Inherited Members

Constructors

ValueChangedEventArgs(T, T)

Initializes a new instance of the ValueChangedEventArgs<T> class.

public ValueChangedEventArgs(T oldValue, T newValue)

Parameters

oldValue T

The old value.

newValue T

The new value.

Properties

NewValue

Gets the new value.

public T NewValue { get; }

Property Value

T

OldValue

Gets the old value.

public T OldValue { get; }

Property Value

T