コード例 #1
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public string[] ReadStrList(string name)
 {
     return(Reg.ReadStrList(rootKey, appSubKey, name));
 }
コード例 #2
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public byte[] ReadByte(string name)
 {
     return(Reg.ReadByte(rootKey, appSubKey, name));
 }
コード例 #3
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public string ReadStr(string name)
 {
     return(Reg.ReadStr(rootKey, appSubKey, name));
 }
コード例 #4
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public int ReadInt(string name)
 {
     return(Reg.ReadInt(rootKey, appSubKey, name));
 }
コード例 #5
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public bool DeleteValue(string name)
 {
     return(Reg.DeleteValue(rootKey, appSubKey, name));
 }
コード例 #6
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public bool WriteByte(string name, byte[] data)
 {
     return(Reg.WriteByte(rootKey, appSubKey, name, data));
 }
コード例 #7
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public bool WriteStrList(string name, string[] values)
 {
     return(Reg.WriteStrList(rootKey, appSubKey, name, values));
 }
コード例 #8
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public bool WriteInt(string name, int value)
 {
     return(Reg.WriteInt(rootKey, appSubKey, name, value));
 }
コード例 #9
0
ファイル: Reg.cs プロジェクト: webstorage119/ThinVPN-Ultra
 public bool WriteStr(string name, string value)
 {
     return(Reg.WriteStr(rootKey, appSubKey, name, value));
 }