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; }
internal DccChatEventArgs(DccConnection dcc, string messageLine) : base(dcc) { char[] whiteSpace = { ' ' }; this._Message = messageLine; this._MessageArray = messageLine.Split(new char[] { ' ' }); }
internal DccChatEventArgs(DccConnection dcc, string messageLine) : base(dcc) { Message = messageLine; MessageArray = messageLine.Split(' '); }
internal DccEventArgs(DccConnection dcc) => Dcc = dcc;