次の方法で共有


IfElseActivity コンストラクター

定義

IfElseActivity クラスの新しいインスタンスを初期化します。

オーバーロード

IfElseActivity()

IfElseActivity クラスの新しいインスタンスを初期化します。

IfElseActivity(String)

アクティビティ名を使用して、IfElseActivity クラスの新しいインスタンスを初期化します。

IfElseActivity()

IfElseActivity クラスの新しいインスタンスを初期化します。

public:
 IfElseActivity();
public IfElseActivity ();
Public Sub New ()

IfElseActivity クラスの新規インスタンスを作成し、そのインスタンスに 2 つの IfElseBranchActivity クラスを追加するコード例を次に示します。 このコード例は、SequentialWorkflow.cs ファイルから抜粋した SequentialWorkflowWithParameters SDK サンプルの一部です。 詳細については、「 Workflow with Parameters Sample」を参照してください。

internal static void SetPartitionInterval(char interval)
{
    // Valid values are 'd' (daily), 'm' (monthly), and 'y' (yearly).  The default is 'm'.
    using (SqlCommand command = new SqlCommand("dbo.SetPartitionInterval"))
    {
        command.CommandType = CommandType.StoredProcedure;
        command.Connection = new SqlConnection(connectionString);

        SqlParameter intervalParameter = new SqlParameter("@Interval", SqlDbType.Char);
        intervalParameter.SqlValue = interval;
        command.Parameters.Add(intervalParameter);
        command.Connection.Open();
        command.ExecuteNonQuery();
    }
}
Friend Shared Sub SetPartitionInterval(ByVal interval As Char)
    ' Valid values are 'd' (daily), 'm' (monthly), and 'y' (yearly).  The default is 'm'.
    Using Command As New SqlCommand("dbo.SetPartitionInterval")
        Command.CommandType = CommandType.StoredProcedure
        Command.Connection = New SqlConnection(connectionString)

        Dim intervalParameter As New SqlParameter("@Interval", SqlDbType.Char)
        intervalParameter.SqlValue = interval
        Command.Parameters.Add(intervalParameter)

        Command.Connection.Open()
        Command.ExecuteNonQuery()

    End Using

End Sub

こちらもご覧ください

適用対象

IfElseActivity(String)

アクティビティ名を使用して、IfElseActivity クラスの新しいインスタンスを初期化します。

public:
 IfElseActivity(System::String ^ name);
public IfElseActivity (string name);
new System.Workflow.Activities.IfElseActivity : string -> System.Workflow.Activities.IfElseActivity
Public Sub New (name As String)

パラメーター

name
String

アクティビティのユーザー定義名。

こちらもご覧ください

適用対象