ReminderTryParse Method (String, IListReminder) |
Creates a list of reminders from their string representation.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic static bool TryParse(
string input,
out IList<Reminder> parsedReminders
)
Public Shared Function TryParse (
input As String,
<OutAttribute> ByRef parsedReminders As IList(Of Reminder)
) As Boolean
public:
static bool TryParse(
String^ input,
[OutAttribute] IList<Reminder^>^% parsedReminders
)
static member TryParse :
input : string *
parsedReminders : IList<Reminder> byref -> bool
Parameters
- input
- Type: SystemString
The string to parse. - parsedReminders
- Type: System.Collections.GenericIListReminder
Output parameter that contains the list of reminders if the
parsing succeeded or null (Nothing in Visual Basic) if the parsing failed.
Return Value
Type:
BooleanTrue if
input was parsed successfully, false otherwise.
See Also