I'm just starting with trying to write a plug-in for RMS, and am having an issue. In the c# code below, CurrentEntryKey always returns an empty string. I want to know which entry is currently being added, but without that property working, I can't seem to do that. Any ideas why that particular property doesn't work?
[ComVisible( true )]
[ClassInterface( ClassInterfaceType.None )]
public class AddItemHook : IProcessSession
{
public bool Process( QSRules.SessionClass session )
{
//this statement always results in ""
var currentItemKey = session.Transaction.get_CurrentEntryKey();
return true;
}
}
Thanks
-Nathan
*This post is locked for comments