Exemplo n.º 1
0
 internal DccChatEventArgs(DccConnection dcc, string messageLine)
     : base(dcc)
 {
     char[] whiteSpace = {' '};
     this._Message = messageLine;
     this._MessageArray = messageLine.Split(new char[] {' '});
 }
Exemplo n.º 2
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="dccClient"></param>
 /// <param name="stream">If there are multiple streams on a DCC (a channel DCC) this identifies the stream</param>
 internal DccEventArgs(DccConnection dcc)
 {
     this._dcc = dcc;
 }
Exemplo n.º 3
0
 internal DccSendRequestEventArgs(DccConnection dcc, string filename, long filesize) : base(dcc)
 {
     this._Filename = filename;
     this._Filesize = filesize;
 }
Exemplo n.º 4
0
 internal DccSendEventArgs(DccConnection dcc,  byte[] package, int packageSize) : base(dcc)
 {
     this._Package = package;
     this._PackageSize = packageSize;
 }        
 internal DccChatEventArgs(DccConnection dcc, string messageLine) : base(dcc)
 {
     char[] whiteSpace = { ' ' };
     this._Message      = messageLine;
     this._MessageArray = messageLine.Split(new char[] { ' ' });
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="dccClient"></param>
 /// <param name="stream">If there are multiple streams on a DCC (a channel DCC) this identifies the stream</param>
 internal DccEventArgs(DccConnection dcc)
 {
     this._dcc = dcc;
 }
 internal DccSendRequestEventArgs(DccConnection dcc, string filename, long filesize) : base(dcc)
 {
     this._Filename = filename;
     this._Filesize = filesize;
 }
 internal DccSendEventArgs(DccConnection dcc, byte[] package, int packageSize) : base(dcc)
 {
     this._Package     = package;
     this._PackageSize = packageSize;
 }
Exemplo n.º 9
0
 internal DccChatEventArgs(DccConnection dcc, string messageLine) : base(dcc)
 {
     Message      = messageLine;
     MessageArray = messageLine.Split(' ');
 }
Exemplo n.º 10
0
 internal DccEventArgs(DccConnection dcc) => Dcc = dcc;