【发布时间】:2023-03-11 20:36:02
【问题描述】:
这些行会导致 godaddy 帐户中的安全异常。有什么建议如何重写以使其正常工作?
File.Delete(PropsFileName); // Clean up
TextWriter tw = new StreamWriter(PropsFileName); // Create & open the file
tw.WriteLine(DateTime.Now); // Write the date for reference
tw.WriteLine(TokenLine); // Write the BinarySecurityToken
tw.WriteLine(ConvIdLine); // Write the ConversationId
tw.WriteLine(ipccLine); // Write the IPCC
tw.Close();
谢谢!
正在将信息写入临时目录中的 session.properties 变量。
【问题讨论】: