Evernote.EDAM.NoteStore.NoteStore.getNoteApplicationData_result.ToString C# (CSharp) Méthode

ToString() public méthode

public ToString ( ) : string
Résultat string
      public override string ToString() {
        StringBuilder sb = new StringBuilder("getNoteApplicationData_result(");
        sb.Append("Success: ");
        sb.Append(Success== null ? "<null>" : Success.ToString());
        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.getNoteApplicationData_result