Evernote.EDAM.NoteStore.NoteStore.unsetResourceApplicationDataEntry_result.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : string
리턴 string
      public override string ToString() {
        StringBuilder sb = new StringBuilder("unsetResourceApplicationDataEntry_result(");
        sb.Append("Success: ");
        sb.Append(Success);
        sb.Append(",UserException: ");
        sb.Append(UserException== null ? "<null>" : UserException.ToString());
        sb.Append(",SystemException: ");
        sb.Append(SystemException== null ? "<null>" : SystemException.ToString());
        sb.Append(",NotFoundException: ");
        sb.Append(NotFoundException== null ? "<null>" : NotFoundException.ToString());
        sb.Append(")");
        return sb.ToString();
      }
NoteStore.unsetResourceApplicationDataEntry_result