C# İnternet Bağlantısını Kontrol Etme Programı Bölüm #9

preview_player
Показать описание
Kodlar:

using System.Runtime;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
static extern bool InternetGetConnectedState(ref ConnectionState IpdwFlags, int dwReserved);

[Flags]
enum ConnectionState : int
{
INTERNET_CONNECTION_MODEM = 0x1,
INTERNET_CONNECTION_LAN = 0x2,
INTERNET_CONNECTION_PROXY = 0x4,
INTERNET_RAS_INSTALLED = 0x10,
INTERNET_CONNECTION_OFFLINE = 0x20,
INTERNET_CONNECTION_CONFIGURED = 0x40
}
ConnectionState Description = 0;
private void button1_Click(object sender, EventArgs e)
{
bool baglanti = InternetGetConnectedState(ref Description, 0);
if (baglanti)
{
MessageBox.Show("İnternet Bağlantısı Var");
}
else
{
MessageBox.Show("İnternet Bağlantısı Yok");
}
Рекомендации по теме
Комментарии
Автор

Kardeşim videonu beğenmedim sebebi ise anlamamışsın kodlarını ama desek için like bastım

Bilgikoliktr