quick question for the c# folks. I'm marking my cl...
# general
q
quick question for the c# folks. I'm marking my class property with an
[Output]
attribute but noticed in some cases it saves it as a secret but also as plain text.
Is there any way to control this? I'm looking to save it as plain text
e
Outputs track their "secretness" so if any secret Output value is used to make a new output value it too will be secret. If you pass the output to
Output.Unsecret
it will remove that tracking bit.
q
Perfect, thanks!