GetSingletonExtensions Method

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Gets a readonly collection of singleton extensions

Namespace: Microsoft.Activities.Extensions
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
public static ICollection<Object> GetSingletonExtensions(
	this WorkflowApplication workflowApplication
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function GetSingletonExtensions ( _
	workflowApplication As WorkflowApplication _
) As ICollection(Of Object)
Visual C++
public:
[ExtensionAttribute]
static ICollection<Object^>^ GetSingletonExtensions(
	WorkflowApplication^ workflowApplication
)

Parameters

workflowApplication
Type: System.Activities..::..WorkflowApplication
The workflow application.

Return Value

a readonly collection of singleton extensions

Usage Note

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

See Also