Get arguments of a process

Hi,

does someone know if it is possible to retrieve arguments of a process through a function or a method?
I am developing a log and I need to make a list of the arguments of the current process.

Thanks in advance

Hi,
Not sure we can do that as per my knowledge, Instead of that you can use add log field activity and add create the arguments there and this will help in understanding what are the arguments used.

Let us know if this helps.
Regards,
Pavan H

Thanks for your help.
I need to create a workflow that does only the managing of the log creation, passing the arguments of the process from which I’m invoking it.

Thank you so much

Hi @marica_licciardello

If you want to obtain the arguments list of a process,
you can try to parse xaml file by System.Xml.XmlReader.
Their infos be written in tag x:Members.
You can refer to the bellow snippet for XmlReader’s usage.
https://go.uipath.com/component/get-total-of-activities

ok thank you very much for your help! I’ll try this way