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
public class ScheduleEventInterceptor : IMethodInterceptor
{
public async void BeforeInvoke(InvocationContext invocationContext)
{
//Expect this call complete before decorated method
await [some_async_call].ConfigureAwait(false);
}
}
Problem is some_async_call complete after decorated method.
Is this a bug?
The text was updated successfully, but these errors were encountered:
Castle.Core(4.4.0)
Castle.Core.AsyncInterceptor (1.7.0)
public class ScheduleEventInterceptor : IMethodInterceptor
{
public async void BeforeInvoke(InvocationContext invocationContext)
{
//Expect this call complete before decorated method
await [some_async_call].ConfigureAwait(false);
}
}
Problem is some_async_call complete after decorated method.
Is this a bug?
The text was updated successfully, but these errors were encountered: