UmlExtensions.GetReferences Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets the Reference objects linked to this element that have the given name.

Namespace:  Microsoft.VisualStudio.Uml.Extensions
Assembly:  Microsoft.VisualStudio.Uml.Extensions (in Microsoft.VisualStudio.Uml.Extensions.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetReferences ( _
    element As IElement, _
    name As String _
) As IEnumerable(Of IReference)
'Usage
Dim element As IElement
Dim name As String
Dim returnValue As IEnumerable(Of IReference)

returnValue = element.GetReferences(name)
public static IEnumerable<IReference> GetReferences(
    this IElement element,
    string name
)
[ExtensionAttribute]
public:
static IEnumerable<IReference^>^ GetReferences(
    IElement^ element, 
    String^ name
)
static member GetReferences : 
        element:IElement * 
        name:string -> IEnumerable<IReference> 
public static function GetReferences(
    element : IElement, 
    name : String
) : IEnumerable<IReference>

Parameters

  • name
    Type: System.String
    Name of IReference objects to be returned.

Return Value

Type: System.Collections.Generic.IEnumerable<IReference>
Collection of IReference objects linked to the element

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

See Also

Reference

UmlExtensions Class

UmlExtensions Members

Microsoft.VisualStudio.Uml.Extensions Namespace