1 write to CallbackContractType
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
761contractDescription.CallbackContractType = callbackType;
7 references to CallbackContractType
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (2)
586if (endpoint.Contract.CallbackContractType == null) 595if (endpoint.Contract.CallbackContractType == null)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (4)
230Type targetIface = implIsCallback ? opDesc.DeclaringContract.CallbackContractType : opDesc.DeclaringContract.ContractType; 610Type targetIface = serviceEndpoint.Contract.CallbackContractType; 790if (inheritedContractDescription.CallbackContractType != null) 792inheritedCallbackTypes.Add(inheritedContractDescription.CallbackContractType);
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (1)
234Type callbackType = this.Endpoint.Contract.CallbackContractType;