.net - Put method for a Byte Array
Thoughts on creating a Put method that accepts a byte array instead of a file path?
Something like...
public TransferOperationResult Put(byte[] data, string remoteFileName, string remotePath, TransferOptions options = null)
The data I am working with is an in-memory byte array and my environment does not have good place to store temporary files. So keeping everything in memory would be ideal.
Thanks,Justin
Something like...
public TransferOperationResult Put(byte[] data, string remoteFileName, string remotePath, TransferOptions options = null)
The data I am working with is an in-memory byte array and my environment does not have good place to store temporary files. So keeping everything in memory would be ideal.
Thanks,Justin