コード例 #1
0
ファイル: Tool.cs プロジェクト: radtek/IT_Monitor
        /// <summary>
        /// 解密配置文件
        /// </summary>
        public void Decryptconfig()
        {
            config config1 = new config();

            config1.Decryptconfig();
        }
コード例 #2
0
ファイル: Tool.cs プロジェクト: radtek/IT_Monitor
        /// <summary>
        /// 加密配置文件
        /// </summary>
        public void Encryptconfig()
        {
            config config1 = new config();

            config1.Encryptconfig();
        }
コード例 #3
0
ファイル: Tool.cs プロジェクト: weicheng1104/IT_Monitor
        /// <summary>
        /// 加密配置文件
        /// </summary>
        public void Encryptconfig()
        {
            config config1 = new config();
            config1.Encryptconfig();
 
        }
コード例 #4
0
ファイル: Tool.cs プロジェクト: weicheng1104/IT_Monitor
 /// <summary>
 /// 解密配置文件
 /// </summary>
 public void Decryptconfig()
 {
     config config1 = new config();
     config1.Decryptconfig();
 }
コード例 #5
0
ファイル: Tool.cs プロジェクト: weicheng1104/IT_Monitor
        public string[] readconfig(string node)
        {
            config config1 = new config();
            string[] value = config1.readparameter(node);
            return value;

        }