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

InformationResponseMessage

Represents SSH_MSG_USERAUTH_INFO_RESPONSE message.
using System; using System.Collections.Generic; namespace Renci.SshNet.Messages.Authentication { internal sealed class InformationResponseMessage : Message { public override string MessageName => "SSH_MSG_USERAUTH_INFO_RESPONSE"; public override byte MessageNumber => 61; public List<string> Responses { get; set; } protected override int BufferCapacity => -1; public InformationResponseMessage() { Responses = new List<string>(); } protected override void LoadData() { throw new NotImplementedException(); } protected override void SaveData() { Write((uint)Responses.Count); foreach (string response in Responses) { Write(response); } } internal override void Process(Session session) { throw new NotImplementedException(); } } }