Heads up: For custom auth - the docs are outdated

Options
Spent a good 3 or so hours before I figured this out, but on the custom auth page , it states to get the extra data to use:

public override void OnOperationResponse(OperationResponse operationResponse) { ... }

but it should be, at least according to other docs and my application,:

void OnCustomAuthenticationResponse(Dictionary<string, object> data) { ... }

Comments