J
Jake918
Guest
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net;
namespace restClientV2
{
public partial class Form1 : Form
{
private object txtRequestURI;
public Form1()
{
InitializeComponent();
}
#region UI Event Handlers
private void cmdGO_Click(object sender, EventArgs e)
{
RestClient rClient = new RestClient();
rClient.endPoint = txtRequestURI.Text;
debugOutput("Rest Client Created");
string strResponse = string.Empty;
strResponse = rClient.makeRequest();
debugOutput(strResponse);
}
#endregion
}
}
I am getting the error message in the title
Continue reading...
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net;
namespace restClientV2
{
public partial class Form1 : Form
{
private object txtRequestURI;
public Form1()
{
InitializeComponent();
}
#region UI Event Handlers
private void cmdGO_Click(object sender, EventArgs e)
{
RestClient rClient = new RestClient();
rClient.endPoint = txtRequestURI.Text;
debugOutput("Rest Client Created");
string strResponse = string.Empty;
strResponse = rClient.makeRequest();
debugOutput(strResponse);
}
#endregion
}
}
I am getting the error message in the title
Continue reading...