mirror of
https://github.com/nheiniger/SnaffPoint
synced 2026-06-08 16:23:31 +00:00
25 lines
845 B
C#
25 lines
845 B
C#
using System;
|
|
using System.Collections.Specialized;
|
|
using System.Net;
|
|
|
|
namespace SearchQueryTool.Model
|
|
{
|
|
public abstract class SearchResult
|
|
{
|
|
public HttpStatusCode StatusCode { get; set; }
|
|
public string StatusDescription { get; set; }
|
|
public string HttpProtocolVersion { get; set; }
|
|
public string ContentType { get; set; }
|
|
public TimeSpan ElapsedTime { get; set; }
|
|
public long ElapsedMilliseconds { get; set; }
|
|
public NameValueCollection ResponseHeaders { get; set; }
|
|
public NameValueCollection RequestHeaders { get; set; }
|
|
public string ResponseContent { get; set; }
|
|
public Uri RequestUri { get; set; }
|
|
public string RequestMethod { get; set; }
|
|
public string RequestContent { get; set; }
|
|
|
|
public abstract void Process();
|
|
}
|
|
}
|