Parses a recurrence pattern from XML.

Namespace: Mindscape.SilverlightElements
Assembly: Mindscape.SilverlightElements (in Mindscape.SilverlightElements.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public static IRecurrencePattern ParseRecurrencePattern(
	this XElement xml
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function ParseRecurrencePattern ( _
	xml As XElement _
) As IRecurrencePattern
Visual C++
[ExtensionAttribute]
public:
static IRecurrencePattern^ ParseRecurrencePattern(
	XElement^ xml
)

Parameters

xml
Type: System.Xml.Linq..::..XElement
An XElement containing details of the recurrence pattern, as produced by the ToXml method.

Return Value

An IRecurrencePattern.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type XElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also