/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/WebRequestMethod.cs
63 строки
1 KB
CarloToso
Enable more nullable annotations in WebCmdlets (#19359)
24 апр 2023, 06:38
Не верифицирован
24 апр 2023, 06:38
543b20b
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #nullable enable namespace Microsoft.PowerShell.Commands { /// <summary> /// Enums for web request method. /// </summary> public enum WebRequestMethod { /// <summary> /// Default method. /// </summary> Default, /// <summary> /// GET method. /// </summary> Get, /// <summary> /// HEAD method. /// </summary> Head, /// <summary> /// POST method. /// </summary> Post, /// <summary> /// PUT method. /// </summary> Put, /// <summary> /// DELETE method. /// </summary> Delete, /// <summary> /// TRACE method. /// </summary> Trace, /// <summary> /// OPTIONS method. /// </summary> Options, /// <summary> /// MERGE method. /// </summary> Merge, /// <summary> /// PATCH method. /// </summary> Patch, } }