-от попросите удалить
-до вы в разных странах, это все фигня
A procedure is a database object similar to a function. The difference is that a procedure does not return a value, so there is no return type declaration.
// Default to allow up to 6 connections per host. Experiment and tuning may
// try other values (greater than 0). Too large may cause many problems, such
// as home routers blocking the connections!?!? See http://crbug.com/12066.
//
// WebSocket connections are long-lived, and should be treated differently
// than normal other connections. Use a limit of 255, so the limit for wss will
// be the same as the limit for ws. Also note that Firefox uses a limit of 200.
// See http://crbug.com/486800
int g_max_sockets_per_group[] = {
6, // NORMAL_SOCKET_POOL
255 // WEBSOCKET_SOCKET_POOL
};
public static class Extensions
{
public static bool TryAdd<TKey, TValue>(this Dictionary<TKey, TValue> dictionary, TKey key, TValue value)
{
if (dictionary.ContainsKey(key))
{
return false;
}
dictionary.Add(key, value);
return true;
}
public static bool TryAdd<TKey, TValue>(this Dictionary<TKey, TValue> dictionary, KeyValuePair<TKey,TValue> value)
{
return TryAdd(dictionary, value.Key, value.Value);
}
}
клиенту, естественно, верить нельзя
Начал смотреть в сторону OllyDbg, но его разработка прекратилась очень давно - 10 лет тому назад.За 10 лет ничего не изменилось(я имею ввиду для x32).
Попытался открыть первый исполняемый файл через x64dbg, получил сообщение о том, что я пытаюсь открыть недопустимый PE-файлЭто случается, когда вы открываете x32 PE файл в x64-х битной версии x64dbg или наоборот.
Result.ToString();
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
var formData = new Dictionary<string, string>
{
{"CaseNumbers", ""},
{"Count", "25"},
{"Courts", ""},
{"DateFrom", null},
{"DateTo", null},
{"Judges", ""},
{"Page", "1"},
{"Sides", ""},
{"WithVKSInstances", "false"},
};
using var client = new HttpClient();
var uri = new Uri("https://kad.arbitr.ru/");
var content = new FormUrlEncodedContent(formData);
var response = await client.PostAsync(uri, content);
var str = await response.Content.ReadAsStringAsync();
System.IO.File.WriteAllText("./result.html", str);