Skip to content

Commit

Permalink
Update src/ServiceStack.ServiceInterface/ResponseFilterAttribute.cs
Browse files Browse the repository at this point in the history
Changed requestDto to responseDto to prevent confusion.
  • Loading branch information
jsonmez committed Nov 10, 2012
1 parent 2348c65 commit 9232769
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ public void ResponseFilter(IHttpRequest req, IHttpResponse res, object response)
/// <param name="req">The http request wrapper</param>
/// <param name="res">The http response wrapper</param>
/// <param name="requestDto">The response DTO</param>
public abstract void Execute(IHttpRequest req, IHttpResponse res, object requestDto);
public abstract void Execute(IHttpRequest req, IHttpResponse res, object responseDto);

/// <summary>
/// Create a ShallowCopy of this instance.
Expand Down

0 comments on commit 9232769

Please sign in to comment.