alfredbr
- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Activity overview
Latest activity by alfredbr-
alfredbr commented,
We also need a .ConfigureAwait(false); at the end of line 71 in HttpRequestHandler.cs in the ExecuteAsync() method. (This is in addition to the one on line 41)
-
alfredbr commented,
Alternatively, if you have the Box.V2 SDK source, you can add .ConfigureAwait(false); to the end of line #41 in HttpRequestHandler.cs
-
alfredbr commented,
A hint from on this thread (https://community.box.com/t5/Platform-and-Development-Forum/NET-SDK-code-hangs-at-AdminToken/m-p/56258#M4626) led me to this approach:Yes, you can get this to work if ...
-
alfredbr commented,
is correct.You can get this to work if you create the AdminToken in a thread other than your controller thread. This is what worked for me: BoxClient _boxClient = null; var thread = new System.T...
-
alfredbr commented,
I'm having the same problem, and I have not found a solution, but I want to add to the conversation.In particular, I want to eliminate any concerns about various versions of .NET involved.I downlo...