Exemplo n.º 1
0
        private void ProcessStreamDetails(RSProtoBuffSSHMsg msg)
        {
            ResponseStreamDetail response = new ResponseStreamDetail();
            Exception            e;

            if (RSProtoBuf.Deserialize <ResponseStreamDetail>(msg.ProtoBuffMsg, out response, out e))
            {
                if (response.status.code == Status.StatusCode.SUCCESS)
                {
                    _b.StreamProcessor.StreamDetails(response);
                }
                else
                {
                    _b.GUI.tb_out.AppendText("StreamDetails response: " + response.status.code + "\n");
                }
            }
            else
            {
                System.Diagnostics.Debug.WriteLine("ProcessStreamDetails: error deserializing " + e.Message);
            }
        }
Exemplo n.º 2
0
 internal void StreamDetails(ResponseStreamDetail response)
 {
     throw new NotImplementedException();
 }