using System; using System.IO; namespace ScreenConnect; public interface IReadStreamProducer : IDisposable { Stream OpenReadStream(); }