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

recv_commitUpdateProfile() public method

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