Last post Jun 10, 2020 03:59 AM by JeromeKen
None
0 Points
1 Post
Jun 10, 2020 03:59 AM|JeromeKen|LINK
I want to implement this in ASPNETCORE, but I see that the new version has not been released yet,like this :https://github.com/dotnet/aspnetcore/issues/5353
Example of in ASP.NET SignalR 2.X:
public class IsConnectedPipeLine : HubPipelineModule { protected override bool OnBeforeIncoming(IHubIncomingInvokerContext context) { if (context.MethodDescriptor.Name == "GetToken") return true; return ChatIdentity.CheckToken(context.Hub.Context.GetCurrentUserToken()); } }
None
0 Points
1 Post
I want to implement new features like the new version of IHubFilter, in the .net core 3.1 version...
Jun 10, 2020 03:59 AM|JeromeKen|LINK
I want to implement this in ASPNETCORE, but I see that the new version has not been released yet,like this :https://github.com/dotnet/aspnetcore/issues/5353
Example of in ASP.NET SignalR 2.X: