コード例 #1
0
ファイル: ToParser.cs プロジェクト: mslot/IRCSharp
 public ToParser(IRCParserContext context)
 {
     _context = context;
 }
コード例 #2
0
ファイル: IRCQueryParser.cs プロジェクト: mslot/IRCSharp
 private IRCQueryParser()
 {
     Context = new IRCParserContext();
     Context.CurrentState = new PrefixParser(Context);
 }
コード例 #3
0
ファイル: CommandParser.cs プロジェクト: mslot/IRCSharp
 public CommandParser(IRCParserContext context)
 {
     _context = context;
     _line = _context.Line;
 }
コード例 #4
0
ファイル: FromParser.cs プロジェクト: mslot/IRCSharp
 public FromParser(IRCParserContext context)
 {
     _line = context.Line;
     _context = context;
 }
コード例 #5
0
ファイル: PrefixParser.cs プロジェクト: mslot/IRCSharp
 public PrefixParser(IRCParserContext context)
 {
     _context = context;
 }
コード例 #6
0
ファイル: ParamsParser.cs プロジェクト: mslot/IRCSharp
 public ParamsParser(IRCParserContext _context)
 {
     this._context = _context;
     this._line = _context.Line;
 }