Removed IsEof from SftpDataResponse.

This commit is contained in:
Gert Driesen
2017-02-03 18:43:50 +01:00
parent 774951e0c4
commit 51bd8fa6fd
@@ -9,8 +9,6 @@
public byte[] Data { get; private set; }
public bool IsEof { get; private set; }
public SftpDataResponse(uint protocolVersion)
: base(protocolVersion)
{
@@ -21,11 +19,6 @@
base.LoadData();
Data = ReadBinary();
if (!IsEndOfData)
{
IsEof = ReadBoolean();
}
}
}
}