Skip to content

Instantly share code, notes, and snippets.

@ebubekirbastama
Created September 10, 2024 00:06
network.RequestWillBeSent += (networkSender, ek) =>
{
if (ek.Request.Method == "GET")
{
richTextBox1.AppendText("GET İsteği URL: " + ek.Request.Url + "\n");
richTextBox1.AppendText("GET İsteği Yöntemi: " + ek.Request.Method + "\n");
}
};
network.ResponseReceived += (networkSender, ek) =>
{
if (ek.Response.Status == 200)
{
richTextBox1.AppendText("GET Yanıtı URL: " + ek.Response.Url + "\n");
richTextBox1.AppendText("GET Yanıtı Durum Kodu: " + ek.Response.Status + "\n");
// Yanıtın içeriğini işleyebilirsiniz
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment