/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/NativeCommand.cs
36 строк
904 B
Frode Flaten
Use null propagation operator in /engine (#17789)
29 июл 2022, 07:06
Не верифицирован
29 июл 2022, 07:06
4b4f1d1
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Management.Automation.Internal; namespace System.Management.Automation { /// <summary> /// Derives InternalCommand for Native Commands. /// </summary> internal sealed class NativeCommand : InternalCommand { private NativeCommandProcessor _myCommandProcessor; internal NativeCommandProcessor MyCommandProcessor { get { return _myCommandProcessor; } set { _myCommandProcessor = value; } } /// <summary> /// Implement the stop functionality for native commands... /// </summary> internal override void DoStopProcessing() { try { _myCommandProcessor?.StopProcessing(); } catch (Exception) { } } } }