Adapter initialization: Quidax
The following code initializes QuidaxMessageAdapter and adds it to Connector.
Connector connector = new Connector();
...
var messageAdapter = new QuidaxMessageAdapter(connector.TransactionIdGenerator)
{
Token = "<Your access token>".To<SecureString>(),
UserId = "<Your user ID>",
};
connector.Adapter.InnerAdapters.Add(messageAdapter);
...
Set the credentials and any other required properties described on the Connector configuration page.