有没有办法为WCF中的回调配置限制?

有没有办法为WCF中的回调配置限制?,wcf,callback,throttling,Wcf,Callback,Throttling,是否可以控制回调时的节流?因此,服务器回调客户端的频率将受到限制(控制)。是。。有一种方法可以定义用户的最大限制。。。 您可以添加最大数量的并发调用、实例和会话 示例配置 <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="Throttling"> &l

是否可以控制回调时的节流?因此,服务器回调客户端的频率将受到限制(控制)。

是。。有一种方法可以定义用户的最大限制。。。 您可以添加最大数量的并发调用、实例和会话

示例配置

<system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="Throttling">
                    <serviceThrottling maxConcurrentCalls="2" maxConcurrentInstances="2" />
                    <serviceThrottling />
                </behavior>
            </serviceBehaviors>
        </behaviors>
</system.serviceModel>

我在询问回调方法,我认为实例、会话和用户对回调没有任何意义。