Show / Hide Table of Contents

Interface INotifyValueChange<T>

Provides an Event for notifying a property change.

Namespace: Fusee.Engine.Common
Assembly: Fusee.Engine.Common.dll
Syntax
public interface INotifyValueChange<T>
    where T : EventArgs
Type Parameters
Name Description
T

Methods

NotifyValueChanged(Type, String, Object)

This method needs to be called by the setter of each property.

Declaration
void NotifyValueChanged(Type type, string name, object value)
Parameters
Type Name Description
System.Type type

The type of the property.

System.String name

The name of the property.

System.Object value

The value of the property.

Events

PropertyChanged

Event to notify a about a changed value of a property of this class.

Declaration
event EventHandler<T> PropertyChanged
Event Type
Type Description
System.EventHandler<T>
Generated by DocFX
GitHub Repo
Back to top