Function getSessionContext

Retrieves the session context for the current execution environment.

This function constructs and returns the session context, including the client ID, process ID, and available method and execution contexts. It logs the operation if enabled, checks for active contexts using the MethodContextService and ExecutionContextService, and derives the client ID from either context if available. Unlike other functions, it does not perform explicit validation or require a clientId parameter, as it relies on the current execution environment's state.

If an unexpected error occurs while accessing the method or execution context services (though typically none are thrown in this implementation).

const context = await getSessionContext();
console.log(context); // Outputs { clientId: "client-123", processId: "uuid-xyz", methodContext: {...}, executionContext: {...} }
  • Returns Promise<ISessionContext>

    A promise that resolves to an object containing the session context, including clientId, processId, methodContext, and executionContext.