如何在c#中使用xml中的字符串作为字符串变量
本文关键字:字符串 变量 xml | 更新日期: 2023-09-27 18:04:32
嗨,我有一个有两个值的xml文件。
第一个值是Powershell的用户名第二个值是密码作为powershell
的securestring现在我想读取这些值并为变量string ps_user和SecureString ps_password设置这些值
我的问题是现在我如何使用SecureString值。
here my xml:
<?xml version="1.0" encoding="iso-8859-1"?>
<Credential>
<User value="tarasov" />
<SecurePassword value="0d08c9ddf0004800000a0000340b62f9d614" />
</Credential>
这里是我的c#代码:
private string GetPowershellCredentials(string path, string attribute)
{
XDocument document;
string value = string.Empty;
try
{
document = XDocument.Load(path);
value = document.Element("Credential").Element(attribute).Attribute("value").Value;
return value;
}
catch (Exception)
{
return null;
}
finally
{
document = null;
}
}
例子:
> string path = Server.MapPath("~/App_Data/Powershell_credentials.xml");
> string ps_user = GetPowershellCredentials(path, "User"); // It works
> SecureString ps_password = GetPowershellCredentials(path,"SecurePassword"); // this not :((
我该怎么做?
Ist因为你的GetPowershellCredentials返回一个字符串。这不能自动转换。如果你需要一个安全字符串,你可以像这样使用:
public static SecureString ToSecureString(string source)
{
if (string.IsNullOrWhiteSpace(source))
return null;
else
{
SecureString result = new SecureString();
foreach (char c in source.ToCharArray())
result.AppendChar(c);
return result;
}
}
:
SecureString ps_password = ToSecureString(GetPowershellCredentials(path, "SecurePassword"));