/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.PowerShell.Commands.Management/commands/management/PassThroughContentCommandBase.cs
76 строк
2 KB
xtqqczze
Autofix SA1518: The code must not contain extra blank lines at the end of the file (#13574)
11 ноя 2020, 10:15
Не верифицирован
11 ноя 2020, 10:15
4d2965a
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Management.Automation; namespace Microsoft.PowerShell.Commands { /// <summary> /// The base class for the */content commands that also take /// a passthrough parameter. /// </summary> public class PassThroughContentCommandBase : ContentCommandBase { #region Parameters /// <summary> /// Gets or sets the passthrough parameter to the command. /// </summary> [Parameter] public SwitchParameter PassThru { get { return _passThrough; } set { _passThrough = value; } } /// <summary> /// Determines if the provider for the specified path supports ShouldProcess. /// </summary> /// <value></value> protected override bool ProviderSupportsShouldProcess { get { return base.DoesProviderSupportShouldProcess(base.Path); } } #endregion Parameters #region parameter data /// <summary> /// Determines if the content returned from the provider should /// be passed through to the pipeline. /// </summary> private bool _passThrough; #endregion parameter data #region protected members /// <summary> /// Initializes a CmdletProviderContext instance to the current context of /// the command. /// </summary> /// <returns> /// A CmdletProviderContext instance initialized to the context of the current /// command. /// </returns> internal CmdletProviderContext GetCurrentContext() { CmdletProviderContext currentCommandContext = CmdletProviderContext; currentCommandContext.PassThru = PassThru; return currentCommandContext; } #endregion protected members } }