using System.Collections.Generic; namespace AsterNET.Manager.Response { /// /// Corresponds to a CommandAction.
/// Asterisk's handling of the command action is generelly quite hairy. /// It sends a "Response: Follows" line followed by the raw output of the command including empty lines. /// At the end of the command output a line containing "--END COMMAND--" is sent. /// The reader parses this response into a CommandResponse object to hide these details. ///
/// public class CommandResponse : ManagerResponse { protected internal List result; /// /// Get/Set a List containing strings representing the lines returned by the CLI command. /// public List Result { get { return result; } set { this.result = value; } } } }