Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 493 Bytes

GeneralMethods.md

File metadata and controls

26 lines (21 loc) · 493 Bytes

General Methods

Test connectivity

Test connectivity to the Rest API.

Example:

    var test = binanceClient.TestConnectivity().Result;

Method Signature:

    public async Task<dynamic> TestConnectivity()

Check server time

Test connectivity to the Rest API and get the current server time.

Example:

    var serverTime = binanceClient.GetServerTime().Result;

Method Signature:

    public async Task<ServerInfo> GetServerTime()