Exemplo n.º 1
0
 /// <summary>
 /// Initializes an instance of <see cref="CommandResponseString"/> with the specified <see cref="MessageProcessStatusFlags"/> and <paramref name="responseString"/>.
 /// </summary>
 /// <param name="statusFlags">A bitwise combination of <see cref="MessageProcessStatusFlags"/> values indicating what happened while the command was running.</param>
 /// <param name="responseString">The response string to wrap.</param>
 public CommandResponseString(MessageProcessStatusFlags statusFlags, string responseString)
     : this(statusFlags)
 {
     ResponseString = responseString;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes an instance of <see cref="CommandResponse"/> with the specified <see cref="MessageProcessStatusFlags"/>.
 /// </summary>
 /// <param name="statusFlags">A bitwise combination of <see cref="MessageProcessStatusFlags"/> values indicating what happened while the command was running.</param>
 public CommandResponse(MessageProcessStatusFlags statusFlags)
 {
     ProcessStatusFlags = statusFlags;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes an instance of <see cref="CommandResponseString"/> with the specified <see cref="MessageProcessStatusFlags"/>.
 /// </summary>
 /// <param name="statusFlags">A bitwise combination of <see cref="MessageProcessStatusFlags"/> values indicating what happened while the command was running.</param>
 public CommandResponseString(MessageProcessStatusFlags statusFlags)
     : base(statusFlags)
 {
 }