Example #1
0
 /// <summary>
 /// Initializes a new <see cref="BiosEvent"/> instance with the given parameters.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 /// <param name="message">An optional message associated with the event.</param>
 public BiosEvent( BiosEventType type, string message )
     : base(message)
 {
     this.Type = type;
 }
Example #2
0
 /// <summary>
 /// Initializes a new <see cref="BiosEvent"/> instance with the given parameters.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 /// <param name="message">An optional message associated with the event.</param>
 public BiosEvent(BiosEventType type, string message)
     : base(message)
 {
     this.Type = type;
 }
Example #3
0
 /// <summary>
 /// Initializes a new <see cref="BiosEvent"/> instance with the given parameters.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 public BiosEvent( BiosEventType type )
     : this(type, null)
 {
 }
Example #4
0
 /// <summary>
 /// Initializes a new <see cref="BiosEvent"/> instance with the given parameters.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 public BiosEvent(BiosEventType type)
     : this(type, null)
 {
 }