BACnet.Ashrae.ActionCommand.ActionCommand C# (CSharp) Method

ActionCommand() public method

public ActionCommand ( Option deviceIdentifier, ObjectId objectIdentifier, PropertyIdentifier propertyIdentifier, Option propertyArrayIndex, GenericValue propertyValue, Option priority, Option postDelay, bool quitOnFailure, bool writeSuccessful ) : System
deviceIdentifier Option
objectIdentifier ObjectId
propertyIdentifier PropertyIdentifier
propertyArrayIndex Option
propertyValue GenericValue
priority Option
postDelay Option
quitOnFailure bool
writeSuccessful bool
return System
        public ActionCommand(Option<ObjectId> deviceIdentifier, ObjectId objectIdentifier, PropertyIdentifier propertyIdentifier, Option<uint> propertyArrayIndex, GenericValue propertyValue, Option<uint> priority, Option<uint> postDelay, bool quitOnFailure, bool writeSuccessful)
        {
            this.DeviceIdentifier = deviceIdentifier;
            this.ObjectIdentifier = objectIdentifier;
            this.PropertyIdentifier = propertyIdentifier;
            this.PropertyArrayIndex = propertyArrayIndex;
            this.PropertyValue = propertyValue;
            this.Priority = priority;
            this.PostDelay = postDelay;
            this.QuitOnFailure = quitOnFailure;
            this.WriteSuccessful = writeSuccessful;
        }