English | 日本語
Home > Merge > Merge for Windows > Documentation Contents > IHostConfig Interface

IHostConfig Interface

This interface is implemented by Merge and enables a plugin file system component to store/restore configuration information. File system components can store/restore named values. Names are specific to each file system component and cannot be read/written by other file system components.

Properties

Double

IDL [propget] HRESULT Double([in] BSTR strKeyName, [out, retval] double* pValue)
[propput] HRESULT Double([in] BSTR strKeyName, [in] double newValue)
.NET Double get_Double(String strKeyName)
void set_Double(String strKeyName, Double newValue)
VB6 Double(strKeyName As String) As Double

Provides read/write access to a named double (floating point) value.

The property is read/write.

Arguments

Long

IDL [propget] HRESULT Long([in] BSTR strKeyName, [out, retval] long* pValue)
[propput] HRESULT Long([in] BSTR strKeyName, [in] long newValue)
.NET Int32 get_Long(String strKeyName)
void set_Long(String strKeyName, Int32 newValue)
VB6 Long(strKeyName As String) As Long

Provides read/write access to a named long (signed 32-bit) value.

The property is read/write.

Arguments

String

IDL [propget] HRESULT String([in] BSTR strKeyName, [out, retval] BSTR* pValue)
[propput] HRESULT String([in] BSTR strKeyName, [in] BSTR newValue)
.NET String get_String(String strKeyName)
void set_String(String strKeyName, String newValue)
VB6 String(strKeyName As String) As String

Provides read/write access to a named string value.

The property is read/write.

Arguments