Hi I have developed a custom pipeline component for encryption and when I tried drag and drop from the pipeline toolbox to the encode stage its giving me an error.
‘Pipeline component load() method failed on IpersistPropertybag implementation’
my load method is
public
void Load(IPropertyBag propertyBag, int errorLog)
{
object strGnuPGEXE;
object strArguments;
object strTimeout;
propertyBag.Read(“GnuPGEXE”, out strGnuPGEXE, 1);
propertyBag.Read(
“Arguments”, out strArguments, 2);
propertyBag.Read(
“Timeout”, out strTimeout, 3);
}
can anyone please help to resolve this issue.
Thanks