InteractionExtensions.CreateInteractionUse Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Create a new InteractionUse covering a collection of lifelines.
Namespace: Microsoft.VisualStudio.Uml.Extensions
Assembly: Microsoft.VisualStudio.Uml.Extensions (in Microsoft.VisualStudio.Uml.Extensions.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function CreateInteractionUse ( _
parent As IInteraction, _
insertionPointsOnLifelines As IEnumerable(Of IInsertionPoint) _
) As IInteractionUse
'Usage
Dim parent As IInteraction
Dim insertionPointsOnLifelines As IEnumerable(Of IInsertionPoint)
Dim returnValue As IInteractionUse
returnValue = parent.CreateInteractionUse(insertionPointsOnLifelines)
public static IInteractionUse CreateInteractionUse(
this IInteraction parent,
IEnumerable<IInsertionPoint> insertionPointsOnLifelines
)
[ExtensionAttribute]
public:
static IInteractionUse^ CreateInteractionUse(
IInteraction^ parent,
IEnumerable<IInsertionPoint^>^ insertionPointsOnLifelines
)
static member CreateInteractionUse :
parent:IInteraction *
insertionPointsOnLifelines:IEnumerable<IInsertionPoint> -> IInteractionUse
public static function CreateInteractionUse(
parent : IInteraction,
insertionPointsOnLifelines : IEnumerable<IInsertionPoint>
) : IInteractionUse
Parameters
- parent
Type: Microsoft.VisualStudio.Uml.Interactions.IInteraction
The current Interaction object.
- insertionPointsOnLifelines
Type: System.Collections.Generic.IEnumerable<IInsertionPoint>
A collection of insertion points that will be covered by the new Interaction Use.
Return Value
Type: Microsoft.VisualStudio.Uml.Interactions.IInteractionUse
Newly created InteractinUse
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IInteraction. 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).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.