Files
2022-08-25 15:20:58 +02:00

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();
}
}