AsyncParse.Net.Model.AsyncClient.Ping C# (CSharp) Method

Ping() public method

public Ping ( CancellationToken token ) : Task
token System.Threading.CancellationToken
return Task
        public Task<HttpResponseMessage> Ping(CancellationToken token)
        {
            return _client.GetAsync(new Uri(PARSE_ROOT_URL + "/users"), HttpCompletionOption.ResponseContentRead, token);
        }
    }