 | TaskInputUtilityWriteTaskInputs Method |
Writes the task inputs.
Namespace: Ookii.Jumbo.Jet.IOAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static void WriteTaskInputs(
FileSystemClient fileSystem,
string path,
string stageId,
IEnumerable<ITaskInput> inputs
)
Public Shared Sub WriteTaskInputs (
fileSystem As FileSystemClient,
path As String,
stageId As String,
inputs As IEnumerable(Of ITaskInput)
)
public:
static void WriteTaskInputs(
FileSystemClient^ fileSystem,
String^ path,
String^ stageId,
IEnumerable<ITaskInput^>^ inputs
)
static member WriteTaskInputs :
fileSystem : FileSystemClient *
path : string *
stageId : string *
inputs : IEnumerable<ITaskInput> -> unit
Parameters
- fileSystem FileSystemClient
- The file system to write the inputs to.
- path String
- The path of the directory to write the output to.
- stageId String
- The ID of the stage that these inputs belong to.
- inputs IEnumerableITaskInput
- The inputs to write.
See Also