作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有为集线器功能定义和添加方法过滤器(如 ActionFilters 在 mvc 中)
我的意思是这样的:
public class MyHub : Hub
{
[Log]
public string RegisterUser(UserModel model){
...
}
}
最佳答案
您应该能够通过使用 SignalR's Hub pipeline 来实现与 ASP.NET MVC 中的操作过滤器类似的功能。 :
public class LoggingPipelineModule : HubPipelineModule
{
protected override bool OnBeforeIncoming(IHubIncomingInvokerContext context)
{
Debug.WriteLine("Invoking '{0}.{1}({2})'.",
context.MethodDescriptor.Hub.Name,
context.MethodDescriptor.Name,
string.Join(", ", context.Args));
return base.OnBeforeIncoming(context);
}
protected override object OnAfterIncoming(object result, IHubIncomingInvokerContext context)
{
Debug.WriteLine("Finished Invoking '{0}.{1}'. Returned '{2}'.",
context.MethodDescriptor.Hub.Name,
context.MethodDescriptor.Name,
result);
return base.OnAfterIncoming(result, context);
}
}
protected override bool OnBeforeIncoming(IHubIncomingInvokerContext context)
{
if (context.MethodDescriptor.Attributes.OfType<MyAttribute>().Any())
{
// Log here.
}
return base.OnBeforeIncoming(context);
}
MapSignalR
之前注册您的模块。 :
public void Configuration(IAppBuilder app)
{
GlobalHost.HubPipeline.AddModule(new LoggingPipelineModule());
app.MapSignalR();
}
关于signalr - 向 hub 方法添加一些过滤器(如 MVC 中的 AcctionFilters),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24909004/
是否有为集线器功能定义和添加方法过滤器(如 ActionFilters 在 mvc 中) 我的意思是这样的: public class MyHub : Hub { [Log] publ
我是一名优秀的程序员,十分优秀!