Maxime Labelle
Maxime Labelle

Reputation: 3639

Is it possible to implement Streaming in a custom WCF LOB Adapter?

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...

Upvotes: 1

Views: 172

Answers (1)

Dmitry Golubets
Dmitry Golubets

Reputation: 570

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

Upvotes: 1

Related Questions