  | TaskInputUtilityReadTaskInput Method | 
            Reads the task input for the specified split.
            
Namespace: Ookii.Jumbo.Jet.IOAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static ITaskInput ReadTaskInput(
	FileSystemClient fileSystem,
	string path,
	string stageId,
	int splitIndex
)
Public Shared Function ReadTaskInput ( 
	fileSystem As FileSystemClient,
	path As String,
	stageId As String,
	splitIndex As Integer
) As ITaskInput
public:
static ITaskInput^ ReadTaskInput(
	FileSystemClient^ fileSystem, 
	String^ path, 
	String^ stageId, 
	int splitIndex
)
static member ReadTaskInput : 
        fileSystem : FileSystemClient * 
        path : string * 
        stageId : string * 
        splitIndex : int -> ITaskInput Parameters
- fileSystem  FileSystemClient
 - The file system containing the splits file.
 - path  String
 - The path of the directory containing the splits file.
 - stageId  String
 - The ID of the stage whose input to read.
 - splitIndex  Int32
 - The index of the split.
 
Return Value
ITaskInputThe task input.
See Also