C# Класс CyrusBuilt.MonoPi.IO.PinStateChangeEventArgs

Pin state change event arguments class.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
PinStateChangeEventArgs ( Int32 address, PinState oldState, PinState newState ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.IO.PinStateChangeEventArgs class with the address of the pin and the old and new pin states.

PinStateChangeEventArgs ( PinState oldState, PinState newState ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.IO.PinStateChangeEventArgs class with the old and new pin states.

Описание методов

PinStateChangeEventArgs() публичный Метод

Initializes a new instance of the CyrusBuilt.MonoPi.IO.PinStateChangeEventArgs class with the address of the pin and the old and new pin states.
public PinStateChangeEventArgs ( Int32 address, PinState oldState, PinState newState ) : System
address System.Int32 /// The pin address. ///
oldState PinState /// The previous state of the pin. ///
newState PinState /// The new state of the pin. ///
Результат System

PinStateChangeEventArgs() публичный Метод

Initializes a new instance of the CyrusBuilt.MonoPi.IO.PinStateChangeEventArgs class with the old and new pin states.
public PinStateChangeEventArgs ( PinState oldState, PinState newState ) : System
oldState PinState /// The previous state of the pin. ///
newState PinState /// The new state of the pin. ///
Результат System