MessageEncoder.ReadMessage Method (ArraySegment<Byte>, BufferManager, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a derived class, reads a message from a specified stream.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public abstract Message ReadMessage( ArraySegment<byte> buffer, BufferManager bufferManager, string contentType )
Parameters
- buffer
- Type: System.ArraySegment<Byte>
A ArraySegment<T> of type Byte that provides the buffer from which the message is deserialized.
- bufferManager
- Type: System.ServiceModel.Channels.BufferManager
The BufferManager that manages the buffer from which the message is deserialized.
- contentType
- Type: System.String
The Multipurpose Internet Mail Extensions (MIME) message-level content-type.
Return Value
Type: System.ServiceModel.Channels.MessageThe Message that is read from the stream specified.
Show: