私のプロジェクトでは、Device
オブジェクトを保存および取得するためのxmlファイルがあり、ユーザーが手動ではなくアプリケーションによってのみxmlファイルに追加または削除できるようにしたいので、何らかの形式のデータをストーリー化する必要がありますユーザーはasp.netのviewStateのようにそれを理解できませbase64
ん他の何か
私の質問は、データをxmlファイルに保存する方法ですが、ユーザーが何が書かれているのか理解できないようにしたいです
これは私のデバイスクラスです
public class Device
{
public string Username { get; set; }
public string AgentName { get; set; }
public string Password { get; set; }
public string Domain { get; set; }
public string PeerURI { get; set; }
public string SipURI { get; set; }
public string FQDN { get; set; }
public Enums.DeviceType Type { get; set; }
public Enums.ServerTransportType TransportType { get; set; }
public bool IsInitialized { get; set; }
}
これは私のxmlファイルです
<?xml version="1.0" encoding="utf-8"?>
<settings>
<username>foo</username>
<AgentName>foo1</AgentName>
<password>foo2</password>
<domain>go</domain>
<peerUri>140.242.250.200</peerUri>
<sipUri>sip:xxx@xxxxx.com</sipUri>
<fqdn>ff.go.xxxx.com</fqdn>
<type>2</type>
<transportType>2</transportType>
</settings>