2 writes to operationInfoBase
System.WorkflowServices (2)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (2)
73operationInfoBase = operationListItem.Operation; 78operationInfoBase = workflowOperationListItem.Operation;
9 references to operationInfoBase
System.WorkflowServices (9)
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (9)
89Fx.Assert(operationInfoBase != null, "list Item should be either ReflectedServiceOperationListItem or WorkflowServiceOperationListItem"); 90this.oneWayCheckBox.Checked = operationInfoBase.GetIsOneWay(ServiceProvider); 91Fx.Assert(operationInfoBase != null, "Operation Info should be non-null at this point"); 93PopulateParametersGrid(operationInfoBase); 98this.operationNameTextBox.Text = operationInfoBase.Name; 99this.permissionRoleTextBox.Text = operationInfoBase.PrincipalPermissionRole; 100this.permissionNameTextBox.Text = operationInfoBase.PrincipalPermissionName; 252Fx.Assert(operationInfoBase != null, "operation info base should not be null here"); 253foreach (OperationParameterInfo paramInfo in operationInfoBase.GetParameters(this.ServiceProvider))