24 references to WebServiceOutputActivity
System.Workflow.Activities (22)
Designers\WebServiceReceiveDesigner.cs (2)
70if (succeedingActivity is WebServiceOutputActivity && ((WebServiceOutputActivity)(succeedingActivity)).InputActivityName == this.Activity.QualifiedName)
Designers\WebServiceResponseDesigner.cs (3)
32WebServiceOutputActivity webServiceResponse = this.Activity as WebServiceOutputActivity; 45(e.Activity as WebServiceOutputActivity).ParameterBindings.Clear();
WebServiceFault.cs (2)
199(activity is WebServiceOutputActivity && String.Compare(((WebServiceOutputActivity)activity).InputActivityName, webServiceFault.InputActivityName, StringComparison.Ordinal) == 0))
WebServiceReceive.cs (2)
617if ((succeedingActivity is WebServiceOutputActivity && ((WebServiceOutputActivity)succeedingActivity).InputActivityName == webServiceReceive.Name) ||
WebServiceResponse.cs (13)
22[ToolboxBitmap(typeof(WebServiceOutputActivity), "Resources.WebServiceOut.png")] 30public static readonly DependencyProperty InputActivityNameProperty = DependencyProperty.Register("InputActivityName", typeof(string), typeof(WebServiceOutputActivity), new PropertyMetadata("", DependencyPropertyOptions.Metadata)); 33public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(WebServiceOutputActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) })); 36public static readonly DependencyProperty SendingOutputEvent = DependencyProperty.Register("SendingOutput", typeof(EventHandler), typeof(WebServiceOutputActivity)); 132this.RaiseEvent(WebServiceOutputActivity.SendingOutputEvent, this, EventArgs.Empty); 278prop = new ParameterInfoBasedPropertyDescriptor(typeof(WebServiceOutputActivity), paramInfo, false, DesignOnlyAttribute.Yes); 280prop = new ParameterInfoBasedPropertyDescriptor(typeof(WebServiceOutputActivity), paramInfo, true, DesignOnlyAttribute.Yes); 300WebServiceOutputActivity webServiceResponse = obj as WebServiceOutputActivity; 302throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(WebServiceOutputActivity).FullName), "obj"); 322if ((activity is WebServiceOutputActivity && String.Compare(((WebServiceOutputActivity)activity).InputActivityName, webServiceResponse.InputActivityName, StringComparison.Ordinal) == 0) || 325if (activity is WebServiceOutputActivity)
System.Workflow.Runtime (2)
System\Activities\Statements\Interop.cs (2)
1258else if (interopBodyType == typeof(System.Workflow.Activities.WebServiceOutputActivity)) 1414else if (activity is System.Workflow.Activities.WebServiceOutputActivity)