so, i've seen this question on this thread
basically i want to know how i can implement the Resource Interceptor, cause i can't find it.. i'm also using c# and i search through the object browser and didn't find the class...
this is my code.. more or less is the same as thread above
public class CustomInter : ResourceInterceptor
{
protected override ResourceResponse OnRequest(ResourceRequest request)
{
request.Method = "POST";
request.AppendUploadBytes("klik_login=1&outkey=323e82945803f3eb68798709237d2ac7&username=asd&password=asd123", 100);
request.AppendExtraHeader("Content-Type", "application/x-www-form-urlencoded");
return null;
}
}
this doesnt work, any suggestion?