  | TaskInputUtilityReadTaskInputLocations Method | 
            Reads the task input locations.
            
Namespace: Ookii.Jumbo.Jet.IOAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static IList<string[]> ReadTaskInputLocations(
	FileSystemClient fileSystem,
	string path,
	string stageId
)
Public Shared Function ReadTaskInputLocations ( 
	fileSystem As FileSystemClient,
	path As String,
	stageId As String
) As IList(Of String())
public:
static IList<array<String^>^>^ ReadTaskInputLocations(
	FileSystemClient^ fileSystem, 
	String^ path, 
	String^ stageId
)
static member ReadTaskInputLocations : 
        fileSystem : FileSystemClient * 
        path : string * 
        stageId : string -> IList<string[]> Parameters
- fileSystem  FileSystemClient
 - The file system to read the locations from.
 - path  String
 - The path of the directory containing the locations file.
 - stageId  String
 - The ID of the stage whose task input locations to read.
 
Return Value
IListStringA list of input locations for each task.
See Also