Table of Contents

Class ParameterChangedEventArgs

Namespace
BuildSoft.VRChat.Osc
Assembly
vrcosclib.dll

Provides data for OSC parameter change events.

public class ParameterChangedEventArgs : ValueChangedEventArgs
Inheritance
ParameterChangedEventArgs
Inherited Members

Constructors

ParameterChangedEventArgs(object?, object?, string, ValueChangedReason)

Initializes a new instance of the ParameterChangedEventArgs class.

public ParameterChangedEventArgs(object? oldValue, object? newValue, string address, ValueChangedReason reason)

Parameters

oldValue object

The old value of the OSC parameter.

newValue object

The new value of the OSC parameter.

address string

The address of the OSC parameter.

reason ValueChangedReason

The reason for the change in the OSC parameter's value.

Properties

Address

Gets the address of the OSC parameter that was changed.

public string Address { get; }

Property Value

string

ValueSource

Gets what the OSC parameter was obtained from.

public ValueSource ValueSource { get; }

Property Value

ValueSource