Esta página aún no está disponible en su idioma; se muestra otra versión.
Warning
This exchange has permanently shut down (October 2019 — shut down). This connector is no longer operational. Documentation is preserved for historical reference.
Adapter initialization CoinExchange
The code below demonstrates how to initialize the CoinExchangeMessageAdapter and send it to Connector.
Connector Connector = new Connector();
...
var messageAdapter = new CoinExchangeMessageAdapter(Connector.TransactionIdGenerator)
{
Key = "<Your API Key>".To<SecureString>(),
Secret = "<Your API Secret>".To<SecureString>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...