Swashbuckle.AspNetCore обязательный параметр строки запроса - PullRequest
2 голосов
/ 17 мая 2019

У меня есть проект ASP.NET Core v2.1 с пакетом Swashbuckle.AspNetCore.Мой код:

    /// <summary>
    /// Set new android token for the current driver
    /// </summary>
    /// <remarks>
    /// Sample request:
    ///
    ///     PUT /SetToken?token=new_token
    ///
    /// </remarks>
    /// <param name="token">can't be null or empty</param>
    /// <returns></returns>
    /// <response code="204">If executed successfully</response>
    /// <response code="400">if token is null or empty</response>  
    /// <response code="404">if user is not a driver; if driver is not found (removed etc); if user does not have a profile</response>  
    [ProducesResponseType(204)]
    [ProducesResponseType(400)]
    [ProducesResponseType(404)]
    [HttpPut]
    [Route("SetToken")]
    [UserIsNotDriverException]
    [NullReferenceException]
    [DriverWithoutProfileException]
    public async Task<IActionResult> SetToken([FromQuery]string token)
    {

Я хочу пометить параметр запроса, как требуется.Как мне это сделать?Обратите внимание, я передаю параметр в строке запроса, а не внутри тела и т. Д.

1 Ответ

3 голосов
/ 17 мая 2019

Вы можете добавить атрибут BindRequired к своему параметру.

public async Task<IActionResult> SetToken([FromQuery, BindRequired]string token)
...