> For the complete documentation index, see [llms.txt](https://prethink.gitbook.io/prtelegrambot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prethink.gitbook.io/prtelegrambot/ru/api/perechisleniya-enum/updateresult.md).

# UpdateResult

```csharp
namespace PRTelegramBot.Models.Enums
{
    /// <summary>
    /// Результат выполнения update.
    /// </summary>
    public enum UpdateResult
    {
        /// <summary>
        /// Продолжить выполнение.
        /// </summary>
        Continue = 0,
        /// <summary>
        /// Не найдено.
        /// </summary>
        NotFound = 1,
        /// <summary>
        /// Обработан.
        /// </summary>
        Handled = 2,
        /// <summary>
        /// Остановить обработку.
        /// </summary>
        Stop = 3,
        /// <summary>
        /// Ошибка при обработке.
        /// </summary>
        Error = 4,
    }
}
```
