File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/netstandard/WampSharp/WAMP2/V2/Api/DelegatePubSub Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ public SubscriberRegistrationInterceptor(SubscribeOptions subscriptionOptions)
1818 mSubscriptionOptions = subscriptionOptions ;
1919 }
2020
21- public bool IsSubscriberHandler ( MethodInfo method )
21+ public virtual bool IsSubscriberHandler ( MethodInfo method )
2222 {
2323 return method . IsDefined ( typeof ( WampTopicAttribute ) ) ;
2424 }
2525
26- public string GetTopicUri ( MethodInfo method )
26+ public virtual string GetTopicUri ( MethodInfo method )
2727 {
2828 return method . GetCustomAttribute < WampTopicAttribute > ( ) . Topic ;
2929 }
3030
31- public SubscribeOptions GetSubscribeOptions ( MethodInfo method )
31+ public virtual SubscribeOptions GetSubscribeOptions ( MethodInfo method )
3232 {
3333 return mSubscriptionOptions ;
3434 }
3535 }
36- }
36+ }
You can’t perform that action at this time.
0 commit comments