コード例 #1
0
        //[InlineData("*")]
        public void AccountsTest(string symbol)
        {
            WSNotifyClient client = new WSNotifyClient(config["AccessKey"], config["SecretKey"]);

            client.SubAcounts(symbol, delegate(SubAccountsResponse data)
            {
                Console.WriteLine(JsonConvert.SerializeObject(data));
            });
            System.Threading.Thread.Sleep(1000 * 60 * 2);
            client.UnsubAccounts(symbol);
            System.Threading.Thread.Sleep(1000 * 60);
        }