RavenFS.Synchronization.Rdc.RemoteSignaturePartialAccess.CopyToAsync C# (CSharp) Метод

CopyToAsync() публичный Метод

public CopyToAsync ( Stream target, long from, long length ) : System.Threading.Tasks.Task
target System.IO.Stream
from long
length long
Результат System.Threading.Tasks.Task
		public Task CopyToAsync(Stream target, long from, long length)
		{
			return _ravenFileSystemClient.Synchronization.DownloadSignatureAsync(_fileName, target, from, from + length);
		}
	}