http://msdn.microsoft.com/en-us/library/ms731303.aspx、およびhttp://msdn.microsoft.com/en-us/library/ms789007.aspxを見ると、ServiceBehaviorを指定する例が示されています。しかし、behaviorConfigurationでもendpointBehaviorを指定する方法はありますか?何かのようなもの
<service name="ServiceName1" behaviorConfiguration="ServiceBehavior1;EndpointBehavior1">
...
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior1">
...
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="EndpointBehavior1">
...
</behavior>
</endpointBehaviors>
</behaviors>
...