 | ResourceReferenceValueTryParse Method |
Tries to parse to input string. String must be in the format "$(@ [Dll], [ResourceID])".
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntaxpublic static bool TryParse(
string value,
out ResourceReferenceValue resourceRef
)
Public Shared Function TryParse (
value As String,
<OutAttribute> ByRef resourceRef As ResourceReferenceValue
) As Boolean
public:
static bool TryParse(
String^ value,
[OutAttribute] ResourceReferenceValue^% resourceRef
)
Request Example
View SourceParameters
- value
- Type: SystemString
The input string value. - resourceRef
- Type: Microsoft.Win32.TaskSchedulerResourceReferenceValue
The resource reference to be returned. On failure, this value equals null.
Return Value
Type:
BooleanA new
ResourceReferenceValue instance on success or
null on failure.
See Also