using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Collections; using System.Linq; using System.Workflow.ComponentModel.Compiler; using System.Workflow.ComponentModel.Serialization; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Workflow.Runtime; using System.Workflow.Activities; using System.Workflow.Activities.Rules; namespace $safeprojectname$ { public sealed partial class Workflow1 : SequentialWorkflowActivity { public Workflow1() { InitializeComponent(); } // Diese Variablen sind an die Eingabe- und Ausgabeparameter von ReceiveActivity gebunden. private String returnValue; private Int32 inputValue; public Int32 InputValue { get{ return inputValue; } set{ inputValue = value; } } public string ReturnValue { get{ return returnValue; } set{ returnValue = value; } } } }