Windows-powershell / PowerShell-master /src /Microsoft.Management.Infrastructure.CimCmdlets /GetCimSessionCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Management.Automation; | |
| namespace Microsoft.Management.Infrastructure.CimCmdlets | |
| { | |
| /// <summary> | |
| /// The command returns zero, one or more CimSession objects that represent | |
| /// connections with remote computers established from the current PS Session. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public sealed class GetCimSessionCommand : CimBaseCommand | |
| { | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="GetCimSessionCommand"/> class. | |
| /// </summary> | |
| public GetCimSessionCommand() | |
| : base(parameters, parameterSets) | |
| { | |
| DebugHelper.WriteLogEx(); | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// The following is the definition of the input parameter "ComputerName". | |
| /// Specifies one or more connections by providing their ComputerName(s). The | |
| /// Cmdlet then gets CimSession(s) opened with those connections. This parameter | |
| /// is an alternative to using CimSession(s) that also identifies the remote | |
| /// computer(s). | |
| /// </para> | |
| /// <para> | |
| /// This is the only optional parameter of the Cmdlet. If not provided, the | |
| /// Cmdlet returns all CimSession(s) live/active in the runspace. | |
| /// </para> | |
| /// <para> | |
| /// If an instance of CimSession is pipelined to Get-CimSession, the | |
| /// ComputerName property of the instance is bound by name with this parameter. | |
| /// </para> | |
| /// </summary> | |
| [] | |
| [ | |
| ] | |
| [] | |
| public string[] ComputerName | |
| { | |
| get | |
| { | |
| return computername; | |
| } | |
| set | |
| { | |
| computername = value; | |
| base.SetParameter(value, nameComputerName); | |
| } | |
| } | |
| private string[] computername; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "Id". | |
| /// Specifies one or more numeric Id(s) for which to get CimSession(s). | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public uint[] Id | |
| { | |
| get | |
| { | |
| return id; | |
| } | |
| set | |
| { | |
| id = value; | |
| base.SetParameter(value, nameId); | |
| } | |
| } | |
| private uint[] id; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "InstanceID". | |
| /// Specifies one or Session Instance IDs. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public Guid[] InstanceId | |
| { | |
| get | |
| { | |
| return instanceid; | |
| } | |
| set | |
| { | |
| instanceid = value; | |
| base.SetParameter(value, nameInstanceId); | |
| } | |
| } | |
| private Guid[] instanceid; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "Name". | |
| /// Specifies one or more session Name(s) for which to get CimSession(s). The | |
| /// argument may contain wildcard characters. | |
| /// </summary> | |
| [ | |
| ] | |
| [] | |
| public string[] Name | |
| { | |
| get | |
| { | |
| return name; | |
| } | |
| set | |
| { | |
| name = value; | |
| base.SetParameter(value, nameName); | |
| } | |
| } | |
| private string[] name; | |
| /// <summary> | |
| /// BeginProcessing method. | |
| /// </summary> | |
| protected override void BeginProcessing() | |
| { | |
| cimGetSession = new CimGetSession(); | |
| this.AtBeginProcess = false; | |
| } | |
| /// <summary> | |
| /// ProcessRecord method. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| base.CheckParameterSet(); | |
| cimGetSession.GetCimSession(this); | |
| } | |
| /// <summary> | |
| /// <see cref="CimGetSession"/> object used to search CimSession from cache. | |
| /// </summary> | |
| private CimGetSession cimGetSession; | |
| internal const string nameComputerName = "ComputerName"; | |
| internal const string nameId = "Id"; | |
| internal const string nameInstanceId = "InstanceId"; | |
| internal const string nameName = "Name"; | |
| /// <summary> | |
| /// Static parameter definition entries. | |
| /// </summary> | |
| private static readonly Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters = new() | |
| { | |
| { | |
| nameComputerName, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.ComputerNameSet, false), | |
| } | |
| }, | |
| { | |
| nameId, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.SessionIdSet, true), | |
| } | |
| }, | |
| { | |
| nameInstanceId, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.InstanceIdSet, true), | |
| } | |
| }, | |
| { | |
| nameName, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.NameSet, true), | |
| } | |
| }, | |
| }; | |
| /// <summary> | |
| /// Static parameter set entries. | |
| /// </summary> | |
| private static readonly Dictionary<string, ParameterSetEntry> parameterSets = new() | |
| { | |
| { CimBaseCommand.ComputerNameSet, new ParameterSetEntry(0, true) }, | |
| { CimBaseCommand.SessionIdSet, new ParameterSetEntry(1) }, | |
| { CimBaseCommand.InstanceIdSet, new ParameterSetEntry(1) }, | |
| { CimBaseCommand.NameSet, new ParameterSetEntry(1) }, | |
| }; | |
| } | |
| } | |