/// <summary>
 ///  Creates a new set of event arguments for a state change with short and long messages.
 /// </summary>
 /// <param name="stateChange">The state change type</param>
 /// <param name="shortDescription">A short description</param>
 /// <param name="longDescription">A detailed description</param>
 public EngineStateChangedEventArgs(EngineStateChangeType stateChange, string shortDescription,
                                    string longDescription)
 {
     StateChange = stateChange;
     ShortDescription = shortDescription;
     LongDescription = longDescription;
 }
Exemplo n.º 2
0
 /// <summary>
 ///  Creates a new set of event arguments for a state change with short and long messages.
 /// </summary>
 /// <param name="stateChange">The state change type</param>
 /// <param name="shortDescription">A short description</param>
 /// <param name="longDescription">A detailed description</param>
 public EngineStateChangedEventArgs(EngineStateChangeType stateChange, string shortDescription,
                                    string longDescription)
 {
     StateChange      = stateChange;
     ShortDescription = shortDescription;
     LongDescription  = longDescription;
 }
 /// <summary>
 ///  Creates a new set of event arguments for a state change with short message.
 /// </summary>
 /// <param name="stateChange">The state change type</param>
 /// <param name="shortDescription">A short description</param>
 public EngineStateChangedEventArgs(EngineStateChangeType stateChange, string shortDescription)
 {
     this.stateChange = stateChange;
     this.shortDescription = shortDescription;
     this.longDescription = shortDescription;
 }