Illumina.BaseSpace.SDK.BaseSpaceClient.DownloadFile C# (CSharp) 메소드

DownloadFile() 공개 메소드

public DownloadFile ( Illumina.BaseSpace.SDK.Types.FileCompact file, Stream stream, CancellationToken token = newCancellationToken() ) : void
file Illumina.BaseSpace.SDK.Types.FileCompact
stream Stream
token System.Threading.CancellationToken
리턴 void
        public void DownloadFile(FileCompact file, Stream stream, CancellationToken token = new CancellationToken())
        {
            var command = new DownloadFileCommand(this, file, stream, Settings, token, WebProxy);
            command.FileDownloadProgressChanged += command_FileDownloadProgressChanged;

            command.Execute();
        }

Same methods

BaseSpaceClient::DownloadFile ( Illumina.BaseSpace.SDK.Types.FileCompact file, string filePath, CancellationToken token = newCancellationToken() ) : void
BaseSpaceClient::DownloadFile ( Illumina.BaseSpace.SDK.Types.FileCompact file, string filePath, int maxThreadCount, CancellationToken token = newCancellationToken() ) : void
BaseSpaceClient::DownloadFile ( Illumina.BaseSpace.SDK.Types.FileCompact file, string filePath, int maxChunkSize, int maxThreadCount, CancellationToken token = newCancellationToken() ) : void
BaseSpaceClient::DownloadFile ( string fileId, Stream stream, CancellationToken token = newCancellationToken() ) : void