Gets all named elements from given story fragment.

Namespace: FirstFloor.Documents.DocumentStructures
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public static IEnumerable<string> GetAllNamedElements(
	this StoryFragment storyFragment
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function GetAllNamedElements ( _
	storyFragment As StoryFragment _
) As IEnumerable(Of String)
Visual C++
[ExtensionAttribute]
public:
static IEnumerable<String^>^ GetAllNamedElements(
	StoryFragment^ storyFragment
)

Parameters

storyFragment
Type: FirstFloor.Documents.DocumentStructures..::..StoryFragment
The story fragment.

Return Value

A list of element names found in given story fragment.

Usage Note

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

See Also