Microsoft.AspNetCore.SignalR.Hubs.HubPipelineModule.OnBeforeOutgoing C# (CSharp) 메소드

OnBeforeOutgoing() 보호된 메소드

This method is called before the outgoing components of any modules added later to the IHubPipeline are executed. If this returns false, then those later-added modules and the client-side hub method invocation(s) will not be executed.
protected OnBeforeOutgoing ( IHubOutgoingInvokerContext context ) : bool
context IHubOutgoingInvokerContext A description of the client-side hub method invocation.
리턴 bool
        protected virtual bool OnBeforeOutgoing(IHubOutgoingInvokerContext context)
        {
            return true;
        }