LINE.Datatypes.TalkService.Client.recv_findContactsByEmail C# (CSharp) Method

recv_findContactsByEmail() public method

public recv_findContactsByEmail ( ) : Contact>.Dictionary
return Contact>.Dictionary
      public Dictionary<string, Contact> recv_findContactsByEmail()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        findContactsByEmail_result result = new findContactsByEmail_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.e) {
          throw result.E;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "findContactsByEmail failed: unknown result");
      }
TalkService.Client