/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/CmdletFamilyProviderInterfaces.cs
109 строк
4 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.Internal; using Dbg = System.Management.Automation; namespace System.Management.Automation { /// <summary> /// Exposes the Cmdlet Family Providers to the Cmdlet base class. The methods of this class /// use the providers to perform operations. /// </summary> public sealed class ProviderIntrinsics { #region Constructors /// <summary> /// Hide the default constructor since we always require an instance of SessionState. /// </summary> private ProviderIntrinsics() { Dbg.Diagnostics.Assert( false, "This constructor should never be called. Only the constructor that takes an instance of SessionState should be called."); } /// <summary> /// Constructs a facade over the "real" session state API. /// </summary> /// <param name="cmdlet"> /// An instance of the cmdlet. /// </param> /// <exception cref="ArgumentNullException"> /// If <paramref name="cmdlet"/> is null. /// </exception> internal ProviderIntrinsics(Cmdlet cmdlet) { if (cmdlet == null) { throw PSTraceSource.NewArgumentNullException(nameof(cmdlet)); } _cmdlet = cmdlet; Item = new ItemCmdletProviderIntrinsics(cmdlet); ChildItem = new ChildItemCmdletProviderIntrinsics(cmdlet); Content = new ContentCmdletProviderIntrinsics(cmdlet); Property = new PropertyCmdletProviderIntrinsics(cmdlet); SecurityDescriptor = new SecurityDescriptorCmdletProviderIntrinsics(cmdlet); } /// <summary> /// Constructs a facade over the "real" session state API. /// </summary> /// <param name="sessionState"> /// An instance of the cmdlet. /// </param> internal ProviderIntrinsics(SessionStateInternal sessionState) { if (sessionState == null) { throw PSTraceSource.NewArgumentNullException(nameof(sessionState)); } Item = new ItemCmdletProviderIntrinsics(sessionState); ChildItem = new ChildItemCmdletProviderIntrinsics(sessionState); Content = new ContentCmdletProviderIntrinsics(sessionState); Property = new PropertyCmdletProviderIntrinsics(sessionState); SecurityDescriptor = new SecurityDescriptorCmdletProviderIntrinsics(sessionState); } #endregion Constructors #region Public members /// <summary> /// Gets the object that exposes the verbs for the item noun for Cmdlet Providers. /// </summary> public ItemCmdletProviderIntrinsics Item { get; } /// <summary> /// Gets the object that exposes the verbs for the childItem noun for Cmdlet Providers. /// </summary> public ChildItemCmdletProviderIntrinsics ChildItem { get; } /// <summary> /// Gets the object that exposes the verbs for the content noun for Cmdlet Providers. /// </summary> public ContentCmdletProviderIntrinsics Content { get; } /// <summary> /// Gets the object that exposes the verbs for the property noun for Cmdlet Providers. /// </summary> public PropertyCmdletProviderIntrinsics Property { get; } /// <summary> /// Gets the object that exposes the verbs for the SecurityDescriptor noun for Cmdlet Providers. /// </summary> public SecurityDescriptorCmdletProviderIntrinsics SecurityDescriptor { get; } #endregion Public members #region private data private readonly InternalCommand _cmdlet; #endregion private data } }