ConnectorStateRepositoryGetConnectorStateByEndpointId Method

Gets the connector state associated with the specified endpoint.

Definition

Namespace: MobileTrack.DataContainers.Repositories
Assembly: MobileTrack.DataContainers (in MobileTrack.DataContainers.dll) Version: 0.8+34f1bbd8dc6b32752cfce829cbed66e15113d7ba
internal Task<ConnectorStateDto?> GetConnectorStateByEndpointId(
	Guid companyId,
	Guid endpointId,
	CancellationToken cancellationToken = default
)

Parameters

companyId  Guid
ID of the company the endpoint is associated with.
endpointId  Guid
The ID of the endpoint.
cancellationToken  CancellationToken  (Optional)
A cancellation token.

Return Value

TaskConnectorStateDto
The connector state, or if it was not found.

See Also