Download File

From Starfish ETL
Jump to navigation Jump to search

External Assemblies

To download a file in a C# scripted function, you must first go to the .NET Global section, and in the External Assemblies box, enter the following: System.dll,System.Net.dll

C# Script to Download file as a byte array

object ScriptedField()
{
	var url = "https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png";
	return new System.Net.WebClient().DownloadData(url);
}

C# Script to Download file as a Base64 string

object ScriptedField()
{
	var url = "https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png";
	return Convert.ToBase64String(new System.Net.WebClient().DownloadData(url));
}