using System; using System.IO; using System.Threading.Tasks; namespace SocketsSample { interface InvocationDescriptorBuilder { Task CreateInvocationDescriptor(Stream stream, Func getParams); } }