public static string GetInputString(InputSocket socket, Request request) { if (!socket.IsConnected()) { return(null); } IStringConnection sampler = socket.GetConnectedSocket().Parent as IStringConnection; if (sampler == null) { return(null); } return(sampler.GetString(socket.GetConnectedSocket(), request)); }
public void GetConnectionInterface(IStringConnection providerPart) { m_providerPart = providerPart; }