public void WriteLine(CommandOutletContent content)
 {
     this.WriteContent(content, true, null);
 }
 public void WriteLine(CommandOutletColor foregroundColor, CommandOutletContent content)
 {
     this.WriteContent(content, true, foregroundColor);
 }
 public void Write(CommandOutletContent content)
 {
     this.WriteContent(content, false, null);
 }