HttpContinueDelegate.cs 240 B

12345678910111213
  1. //
  2. // System.Net.HttpContinueDelegate.cs
  3. //
  4. // Author:
  5. // Lawrence Pit ([email protected])
  6. //
  7. namespace System.Net
  8. {
  9. public delegate void HttpContinueDelegate (
  10. int StatusCode,
  11. WebHeaderCollection httpHeaders);
  12. }