CachedIniFileSaveValue Method (String, String, String, String) |
Saves a value to an INI file by calling Win32 API function WritePrivateProfileString. If call fails and exception
is thrown.
Namespace:
Arsenal.ImageMounter.IO
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public static void SaveValue(
string FileName,
string SectionName,
string SettingName,
string Value
)
Public Shared Sub SaveValue (
FileName As String,
SectionName As String,
SettingName As String,
Value As String
)
public:
static void SaveValue(
String^ FileName,
String^ SectionName,
String^ SettingName,
String^ Value
)
static member SaveValue :
FileName : string *
SectionName : string *
SettingName : string *
Value : string -> unit
Parameters
- FileName
- Type: SystemString
Name and path of INI file where to save value - SectionName
- Type: SystemString
Name of INI file section where to save value - SettingName
- Type: SystemString
Name of value to save - Value
- Type: SystemString
Value to save
See Also