You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that if the OnEntry method is asynchronous, it will run alternately with the decorated method, which is not the result I want, and I want OnEntry to be executed in its entirety first.
Unfortunately we don't support this.
Your method "GetFileAsync" runs concurrent because there is no Task returned from "OnEntry" so nobody is awaiting the call.
I found that if the
OnEntry
method is asynchronous, it will run alternately with the decorated method, which is not the result I want, and I wantOnEntry
to be executed in its entirety first.The text was updated successfully, but these errors were encountered: