<PackageReference Include="SSH.NET" Version="2023.0.1" />

ObjectIdentifier

public struct ObjectIdentifier
Describes object identifier for DER encoding.
using System; using System; namespace Renci.SshNet.Common { public class ShellDataEventArgs : EventArgs { public byte[] Data { get; } public string Line { get; } public ShellDataEventArgs(byte[] data) { Data = data; } public ShellDataEventArgs(string line) { Line = line; } } }