You can store it as a secure string as well as password in assets.
But in your workflow you can convert secure string into plain string using the following expression.
String plainString = new System.Net.NetworkCredential(string.Empty, secureString).Password
@bmildh - Use the “GetCredential” activity, and create a variable of type SecureString and use that to securely store the password, then, use the Activity called “TypeSecure” which consumes a SecureString and securely outputs text.
Yes, I know, that would have worked if only there was an actual textbox to type into. In this case, I’m using the Get Imap Messages activity and It’s property Logon.Password, that happens to be of type String.