I'm having trouble implementing the WrInputTransformationArguments class.
in other words, I want imitate the
TransformInput(WrInputTransformationArguments args) method and assign its content to a WrScript object.
Code:
WrScript script = new WrScript();
script.ScriptType = WrScriptType.InputDataScript;
script.ScriptLanguage = WebRipperUtils.WrScriptLanguageEnum.Csharp;
content.Scripts.GetScript(WrScriptType.InputDataScript).Assign(script);
content.Scripts[0].IsEnabled = true;
WrInputTransformationArguments trans = new WrInputTransformationArguments (???????)
thanks