Пример #1
0
 void Events_EventUserConnected(EServ.Interface.ClientInfo ci)
 {
     LogInvoke(0, string.Format("EventUserConnected: {0}", ci.ClientIp));
 }
Пример #2
0
 void Events_EventReceiveTimeout(EServ.Interface.ClientInfo ci, int ReceivedBytes, int TimeoutSeconds)
 {
     LogInvoke(0, string.Format("EventReceiveTimeout: {0} timeout={1}", ci.ClientIp, TimeoutSeconds));
 }
Пример #3
0
 void Events_EventReceiving(EServ.Interface.ClientInfo ci, int ReceivedBytes)
 {
     LogInvoke(0, string.Format("EventReceiving: {0} bytes={1}", ci.ClientIp, ReceivedBytes));
 }
Пример #4
0
 void Events_EventReceiveTerminated(EServ.Interface.ClientInfo ci, int ReceivedBytes, EServ.Interface.enumReceiveErrorType Reason)
 {
     LogInvoke(0, string.Format("EventReceiveTerminated: {0} reason={1}", ci.ClientIp, Reason.ToString()));
 }
Пример #5
0
 void Events_EventReceived(EServ.Interface.ClientInfo ci, EServ.Interface.RequestInfo ri, EServ.Data.DbConnections dbs, int ReceivedBytes, ref Result res, ref bool cancel)
 {
     Log(0, string.Format("EventReceived: {0} usr={1} req={2} fid={3} fnc={4} bytes={5}", ci.ClientIp, ri.UserNo, ri.RequestNo, ri.FileId, ri.FunctionNo, ri.DataSize));
 }