Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AsyncInvocationAdapter"/> class.
 /// </summary>
 /// <param name="adapted">The underlying implementation that is being adapted.</param>
 public AsyncInvocationAdapter(ICastleInterceptorInvocation adapted)
     : base(adapted)
 {
     // Castle.DynamicProxy has a temporal coupling in its API. We have to call `CaptureProceedInfo()`
     // on the invocation before we enter a continuation in the interceptor. Calling it here assumes
     // that we will be constructing this adapter before we do any asynchronous work in the interceptor.
     _proceedInfo = adapted.CaptureProceedInfo();
 }