Baseclass for all DccConnections
Beispiel #1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="dcc">If there are multiple streams on a DCC (a channel DCC) this identifies the stream</param>
 internal DccEventArgs(DccConnection dcc)
 {
     Dcc = dcc;
 }
Beispiel #2
0
 internal DccSendRequestEventArgs(DccConnection dcc, string filename, long filesize)
     : base(dcc)
 {
     Filename = filename;
     Filesize = filesize;
 }
Beispiel #3
0
 internal DccChatEventArgs(DccConnection dcc, string messageLine)
     : base(dcc)
 {
     Message = messageLine;
     MessageArray = messageLine.Split(new[] { ' ' });
 }
Beispiel #4
0
 internal DccSendEventArgs(DccConnection dcc, byte[] package, int packageSize)
     : base(dcc)
 {
     Package = package;
     PackageSize = packageSize;
 }