How to bind a type secure string argument without using asset via config file
@Sana_Afreen Did you mean to get the Password from Config File?
yes true
Type secure is used for password. Suppose you created a process in orchestrator and you want to provide a credential n give one username n password u can use secure typeinto for password

How to convert it?
not using orchestrator
@Sana_Afreen- you can uese below to convert to securestring -
(new System.Net.NetworkCredential(“”,in_oamPassword)).SecurePassword
2 Likes
@Sana_Afreen, in this case you may want to change DataType of in_password variable to String instead of SecureString
Cheers
1 Like