// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Management.Automation.Internal; using Dbg = System.Management.Automation; namespace System.Management.Automation { /// /// Exposes the Cmdlet Family Providers to the Cmdlet base class. The methods of this class /// use the providers to perform operations. /// public sealed class ProviderIntrinsics { #region Constructors /// /// Hide the default constructor since we always require an instance of SessionState. /// private ProviderIntrinsics() { Dbg.Diagnostics.Assert( false, "This constructor should never be called. Only the constructor that takes an instance of SessionState should be called."); } /// /// Constructs a facade over the "real" session state API. /// /// /// An instance of the cmdlet. /// /// /// If is null. /// 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); } /// /// Constructs a facade over the "real" session state API. /// /// /// An instance of the cmdlet. /// 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 /// /// Gets the object that exposes the verbs for the item noun for Cmdlet Providers. /// public ItemCmdletProviderIntrinsics Item { get; } /// /// Gets the object that exposes the verbs for the childItem noun for Cmdlet Providers. /// public ChildItemCmdletProviderIntrinsics ChildItem { get; } /// /// Gets the object that exposes the verbs for the content noun for Cmdlet Providers. /// public ContentCmdletProviderIntrinsics Content { get; } /// /// Gets the object that exposes the verbs for the property noun for Cmdlet Providers. /// public PropertyCmdletProviderIntrinsics Property { get; } /// /// Gets the object that exposes the verbs for the SecurityDescriptor noun for Cmdlet Providers. /// public SecurityDescriptorCmdletProviderIntrinsics SecurityDescriptor { get; } #endregion Public members #region private data private readonly InternalCommand _cmdlet; #endregion private data } }