Ejemplo n.º 1
0
 /// <summary>
 /// Generates a "User Authentication" logout event in the audit log, according to DICOM Supplement 95.
 /// </summary>
 /// <param name="username">The username or asserted username of the account that was logged out.</param>
 /// <param name="authenticationServer">The authentication server against which the operation was performed.</param>
 /// <param name="eventResult">The result of the operation.</param>
 /// <param name="sessionId">The ID of the session that is being logged out.</param>
 public static void LogLogout(string username, string sessionId, EventSource authenticationServer, EventResult eventResult)
 {
     AuditLogHelper.LogLogout(username, sessionId, authenticationServer, eventResult);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Generates a "User Authentication" logout event in the audit log, according to DICOM Supplement 95.
 /// </summary>
 /// <param name="username">The username or asserted username of the account that was logged out.</param>
 /// <param name="eventResult">The result of the operation.</param>
 /// <param name="sessionId">The ID of the session that is being logged out.</param>
 public static void LogLogout(string username, string sessionId, EventResult eventResult)
 {
     AuditLogHelper.LogLogout(username, sessionId, eventResult);
 }