~ubuntu-branches/ubuntu/trusty/smuxi/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/ServiceStack/src/ServiceStack.Interfaces/ServiceInterface.ServiceModel/RequestLogEntry.cs

  • Committer: Package Import Robot
  • Author(s): Mirco Bauer
  • Date: 2013-05-25 22:11:31 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20130525221131-nd2mc0kzubuwyx20
Tags: 0.8.11-1
* [22d13d5] Imported Upstream version 0.8.11
* [6d2b95a] Refreshed patches
* [89eb66e] Added ServiceStack libraries to smuxi-engine package
* [848ab10] Enable Campfire engine
* [c6dbdc7] Always build db4o for predictable build result
* [13ec489] Exclude OS X specific libraries from dh_clideps

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
 
 
4
namespace ServiceStack.ServiceInterface.ServiceModel
 
5
{
 
6
        /// <summary>
 
7
        /// A log entry added by the IRequestLogger
 
8
        /// </summary>
 
9
        public class RequestLogEntry
 
10
        {
 
11
                public long Id { get; set; }
 
12
                public DateTime DateTime { get; set; }
 
13
                public string HttpMethod { get; set; }
 
14
                public string AbsoluteUri { get; set; }
 
15
                public string PathInfo { get; set; }
 
16
                public object RequestDto { get; set; }
 
17
                public string UserAuthId { get; set; }
 
18
                public string SessionId { get; set; }
 
19
                public string IpAddress { get; set; }
 
20
                public string ForwardedFor { get; set; }
 
21
                public string Referer { get; set; }
 
22
                public Dictionary<string, string> Headers { get; set; }
 
23
                public Dictionary<string, string> FormData { get; set; }
 
24
                public Dictionary<string, object> Items { get; set; }
 
25
                public object Session { get; set; }
 
26
                public object ResponseDto { get; set; }
 
27
                public object ErrorResponse { get; set; }
 
28
        public TimeSpan RequestDuration { get; set; }
 
29
        }
 
30
}
 
 
b'\\ No newline at end of file'