Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
upgrade protocol assemblies (#1494)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzc850612 authored and darrenj committed Jun 6, 2019
1 parent be3dc23 commit a7fe602
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public SkillCallingRequestHandler(ITurnContext turnContext, Action<Activity> tok
_router = new Router(routes);
}

public override async Task<Response> ProcessRequestAsync(ReceiveRequest request, ILogger<RequestHandler> logger = null)
public override async Task<Response> ProcessRequestAsync(ReceiveRequest request, object context = null, ILogger<RequestHandler> logger = null)
{
var routeContext = _router.Route(request);
if (routeContext != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal SkillWebSocketRequestHandler(IBotTelemetryClient botTelemetryClient)

public IActivityHandler SkillWebSocketBotAdapter { get; set; }

public async override Task<Response> ProcessRequestAsync(ReceiveRequest request, ILogger<RequestHandler> logger = null)
public async override Task<Response> ProcessRequestAsync(ReceiveRequest request, object context = null, ILogger<RequestHandler> logger = null)
{
if (Bot == null)
{
Expand Down

0 comments on commit a7fe602

Please sign in to comment.