ToString() public method

Used to return the routable value of the command to the correct notification interface
public ToString ( ) : string
return string
 /// <summary>
 /// Gets the name of the command from the list
 /// </summary>
 /// <param name="command">The ServiceCommand</param>
 /// <returns>The "name" of the command within the Service Management API</returns>
 public string GetCommandName(ServiceCommand command)
 {
     string commandType = CommandNameMapContainer[command.GetType()];
     if (commandType == null)
         return command.ToString();
     return commandType;
 }