/// <summary> /// Initializes a new instance of the NodeManagerMessageAttribute class. /// </summary> /// <param name="function">Node Manager message function.</param> /// <param name="command">Node Manager message command.</param> /// <param name="dataLength">Node Manager message data length.</param> protected NodeManagerMessageAttribute(NodeManagerFunctions function, NodeManagerCommand command, int dataLength) { this.function = function; this.command = command; this.dataLength = dataLength; }
/// <summary> /// Initializes a new instance of the NodeManagerResponseAttribute class. /// </summary> /// <param name="function">Node Manager message function.</param> /// <param name="command">Node Manager message command.</param> /// <param name="dataLength">Node Manager message data length.</param> public NodeManagerMessageResponseAttribute(NodeManagerFunctions function, NodeManagerCommand command, int dataLength) : base(function, command, dataLength) { }
/// <summary> /// Initializes a new instance of the NodeManagerMessageAttribute class. /// </summary> /// <param name="function">Node Manager message function.</param> /// <param name="command">Node Manager message command.</param> protected NodeManagerMessageAttribute(NodeManagerFunctions function, NodeManagerCommand command) { this.function = function; this.command = command; }
/// <summary> /// Initializes a new instance of the NodeManagerResponseAttribute class. /// </summary> /// <param name="function">Node Manager message function.</param> /// <param name="command">Node Manager message command.</param> public NodeManagerMessageResponseAttribute(NodeManagerFunctions function, NodeManagerCommand command) : base(function, command, 0) { }
/// <summary> /// Initializes a new instance of the NodeManagerMessageRequestAttribute class. /// </summary> /// <param name="function">Node Manager message function.</param> /// <param name="command">Node Manager message command.</param> /// <param name="dataLength">Node Manager message data length.</param> public NodeManagerMessageRequestAttribute(NodeManagerFunctions function, NodeManagerCommand command, int dataLength) : base(function, command, dataLength) { }
/// <summary> /// Initializes a new instance of the IpmiMessageRequestAttribute class. /// </summary> /// <param name="function">Node Manager message function.</param> /// <param name="command">Node Manager message command.</param> public NodeManagerMessageRequestAttribute(NodeManagerFunctions function, NodeManagerCommand command) : base(function, command, 0) { }