Caution
このコネクターが使用する Bibox 取引所の API は利用できなくなりました。このコネクターは動作しません。ドキュメントは参照用としてのみ保持されています。
Bibox アダプターの初期化
以下のコードは、BiboxMessageAdapter を初期化し、それを Connector に送る方法を示しています。
Connector Connector = new Connector();
...
var messageAdapter = new BiboxMessageAdapter(Connector.TransactionIdGenerator)
{
Key = "<APIキー>".To<SecureString>(),
Secret = "<APIシークレット>".To<SecureString>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...