'How to pass localization in logoutAsync in Odic client in Xamarin mobile app

I am trying to pass the localization string to log out of the identity server from my mobile App. I am using Xamarin Android app, where I am able to pass parameters for login, but the logout request has no parameters, how do I pass any idea?

Do cookies do any help for that?

public async Task<LogoutResult> Logout(string? identityToken)
{
        OidcClient oidcClient = CreateOidcClient();
        LogoutResult logoutResult = await oidcClient.LogoutAsync();
        return logoutResult;
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source