VkNet.Utils.Browser.GetJson C# (CSharp) Méthode

GetJson() public méthode

Получение json по url-адресу
public GetJson ( string url ) : string
url string Адрес получения json
Résultat string
        public string GetJson(string url)
        {
            var separatorPosition = url.IndexOf('?');
            var methodUrl = separatorPosition < 0 ? url : url.Substring(0, separatorPosition);
            var parameters = separatorPosition < 0 ? string.Empty : url.Substring(separatorPosition + 1);

            return WebCall.PostCall(methodUrl, parameters, _webProxy).Response;
        }