Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Utility /singleshell /installer /MshUtilityMshSnapin.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.ComponentModel; | |
| using System.Management.Automation; | |
| namespace Microsoft.PowerShell | |
| { | |
| /// <summary> | |
| /// PSUtilityPSSnapIn is a class for facilitating registry | |
| /// of necessary information for PowerShell utility PSSnapin. | |
| /// </summary> | |
| [] | |
| public sealed class PSUtilityPSSnapIn : PSSnapIn | |
| { | |
| /// <summary> | |
| /// Create an instance of this class. | |
| /// </summary> | |
| public PSUtilityPSSnapIn() | |
| : base() | |
| { | |
| } | |
| /// <summary> | |
| /// Get name of this PSSnapin. | |
| /// </summary> | |
| public override string Name | |
| { | |
| get | |
| { | |
| return RegistryStrings.UtilityMshSnapinName; | |
| } | |
| } | |
| /// <summary> | |
| /// Get the default vendor string for this PSSnapin. | |
| /// </summary> | |
| public override string Vendor | |
| { | |
| get | |
| { | |
| return "Microsoft"; | |
| } | |
| } | |
| /// <summary> | |
| /// Get resource information for vendor. This is a string of format: resourceBaseName,resourceName. | |
| /// </summary> | |
| public override string VendorResource | |
| { | |
| get | |
| { | |
| return "UtilityMshSnapInResources,Vendor"; | |
| } | |
| } | |
| /// <summary> | |
| /// Get the default description string for this PSSnapin. | |
| /// </summary> | |
| public override string Description | |
| { | |
| get | |
| { | |
| return "This PSSnapIn contains utility cmdlets used to manipulate data."; | |
| } | |
| } | |
| /// <summary> | |
| /// Get resource information for description. This is a string of format: resourceBaseName,resourceName. | |
| /// </summary> | |
| public override string DescriptionResource | |
| { | |
| get | |
| { | |
| return "UtilityMshSnapInResources,Description"; | |
| } | |
| } | |
| } | |
| } | |