Download File

From Starfish ETL
Revision as of 19:48, 14 November 2017 by Ahoekstra (talk | contribs)
Jump to navigation Jump to search

External Assemblies

To download a file 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()
{
	return new System.Net.WebClient().DownloadData("https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png");
}

C# Script to Download file as a Base64 string

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