Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

The method that will run when a <see cref="CaptureImporter"/> is picked up by the engine.

public abstract List<string> Import();

Classes: 


Returns

List<string>

List of string file paths.


Example

The following example demonstrates 

public override List<string> Import()
{
	var directory = @"C:\Capture Files\";
	return Directory.GetFiles(directory).ToList();
}

Remarks

In GlobalCapture, files targeted for import are consumed when they are spawned into a GlobalCapture process. This method behaves consistently. Any files targeted by this method will be removed from their target location at the same time as the processes are created for the files in GlobalCapture.

  • No labels