コード例 #1
0
 /// <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;
 }
コード例 #2
0
 /// <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)
 {
 }
コード例 #3
0
 /// <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;
 }
コード例 #4
0
 /// <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)
 {
 }
コード例 #5
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)
 {
 }
コード例 #6
0
 /// <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)
 {
 }
 /// <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 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;
 }