ALFA.Database.ACR_LogEvent C# (CSharp) Метод

ACR_LogEvent() публичный Метод

Log an event to the database log.
public ACR_LogEvent ( uint Character, string EventName, string EventDescription, uint DM ) : void
Character uint Supplies an optional character that is /// associated with the log event, else OBJECT_INVALID if none.
EventName string Supplies the log event name.
EventDescription string Supplies the log event description. ///
DM uint Supplies an optional DM character that is /// associated with the log event, else OBJECT_INVALID if none.
Результат void
        public void ACR_LogEvent(uint Character, string EventName, string EventDescription, uint DM)
        {
            DemandInitialize();

            ACR_LogEvent_Method.Invoke(DBLibraryScript, new object[] { Character, EventName, EventDescription, DM });
        }