Hi @CharlieSchafer-2122,
You were not able to set the parameters of a DelimitedTextDataSet using the property 'Dataset.Parameters' as this property is read-only. So, in order to add parameters to your dataset either you need to pass the parameters in the constructor as described here or you need to use delimitedDataset.Parameters.Add function in your code. For example - below code adds folderPath and fileName property to a dataset using .Add function.
DelimitedTextDataset delimitedDataset = new(lsRef);
delimitedDataset.Parameters.Add("folderPath", new ParameterSpecification(ParameterType.String));
delimitedDataset.Parameters.Add("fileName", new ParameterSpecification(ParameterType.String));
DatasetResource dsr = new(delimitedDataset);
DatasetCreateOrUpdateDatasetOperation dsOperation = dsClient.StartCreateOrUpdateDataset(dataSetName, dsr);
Azure.Response<DatasetResource> createdDataset = await dsOperation.WaitForCompletionAsync();
Result:
Hope this helps.
Please let me know if you have any questions.
Thanks
Saurabh
----------
Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community.