LineSharp.Datatypes.TalkService.Client.recv_getProximityMatchCandidateList C# (CSharp) 메소드

recv_getProximityMatchCandidateList() 공개 메소드

public recv_getProximityMatchCandidateList ( ) : ProximityMatchCandidateResult
리턴 ProximityMatchCandidateResult
      public ProximityMatchCandidateResult recv_getProximityMatchCandidateList()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        getProximityMatchCandidateList_result result = new getProximityMatchCandidateList_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, "getProximityMatchCandidateList failed: unknown result");
      }
TalkService.Client