LineSharp.Datatypes.TalkService.Client.recv_findContactsByPhone C# (CSharp) Method

recv_findContactsByPhone() public method

public recv_findContactsByPhone ( ) : Contact>.Dictionary
return Contact>.Dictionary
      public Dictionary<string, Contact> recv_findContactsByPhone()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        findContactsByPhone_result result = new findContactsByPhone_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, "findContactsByPhone failed: unknown result");
      }
TalkService.Client