Click or drag to resize
IRelationshipInfoProviderGetAsync Method (Int32, Int32, Int32, NullableCancellationToken)
Asynchronously gets an instance of the RelationshipInfo binding structure.

Namespace: CMS.DocumentEngine
Assembly: CMS.DocumentEngine (in CMS.DocumentEngine.dll) Version: 13.0.131
Syntax
C#
Task<RelationshipInfo> GetAsync(
	int leftNodeId,
	int rightNodeId,
	int relationshipNameId,
	Nullable<CancellationToken> cancellationToken = null
)

Parameters

leftNodeId
Type: SystemInt32
ID of left node.
rightNodeId
Type: SystemInt32
ID of right node.
relationshipNameId
Type: SystemInt32
ID of relationship name.
cancellationToken (Optional)
Type: SystemNullableCancellationToken
The cancellation instruction.

Return Value

Type: TaskRelationshipInfo
Returns a task returning either an instance of RelationshipInfo corresponding to given identifiers or null.
See Also