mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
pretty...
This commit is contained in:
parent
beaf0cf939
commit
afafc6b032
285 changed files with 32688 additions and 784 deletions
53
CassiniDev/Core/RequestEventArgs.cs
Normal file
53
CassiniDev/Core/RequestEventArgs.cs
Normal file
|
@ -0,0 +1,53 @@
|
|||
// **********************************************************************************
|
||||
// CassiniDev - http://cassinidev.codeplex.com
|
||||
//
|
||||
// Copyright (c) 2010 Sky Sanders. All rights reserved.
|
||||
//
|
||||
// This source code is subject to terms and conditions of the Microsoft Public
|
||||
// License (Ms-PL). A copy of the license can be found in the license.txt file
|
||||
// included in this distribution.
|
||||
//
|
||||
// You must not remove this notice, or any other, from this software.
|
||||
//
|
||||
// **********************************************************************************
|
||||
|
||||
#region
|
||||
|
||||
using System;
|
||||
using CassiniDev.ServerLog;
|
||||
|
||||
#endregion
|
||||
|
||||
namespace CassiniDev
|
||||
{
|
||||
public class RequestEventArgs : EventArgs
|
||||
{
|
||||
private readonly Guid _id;
|
||||
|
||||
private readonly LogInfo _requestLog;
|
||||
|
||||
private readonly LogInfo _responseLog;
|
||||
|
||||
public RequestEventArgs(Guid id, LogInfo requestLog, LogInfo responseLog)
|
||||
{
|
||||
_requestLog = requestLog;
|
||||
_responseLog = responseLog;
|
||||
_id = id;
|
||||
}
|
||||
|
||||
public Guid Id
|
||||
{
|
||||
get { return _id; }
|
||||
}
|
||||
|
||||
public LogInfo RequestLog
|
||||
{
|
||||
get { return _requestLog; }
|
||||
}
|
||||
|
||||
public LogInfo ResponseLog
|
||||
{
|
||||
get { return _responseLog; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue