3 instantiations of CallbackBehaviorAttribute
System.ServiceModel (2)
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
305[CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Multiple)]
System\ServiceModel\Description\TypeLoader.cs (1)
530serviceEndpoint.Behaviors.Insert(0, new CallbackBehaviorAttribute());
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryCallbackBehavior.cs (1)
16this.innerCallbackBehavior = new CallbackBehaviorAttribute();
9 references to CallbackBehaviorAttribute
System.ServiceModel (8)
System\ServiceModel\CallbackBehaviorAttribute.cs (1)
206SR.GetString(SR.SFXEndpointBehaviorUsedOnWrongSide, typeof(CallbackBehaviorAttribute).Name)));
System\ServiceModel\Channels\ServiceChannel.cs (1)
594throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxCallbackRequestReplyInOrder1, typeof(CallbackBehaviorAttribute).Name)));
System\ServiceModel\Description\TypeLoader.cs (4)
527CallbackBehaviorAttribute attr = serviceEndpoint.Behaviors.Find<CallbackBehaviorAttribute>(); 539if (behaviorAttribute is CallbackBehaviorAttribute) 1984if (behavior is ServiceBehaviorAttribute || behavior is CallbackBehaviorAttribute)
System\ServiceModel\Dispatcher\TransactionValidationBehavior.cs (2)
83CallbackBehaviorAttribute attribute = endpoint.Behaviors.Find<CallbackBehaviorAttribute>();
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryCallbackBehavior.cs (1)
12CallbackBehaviorAttribute innerCallbackBehavior;