Auto.Server.WatcherServiceNotifySerializer.ReadReturn C# (CSharp) Method

ReadReturn() public method

public ReadReturn ( uint methodId, BinaryReader br ) : object
methodId uint
br System.IO.BinaryReader
return object
        public object ReadReturn(uint methodId, BinaryReader br)
        {
            var returnVal = new object();
            return returnVal;
        }
        public void WriteReturn(RpcMethod method, BinaryWriter bw, object value) {}
WatcherServiceNotifySerializer