| TriggerReaderTryReadString Method |
[This is preliminary documentation and is subject to change.]
Tries the read a string from the trigger.
Namespace:
Monkeyspeak
Assembly:
Monkeyspeak (in Monkeyspeak.dll) Version: 7.0.10.28723 (7.0.10.28723)
Syntax public bool TryReadString(
out string str,
bool processVariables = true
)
Public Function TryReadString (
<OutAttribute> ByRef str As String,
Optional processVariables As Boolean = true
) As Boolean
public:
bool TryReadString(
[OutAttribute] String^% str,
bool processVariables = true
)
member TryReadString :
str : string byref *
?processVariables : bool
(* Defaults:
let _processVariables = defaultArg processVariables true
*)
-> bool
Parameters
- str
- Type: SystemString
The string. - processVariables (Optional)
- Type: SystemBoolean
if set to true [process variables].
Return Value
Type:
Booleantrue on success; false otherwise
See Also