Amqp.TaskExtensions.ContinueWith C# (CSharp) Метод

ContinueWith() статический приватный Метод

static private ContinueWith ( this task, object>.Action action, object state ) : System.Threading.Tasks.Task
task this
action object>.Action
state object
Результат System.Threading.Tasks.Task
        internal static Task ContinueWith(this Task task, Action<Task, object> action, object state)
        {
            return task.ContinueWith(t => action(t, state));
        }
#endif