Skip to content

SharedResource

jdubs edited this page Oct 21, 2016 · 1 revision

Overview

Method to assign a resource from the Four51 shared resource feature.

Source Code

internal static Variable SharedResource(object variable, object sharedPath)
{
	try
	{
		return SharedUNCPath + (string)sharedPath + "\\" + resource;
	}
	catch (Pageflex.Scripting.Exceptions.VariableNotFoundException ex)
	{
		throw new Four51ActionsException(ex.Message);
	}
}

Clone this wiki locally