UmlExtensions.GetReferences Method
Get the IReferences of a given tag that are associated with 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 GetReferences ( _
element As IElement, _
name As String _
) As IEnumerable(Of IReference)
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
- element
Type: Microsoft.VisualStudio.Uml.Classes.IElement
name
Type: System.StringTag name of the IReferences to get.
Return Value
Type: System.Collections.Generic.IEnumerable<IReference>
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