/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.5.4
src/Microsoft.PowerShell.Commands.Diagnostics/GetEventSnapin.cs
109 строк
3 KB
Steve Lee
Replace `msh` in public API comment based documentation with PowerShell equivalent (#18483)
08 ноя 2022, 06:27
Не верифицирован
08 ноя 2022, 06:27
8374823
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.Generic; using System.ComponentModel; using System.Management.Automation; using System.Text; namespace Microsoft.PowerShell.Commands { /// <summary> /// Create the PowerShell snap-in used to register the /// Get-WinEvent cmdlet. Declaring the PSSnapIn class identifies /// this .cs file as a PowerShell snap-in. /// </summary> [RunInstaller(true)] public class GetEventPSSnapIn : PSSnapIn { /// <summary> /// Create an instance of the GetEventPSSnapIn class. /// </summary> public GetEventPSSnapIn() : base() { } /// <summary> /// Specify the name of the PowerShell snap-in. /// </summary> public override string Name { get { return "Microsoft.Powershell.GetEvent"; } } /// <summary> /// Specify the vendor of the PowerShell snap-in. /// </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 "GetEventResources,Vendor"; } } /// <summary> /// Specifies the description of the PowerShell snap-in. /// </summary> public override string Description { get { return "This PS snap-in contains Get-WinEvent cmdlet used to read Windows event log data and configuration."; } } /// <summary> /// Get resource information for description. This is a string of format: resourceBaseName,resourceName. /// </summary> public override string DescriptionResource { get { return "GetEventResources,Description"; } } /// <summary> /// Get type files to be used for this PSSnapin. /// </summary> public override string[] Types { get { return _types; } } private string[] _types = new string[] { "getevent.types.ps1xml" }; /// <summary> /// Get format files to be used for this PSSnapin. /// </summary> public override string[] Formats { get { return _formats; } } private string[] _formats = new string[] { "Event.format.ps1xml" }; } }