From 9a5a6b660971086ea4ffe2640e5a3201dbccf266 Mon Sep 17 00:00:00 2001 From: Greg Edwards Date: Fri, 12 Sep 2014 02:43:47 -0400 Subject: [PATCH] Pass session to the main method. --- GamestatsBase/GamestatsHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GamestatsBase/GamestatsHandler.cs b/GamestatsBase/GamestatsHandler.cs index b91f051..15a4ab9 100644 --- a/GamestatsBase/GamestatsHandler.cs +++ b/GamestatsBase/GamestatsHandler.cs @@ -177,7 +177,7 @@ namespace GamestatsBase MemoryStream response = new MemoryStream(); try { - ProcessGamestatsRequest(dataTrim, response, rawPath, pid, context); + ProcessGamestatsRequest(dataTrim, response, rawPath, pid, context, session); } catch (GamestatsException ex) { @@ -229,7 +229,7 @@ namespace GamestatsBase } } - public virtual void ProcessGamestatsRequest(byte[] request, MemoryStream response, String url, int pid, HttpContext context) + public virtual void ProcessGamestatsRequest(byte[] request, MemoryStream response, String url, int pid, HttpContext context, GamestatsSession session) { }