Exemple #1
0
 protected bool TryReceiveInvocation(out byte[] service, out byte[] method, out object[] arguments)
 {
     if (TryReceiveMultipartBytes(out List <byte[]> frames, 3))
     {
         ServiceUtils.DeserializeInvocation(frames, out service, out method, out arguments);
         return(true);
     }
     service   = null;
     method    = null;
     arguments = null;
     return(false);
 }