/ss.cs Secret
Created
September 10, 2024 00:06
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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