5 instantiations of FileTransferInformation
Microsoft.TestPlatform.Extensions.BlameDataCollector (4)
BlameCollector.cs (4)
282var fileTransferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFile, true, _fileHelper); 519var fti = new FileTransferInformation(_context.SessionDataCollectionContext, filepath, true); 541var fileTransferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFile, true); 598var fileTranferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFileNameFullPath, true);
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
DataCollector\DataCollectionSink.cs (1)
45var fileInfo = new FileTransferInformation(context, path, deleteFile);
13 references to FileTransferInformation
Microsoft.TestPlatform.Extensions.BlameDataCollector (4)
BlameCollector.cs (4)
282var fileTransferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFile, true, _fileHelper); 519var fti = new FileTransferInformation(_context.SessionDataCollectionContext, filepath, true); 541var fileTransferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFile, true); 598var fileTranferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFileNameFullPath, true);
Microsoft.VisualStudio.TestPlatform.Common (5)
DataCollection\DataCollectionAttachmentManager.cs (3)
163public void AddAttachment(FileTransferInformation fileTransferInfo, AsyncCompletedEventHandler? sendFileCompletedCallback, Uri uri, string friendlyName) 199private static void Validate(FileTransferInformation fileTransferInfo, string localFilePath) 237private void AddNewFileTransfer(FileTransferInformation fileTransferInfo, AsyncCompletedEventHandler? sendFileCompletedCallback, Uri uri, string friendlyName)
DataCollection\Interfaces\IDataCollectionAttachmentManager.cs (1)
58void AddAttachment(FileTransferInformation fileTransferInfo, AsyncCompletedEventHandler? sendFileCompletedCallback, Uri dataCollectorUri, string friendlyName);
DataCollection\TestPlatformDataCollectionSink.cs (1)
59public override void SendFileAsync(FileTransferInformation fileTransferInformation)
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
DataCollector\DataCollectionSink.cs (2)
45var fileInfo = new FileTransferInformation(context, path, deleteFile); 55public abstract void SendFileAsync(FileTransferInformation fileTransferInformation);
DataCollector\TransferInformation\FileTransferInformation.cs (2)
20/// Initializes a new instance of the <see cref="FileTransferInformation"/> class. 37/// Initializes a new instance of the <see cref="FileTransferInformation"/> class.