コード例 #1
0
ファイル: EventArgs.cs プロジェクト: djkaty/SmartIrc4net
 internal DccChatEventArgs(DccConnection dcc, string messageLine)
     : base(dcc)
 {
     char[] whiteSpace = {' '};
     this._Message = messageLine;
     this._MessageArray = messageLine.Split(new char[] {' '});
 }
コード例 #2
0
ファイル: EventArgs.cs プロジェクト: ByteCat/RedChat
 /// <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;
 }
コード例 #3
0
ファイル: EventArgs.cs プロジェクト: ByteCat/RedChat
 internal DccSendRequestEventArgs(DccConnection dcc, string filename, long filesize) : base(dcc)
 {
     this._Filename = filename;
     this._Filesize = filesize;
 }
コード例 #4
0
ファイル: EventArgs.cs プロジェクト: ByteCat/RedChat
 internal DccSendEventArgs(DccConnection dcc,  byte[] package, int packageSize) : base(dcc)
 {
     this._Package = package;
     this._PackageSize = packageSize;
 }        
コード例 #5
0
 internal DccChatEventArgs(DccConnection dcc, string messageLine) : base(dcc)
 {
     char[] whiteSpace = { ' ' };
     this._Message      = messageLine;
     this._MessageArray = messageLine.Split(new char[] { ' ' });
 }
コード例 #6
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;
 }
コード例 #7
0
 internal DccSendRequestEventArgs(DccConnection dcc, string filename, long filesize) : base(dcc)
 {
     this._Filename = filename;
     this._Filesize = filesize;
 }
コード例 #8
0
 internal DccSendEventArgs(DccConnection dcc, byte[] package, int packageSize) : base(dcc)
 {
     this._Package     = package;
     this._PackageSize = packageSize;
 }
コード例 #9
0
 internal DccChatEventArgs(DccConnection dcc, string messageLine) : base(dcc)
 {
     Message      = messageLine;
     MessageArray = messageLine.Split(' ');
 }
コード例 #10
0
 internal DccEventArgs(DccConnection dcc) => Dcc = dcc;