System.ServiceModel.Channels.DetectEofStream
namespace System.ServiceModel.Channels
{
internal abstract class DetectEofStream : DelegatingStream
{
protected bool IsAtEof { get; }
protected DetectEofStream(Stream stream);
protected virtual void OnReceivedEof();
}
}