3 writes to ContractType
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
185
contract.
ContractType
= channelType;
200
contract.
ContractType
= channelType;
744
contractDescription.
ContractType
= contractType;
15 references to ContractType
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (2)
588
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SfxCallbackTypeCannotBeNull, endpoint.Contract.
ContractType
.FullName)));
597
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SfxCallbackTypeCannotBeNull, endpoint.Contract.
ContractType
.FullName)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (1)
23
clientRuntime.ContractClientType = contractDescription.
ContractType
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpointCollection.cs (3)
25
if (endpoint != null && endpoint.Contract.
ContractType
== contractType)
65
if (endpoint != null && endpoint.Contract.
ContractType
== contractType &&
130
if (endpoint != null && endpoint.Contract.
ContractType
== contractType)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (6)
230
Type targetIface = implIsCallback ? opDesc.DeclaringContract.CallbackContractType : opDesc.DeclaringContract.
ContractType
;
284
GetFormattingAttribute(operationDescription.DeclaringContract.
ContractType
,
679
if (!(declaringContract.
ContractType
.IsAssignableFrom(contractDescription.
ContractType
)))
683
String.Format(CultureInfo.InvariantCulture, "Bad contract inheritence. Contract {0} does not implement {1}", declaringContract.
ContractType
.Name, contractDescription.
ContractType
.Name)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (3)
36
Reflector parentReflector = new Reflector(operation.DeclaringContract.Namespace, operation.DeclaringContract.
ContractType
);
95
Reflector reflector = new Reflector(contract.Namespace, contract.
ContractType
);
198
Type contractType = operation.DeclaringContract != null ? operation.DeclaringContract.
ContractType
: null;