OpenOperations(Session: Integer): IAuditOperations;
OpenOperations(Session: uinteger): Prognoz.Platform.Interop.Metabase.IAuditOperations;
Session. Session number.
The OpenOperations method returns the list of operations that were performed in the repository, in the linear form.
To get information about connections with repository, use the IAuditLog.OpenLogons property.
To execute the example, add a link to the Metabase system assembly.
Sub UserProc;
Var
MB: IMetabase;
MS: IMetabaseSecurity;
AL: IAuditLog;
ALogs: IAuditLogons;
AOperat: IAuditOperations;
s: Array[0..10] Of String;
i: Integer;
Lic: Object;
Begin
MB := MetabaseClass.Active;
// Get license to work with security manager
Lic := MB.RequestLicense(UiLicenseFeatureType.Adm);
MS := MB.Security;
// Open access protocol
AL := MS.OpenAuditLog;
// Disable using of access protocol filter
ALogs := AL.OpenLogons(False);
// Create list of operations
AOperat := AL.OpenOperations(ALogs.Session);
// Display numbers of current session to the console
Debug.WriteLine("Session " + ALogs.Session.ToString + ": ");
For i := 0 To 9 Do
s[i] := AOperat.Name;
Debug.WriteLine(s[i]);
AOperat.Next;
End For;
// Check in license
Lic := Null;
End Sub UserProc;
Imports Prognoz.Platform.Interop.ForeSystem;
…
Public Shared Sub Main(Params: StartParams);
Var
MB: IMetabase;
MS: IMetabaseSecurity;
AL: IAuditLog;
ALogs: IAuditLogons;
AOperat: IAuditOperations;
s: Array[0..10] Of String;
i: Integer;
Lic: Object;
Begin
MB := Params.Metabase;
// Get license to work with security manager
Lic := MB.RequestLicense(UiLicenseFeatureType.lftAdm);
MS := MB.Security;
// Open access protocol
AL := MS.OpenAuditLog();
// Disable using filter of access protocol
ALogs := AL.OpenLogons(False);
// Create list of operations
AOperat := AL.OpenOperations(ALogs.Session);
// Display numbers of current session to console
System.Diagnostics.Debug.WriteLine("Session " + ALogs.Session.ToString() + ": ");
For i := 0 To 9 Do
s[i] := AOperat.Name;
System.Diagnostics.Debug.WriteLine(s[i]);
AOperat.Next();
End For;
// Check in license
Lic := Null;
End Sub;
After executing this example the console displays names of the last ten operations on objects of the current repository session.
See also: