1 write to CallbackContractType
System.ServiceModel.Primitives (1)
System\ServiceModel\Description\TypeLoader.cs (1)
774
contractDescription.
CallbackContractType
= callbackType;
8 references to CallbackContractType
System.ServiceModel.Primitives (7)
System\ServiceModel\ChannelFactory.cs (2)
517
if (endpoint.Contract.
CallbackContractType
== null)
526
if (endpoint.Contract.
CallbackContractType
== null)
System\ServiceModel\Description\TypeLoader.cs (4)
230
Type targetIface = implIsCallback ? opDesc.DeclaringContract.
CallbackContractType
: opDesc.DeclaringContract.ContractType;
623
Type targetIface = serviceEndpoint.Contract.
CallbackContractType
;
803
if (inheritedContractDescription.
CallbackContractType
!= null)
805
inheritedCallbackTypes.Add(inheritedContractDescription.
CallbackContractType
);
System\ServiceModel\DuplexChannelFactory.cs (1)
192
Type callbackType = Endpoint.Contract.
CallbackContractType
;
System.ServiceModel.Primitives.Tests (1)
Description\ContractDescriptionTest.cs (1)
184
Assert.Equal<Type>(typeof(IHelloCallbackContract), contract.
CallbackContractType
);