public static void TaskFunction(BoxedValue options) { var paths = options.ComplexProperty("Paths").ToArray<string>(); var numberOfRetries = options.SimpleProperty<double>("NumberOfRetries"); System.Console.WriteLine(numberOfRetries); TaskFunction(paths); }