IRelationshipServiceGetDirectionalRelationships Method |
Gets the relationships between the specified primary structure and the specified referenced structure.
Namespace:
Dundas.BI.Data.Relationships
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (8.0.2.1001)
SyntaxIReadOnlyCollection<Relationship> GetDirectionalRelationships(
Guid structureId,
Guid referencedStructureId
)
Function GetDirectionalRelationships (
structureId As Guid,
referencedStructureId As Guid
) As IReadOnlyCollection(Of Relationship)
IReadOnlyCollection<Relationship^>^ GetDirectionalRelationships(
Guid structureId,
Guid referencedStructureId
)
abstract GetDirectionalRelationships :
structureId : Guid *
referencedStructureId : Guid -> IReadOnlyCollection<Relationship>
Parameters
- structureId
- Type: SystemGuid
The primary structure ID. - referencedStructureId
- Type: SystemGuid
The referenced structure ID.
Return Value
Type:
IReadOnlyCollectionRelationshipThe list of relationships.
Exceptions| Exception | Condition |
|---|
| ArgumentException | structureId or referencedStructureId is Empty. |
| NotFoundException | structureId or referencedStructureId does not exist. |
| NoPrivilegeException | The caller does not have permission to access the structure referenced by structureId or referencedStructureId. |
| InvalidSessionException | The caller context is not associated with a valid session. |
See Also