3 writes to Operation
System.WorkflowServices (3)
System\Workflow\Activities\Design\OperationPickerDialog.cs (2)
112workflowOperationItem.Operation = workflowOperationInfo; 386((WorkflowServiceOperationListItem) operationItem).Operation = operationInfo as OperationInfo;
System\Workflow\Activities\Design\WorkflowServiceOperationListItem.cs (1)
17this.Operation = new OperationInfo();
16 references to Operation
System.WorkflowServices (16)
System\Workflow\Activities\Design\OperationPickerDialog.cs (1)
273selectedOperation = ((WorkflowServiceOperationListItem) selectedObject).Operation;
System\Workflow\Activities\Design\ServiceContractDetailViewControl.cs (2)
75workflowOperationListItem.Operation.ContractName = listItem.Name; 79PropertyDescriptorUtils.SetPropertyValue(this.ServiceProvider, ServiceOperationHelpers.GetServiceOperationInfoPropertyDescriptor(activity), activity, workflowOperationListItem.Operation.Clone());
System\Workflow\Activities\Design\ServiceContractListItem.cs (1)
100result.Operation.ContractName = this.Name;
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (12)
78operationInfoBase = workflowOperationListItem.Operation; 79if (workflowOperationListItem.Operation.HasProtectionLevel) 81this.protectionLevelComboBox.SelectedItem = workflowOperationListItem.Operation.ProtectionLevel; 322workflowOperationListItem.Operation.IsOneWay = this.oneWayCheckBox.Checked; 339workflowOperationListItem.Operation.Name = this.operationNameTextBox.Text; 452workflowOperationListItem.Operation.PrincipalPermissionName = this.permissionNameTextBox.Text; 470workflowOperationListItem.Operation.PrincipalPermissionRole = this.permissionRoleTextBox.Text; 543item.Operation.ResetProtectionLevel(); 547item.Operation.ProtectionLevel = (ProtectionLevel) this.protectionLevelComboBox.SelectedItem; 673operation = workflowOperationListItem.Operation; 700workflowOperationListItem.Operation.Parameters.Clear(); 745workflowOperationListItem.Operation.Parameters.Add(operationParameterInfo);