Name: String;
The Name property returns a name of the operation on object to which this record corresponds.
Sub Main;
Var
MB: IMetabase;
MS: IMetabaseSecurity;
AL: IAuditLog;
ALogon: IAuditLogons;
Operat: IAuditOperations;
s: String;
Begin
MB:=MetabaseClass.Active;
MS:=MB.Security;
Al:=MS.OpenAuditLog;
ALogon:=AL.OpenLogons(False);
ALogon.Next;
Operat:=Al.OpenOperations(ALogon.Session);
s:=Operat.Name;
End Sub Main;
After executing the example the "s" variable contains a name of the last operation.
See also: