Initialization of VALR Adapter
The code below demonstrates how to initialize the VALRMessageAdapter and pass it to the Connector.
Connector Connector = new Connector();
...
var messageAdapter = new VALRMessageAdapter(Connector.TransactionIdGenerator)
{
Key = "<Your value>".To<SecureString>(),
Secret = "<Your value>".To<SecureString>(),
SubAccountId = "<Your value>",
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...