1

The WCF LOB Adapter SDK creates skeleton code for getting started in the implementation of custom LOB Adapters. As part of this code, the following IOutboundHandler interface is implemented:

Message Execute (Message message, TimeSpan timeout);

Is it possible to implement streaming with Adapters built with the WCF LOB Adapter SDK? As far as I can tell, none of the builtin WCF Adapters that implement streaming are using the IOutboundHandler interface...

Maxime Labelle
  • 3,609
  • 2
  • 27
  • 48

1 Answers1

1

According to MSDN Message class supports streaming. It doesn't hold a whole body but a reader or writer reference instead.

Dmitry Golubets
  • 570
  • 5
  • 13