How to convert .SecureString to String ?
You can do as below
STRINGVARIABLE = new System.Net.NetworkCredential(string.Empty, secureStr).Password
Mark as solution if this helps you
Thanks
@rpalearner007
Use a assign activity and please pass the following :
String plainStr = new System.Net.NetworkCredential(string.Empty, secureStr).Password
By doing so, secure string will be converted to string.