Editar

Partilhar via


close (app profile manager)

Closes a session.

Note

The Home session cannot be closed.

Syntax

Microsoft.Apm.getFocusedSession().close(); Microsoft.Apm.getSession(sessionId).close();

Return value

None.

Example

const session = Microsoft.Apm.getFocusedSession();
if (session.canClose) {
	session.close();
}