You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.6 KiB
C#

using System;
using System.Text;
using Renci.SshNet.Sftp.Responses;
namespace Renci.SshNet.Sftp.Requests
{
internal class SftpRemoveRequest : SftpRequest
{
private byte[] _fileName;
public override SftpMessageTypes SftpMessageType
{
get { return SftpMessageTypes.Remove; }
}
public string Filename
{
get { return Encoding.GetString(_fileName, 0, _fileName.Length); }
private set { _fileName = Encoding.GetBytes(value); }
}
public Encoding Encoding { get; private set; }
/// <summary>
/// Gets the size of the message in bytes.
/// </summary>
/// <value>
/// The size of the messages in bytes.
/// </value>
protected override int BufferCapacity
{
get
{
var capacity = base.BufferCapacity;
capacity += 4; // FileName length
capacity += _fileName.Length; // FileName
return capacity;
}
}
public SftpRemoveRequest(uint protocolVersion, uint requestId, string filename, Encoding encoding, Action<SftpStatusResponse> statusAction)
: base(protocolVersion, requestId, statusAction)
{
Encoding = encoding;
Filename = filename;
}
protected override void LoadData()
{
base.LoadData();
_fileName = ReadBinary();
}
protected override void SaveData()
{
base.SaveData();
WriteBinaryString(_fileName);
}
}
}