ACR_ServerCommunicator.GameWorldManager.OnUnsupportedIPCEventType C# (CSharp) Method

OnUnsupportedIPCEventType() private method

This method is called when an unsupported IPC event code is received.
private OnUnsupportedIPCEventType ( int RecordId, int P0, int P1, int P2, int EventType, string P3 ) : void
RecordId int Supplies the associated record ID.
P0 int Supplies the P0 parameter.
P1 int Supplies the P1 parameter.
P2 int Supplies the P2 parameter.
EventType int Supplies the IPC event type.
P3 string Supplies the P3 parameter.
return void
        private void OnUnsupportedIPCEventType(int RecordId, int P0, int P1, int P2, int EventType, string P3)
        {
            EnqueueEvent(new UnsupportedIPCRequestEvent(RecordId, P0, P1, P2, EventType, P3));
        }