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

recv_getBlockedContactIdsByRange() public method

public recv_getBlockedContactIdsByRange ( ) : List
return List
      public List<string> recv_getBlockedContactIdsByRange()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        getBlockedContactIdsByRange_result result = new getBlockedContactIdsByRange_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, "getBlockedContactIdsByRange failed: unknown result");
      }
TalkService.Client