Beispiel #1
0
        public async Task Send(TextProcessingContext context, IPipe <TextProcessingContext> next)
        {
            var source = await _input.GetAsync();

            context.SourceText = source;

            await next.Send(context);
        }