Saves an integer to the settings section.
[Visual Basic]Overloads Public Sub SaveSetting( _
ByVal name As String, _
ByVal data As Integer, _
ByVal saveData As Boolean _
)
[C#]
public void SaveSetting(
string name,
int data,
bool saveData
);
Parameters
- name
- The key of the setting.
- data
- The integer data of the setting.
- saveData
- True if the data has to be written to the XML file, false otherwise.
See Also
ProxyConfig Class | ProxyConfig Members | Org.Mentalis.Proxy Namespace | ProxyConfig.SaveSetting Overload List