Reads an integer from the settings section.
[Visual Basic]Overloads Public Function ReadInt( _
ByVal name As String, _
ByVal def As Integer _
) As Integer
[C#]
public int ReadInt(
string name,
int def
);
Parameters
- name
- The key to read from.
- def
- The default integer to return.
Return Value
The integer that corresponds with the specified key, or def
if the specified key was not found in the collection.
See Also
ProxyConfig Class | ProxyConfig Members | Org.Mentalis.Proxy Namespace | ProxyConfig.ReadInt Overload List