4 writes to ContractType
System.WorkflowServices (4)
System\Workflow\Activities\Design\OperationPickerDialog.cs (1)
217operationItem.Operation.ContractType = serviceContractType;
System\Workflow\Activities\TypedOperationInfo.cs (3)
44this.ContractType = contractType; 57clonedOperation.ContractType = this.ContractType; 137this.ContractType = currentDesignTimeType;
17 references to ContractType
System.WorkflowServices (17)
System\Workflow\Activities\Design\OperationPickerDialog.cs (1)
87serviceContract.ContractType = typedOperationInfo.ContractType;
System\Workflow\Activities\SendActivity.cs (3)
156return SendActivity.GetContext(this, this.ChannelToken, this.ServiceOperationInfo.ContractType); 166SendActivity.SetContext(this, this.ChannelToken, this.ServiceOperationInfo.ContractType, value); 386LogicalChannel logicalChannel = ChannelToken.Register(this, channelToken, serviceOperationInfo.ContractType);
System\Workflow\Activities\TypedOperationInfo.cs (10)
57clonedOperation.ContractType = this.ContractType; 74if (this.ContractType != operationInfo.ContractType) 94if (this.ContractType != null) 96returnValue = this.ContractType.FullName + "." + returnValue; 105if (this.ContractType != null) 107return this.ContractType.FullName; 114if (this.ContractType == null) 126Type contractType = this.ContractType; 143return this.ContractType;
System\Workflow\Activities\ValidationHelper.cs (3)
144if (typedServiceOperation.ContractType != null) 146typeName = typedServiceOperation.ContractType.FullName; 717if (currentOperationInfo.ContractType == null)