Nathan Evans

Results 45 comments of Nathan Evans

Yeah I'm struggling to repro it myself via FSI. It must be something caused by my actual project's environment (NetFx / NetStandard2.0 / FSharp.Core 4.7.2) I've got a feeling they...

https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.dictionary-2.keycollection.enumerator.movenext?view=net-6.0 Perhaps this: > .NET Core 3.0+ only: The only mutating methods which do not invalidate enumerators are [Remove](https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.dictionary-2.remove?view=net-6.0) and [Clear](https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.dictionary-2.clear?view=net-6.0).

https://github.com/CSBiology/DynamicObj/blob/main/src/DynamicObj/DynObj.fs#L53 Interesting code comment on this line "Consider deep-copy of first" - seems to suggest DynamicObj author was aware of potential risks of the enumeration and recursive mutations. Not 100%...

This situation is crazy. Here's me thinking I've downloaded a fake/malware version of the Graph PS tools... but then I find this thread. And then the realisation that I still...

Adding a timer like that isn't a fix. It's a bad workaround that isn't production grade. We need a real workaround or real fix.

Okay so does this mean that the RefreshToken never gets used by this middleware?

> The problem with running on iOS was caused by the addition of fast column setters #902. You need to remove or #ifdef the code that was added for fast...

Pretty sure we're also seeing this. It appears that its sometimes unable to do a silent refresh of the token via WAM. This line of code is getting hit. But...

I think our problem may actually be slightly different (but still relevant). As per basically all sample code for MSAL - we call `GetAccountsAsync()` prior to `AcquireTokenSilent()`. The purpose of...

No that didn't work. Eventually, `GetAccountsAsync()` returns an empty list. Passing in a `loginHint` instead will also result in the following exception. ``` Exception type: Microsoft.Identity.Client.MsalUiRequiredException [21748] , ErrorCode: no_account_for_login_hint...