/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/remoting/common/remotesession.cs
34 строки
1015 B
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.Remoting; namespace System.Management.Automation { /// <summary> /// This abstract class is designed to provide InstanceId and self identification for /// client and server remote session classes. /// </summary> internal abstract class RemoteSession { /// <summary> /// This is the unique id of a remote session object. /// </summary> internal Guid InstanceId { get; } = new Guid(); /// <summary> /// This indicates the remote session object is Client, Server or Listener. /// </summary> internal abstract RemotingDestination MySelf { get; } #region KeyExchange internal abstract void StartKeyExchange(); internal abstract void CompleteKeyExchange(); internal BaseSessionDataStructureHandler BaseSessionDataStructureHandler { get; set; } #endregion KeyExchange } }