UmlExtensions.GetRelatedLinks<T> Method
Gets relationships of a specified type from or to this element.
Namespace: Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml
Assembly: Microsoft.VisualStudio.ArchitectureTools.Extensibility (in Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetRelatedLinks(Of T As IRelationship) ( _
element As IElement _
) As IEnumerable(Of T)
public static IEnumerable<T> GetRelatedLinks<T>(
this IElement element
)
where T : IRelationship
[ExtensionAttribute]
public:
generic<typename T>
where T : IRelationship
static IEnumerable<T>^ GetRelatedLinks(
IElement^ element
)
static member GetRelatedLinks :
element:IElement -> IEnumerable<'T> when 'T : IRelationship
JScript does not support generic types or methods.
Type Parameters
- T
IRelationship or one of its subtypes.
Parameters
- element
Type: Microsoft.VisualStudio.Uml.Classes.IElement
Return Value
Type: System.Collections.Generic.IEnumerable<T>
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IElement. 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.
See Also
Reference
Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml Namespace