Codeunit 4312 Agent Session, source in 26
Source26272829metadata in 26
src/System Application/App/Agent/Interaction/AgentSession.Codeunit.al39 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Agents;
codeunit 4312 "Agent Session"
{
InherentEntitlements = X;
InherentPermissions = X;
/// <summary>
/// Checks if the current session is an agent session.
/// </summary>
/// <param name="ActiveAgentMetadataProvider">Returns the type of the active agent</param>
/// <returns>
/// True if the current session is an agent session, false otherwise.
/// </returns>
[Scope('OnPrem')]
procedure IsAgentSession(var ActiveAgentMetadataProvider: Enum "Agent Metadata Provider"): Boolean
var
AgentSessionImpl: Codeunit "Agent Session Impl.";
begin
exit(AgentSessionImpl.IsAgentSession(ActiveAgentMetadataProvider));
end;
/// <summary>
/// Get the agent task ID related to the current session, if any, -1 otherwise.
/// </summary>
/// <returns>The agent task ID, if any, -1 otherwise.</returns>
[Scope('OnPrem')]
procedure GetCurrentSessionAgentTaskId(): BigInteger
var
AgentSessionImpl: Codeunit "Agent Session Impl.";
begin
exit(AgentSessionImpl.GetCurrentSessionAgentTaskId());
end;
}