Parse an input string of notification information and return a list of JobNotification. An input string can be a comma-separated list of email addresses, like this: "foo@microsoft.com, bar@microsoft.com, Foo.Bar@microsoft.com". All these addresses will be return in a list comprising a single JobNotification with those addresses. In the future, we hope to support a format like: "bar@microsoft.com, sms:555-1234, foo@microsoft.com, sms: 555-9876" So then the returned list will have two JobNotification objects, one for Email and another one for SMS.

Namespace: VcClient
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public static List<JobNotification> ParseNotificationString(
	string input
)
Visual Basic
Public Shared Function ParseNotificationString ( _
	input As String _
) As List(Of JobNotification)
Visual C++
public:
static List<JobNotification^>^ ParseNotificationString(
	String^ input
)

Parameters

input
Type: String
A comma-separated list of email addresses

Return Value

A list of JobNotification

See Also