CachedIniFileSaveValue Method (String, String) |
Saves a current value from this object to INI file that this object last loaded values from, either through constructor
call with filename parameter or by calling Load method with filename parameter.
Operation is carried out 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 void SaveValue(
string SectionName,
string SettingName
)
Public Sub SaveValue (
SectionName As String,
SettingName As String
)
public:
void SaveValue(
String^ SectionName,
String^ SettingName
)
member SaveValue :
SectionName : string *
SettingName : string -> unit
Parameters
- SectionName
- Type: SystemString
Name of INI file section where to save value - SettingName
- Type: SystemString
Name of value to save
See Also