示例#1
0
 /// <summary>
 /// Initializes a new instance of the IpmiMessageRequestAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 /// <param name="dataLength">IPMI message data length.</param>
 public IpmiMessageRequestAttribute(IpmiFunctions function, IpmiCommand command, int dataLength)
     : base(function, command, dataLength)
 {
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the IpmiMessageAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 /// <param name="dataLength">IPMI message data length.</param>
 protected IpmiMessageAttribute(IpmiFunctions function, IpmiCommand command, int dataLength)
 {
     this.function   = function;
     this.command    = command;
     this.dataLength = dataLength;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the IpmiMessageRequestAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 public IpmiMessageRequestAttribute(IpmiFunctions function, IpmiCommand command)
     : base(function, command, 0)
 {
 }
示例#4
0
 /// <summary>
 /// Initializes a new instance of the IpmiMessageAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 protected IpmiMessageAttribute(IpmiFunctions function, IpmiCommand command)
 {
     this.function = function;
     this.command  = command;
 }
 /// <summary>
 /// Initializes a new instance of the IpmiMessageResponseAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 /// <param name="dataLength">IPMI message data length.</param>
 public IpmiMessageResponseAttribute(IpmiFunctions function, IpmiCommand command, int dataLength)
     : base(function, command, dataLength)
 {
 }
 /// <summary>
 /// Initializes a new instance of the IpmiMessageResponseAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 public IpmiMessageResponseAttribute(IpmiFunctions function, IpmiCommand command)
     : base(function, command, 0)
 {
 }
 /// <summary>
 /// Initializes a new instance of the IpmiMessageAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 /// <param name="dataLength">IPMI message data length.</param>
 protected IpmiMessageAttribute(IpmiFunctions function, IpmiCommand command, int dataLength)
 {
     this.function = function;
     this.command = command;
     this.dataLength = dataLength;
 }
 /// <summary>
 /// Initializes a new instance of the IpmiMessageAttribute class.
 /// </summary>
 /// <param name="function">IPMI message function.</param>
 /// <param name="command">IPMI message command.</param>
 protected IpmiMessageAttribute(IpmiFunctions function, IpmiCommand command)
 {
     this.function = function;
     this.command = command;
 }