/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.Management.UI.Internal/ShowCommand/ViewModel/HelpNeededEventArgs.cs
35 строк
1003 B
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace Microsoft.PowerShell.Commands.ShowCommandInternal { /// <summary> /// Arguments for the event triggered when it is necessary to display help for a command. /// </summary> public class HelpNeededEventArgs : EventArgs { /// <summary> /// the name for the command needing help. /// </summary> private string commandName; /// <summary> /// Initializes a new instance of the HelpNeededEventArgs class. /// </summary> /// <param name="commandName">The name for the command needing help.</param> public HelpNeededEventArgs(string commandName) { this.commandName = commandName; } /// <summary> /// Gets the name for the command needing help. /// </summary> public string CommandName { get { return this.commandName; } } } }