BACnet.Ashrae.EventParameter.NewChangeOfState C# (CSharp) Method

NewChangeOfState() public static method

public static NewChangeOfState ( uint timeDelay, ReadOnlyArray listOfValues ) : EventParameter
timeDelay uint
listOfValues ReadOnlyArray
return EventParameter
        public static EventParameter NewChangeOfState(uint timeDelay, ReadOnlyArray<PropertyStates> listOfValues)
        {
            return new ChangeOfState(timeDelay, listOfValues);
        }