Skip to content

v3.12.0

Choose a tag to compare

@echarrod echarrod released this 28 Jul 13:07
· 117 commits to master since this release
859c3b9

Added

  • Items to YotiProfileException:
    • ErrorCode
    • ResponseContent

Example:

using Yoti.Auth.Exceptions;

try
{
	ActivityDetails activityDetails = client.GetActivityDetails(encryptedToken);
}
catch (YotiProfileException profileEx)
{
	string errorCode = profileEx.ErrorCode;
	string responseContent= profileEx.ResponseContent;
}