コード例 #1
0
ファイル: HttpState.cs プロジェクト: jerkyboy/msfast
 internal void Dispose()
 {
     this.HttpTransaction = null;
     this.Parser          = null;
 }
コード例 #2
0
ファイル: HttpState.cs プロジェクト: jerkyboy/msfast
 public void Reset(HttpObjectParser parser)
 {
     this.HeaderBuffer      = new byte[Max_Header_Size];
     this.TotalCapturedData = 0;
     this.Parser            = parser;
 }