Example #1
0
        private async void _pingItem_Click
        (
            object sender,
            EventArgs e
        )
        {
            using (IrbisConnection connection = GetConnection())
            {
                WriteLine("Ping start");
                await connection.NoOpAsync();

                WriteLine("Ping done");
            }
        }