AutomationClientWebFormCallTryParseValueFromResponse Method (String, Int32) |
Tries to parse a 32 bit integer value from the
Response.
Namespace: com.softwarekey.Client.Compatibility.ProtectionPLUS4Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntaxpublic bool TryParseValueFromResponse(
string searchString,
out int value
)
Public Function TryParseValueFromResponse (
searchString As String,
<OutAttribute> ByRef value As Integer
) As Boolean
public:
bool TryParseValueFromResponse(
String^ searchString,
[OutAttribute] int% value
)
Parameters
- searchString
- Type: SystemString
The search string used to locate the value in the Response. - value
- Type: SystemInt32
The parsed value.
Return Value
Type:
BooleanReturns true if the value was successfully parsed. If false was returned, check the
LastException property for a possible cause.
See Also