Activity<TResult> クラス

定義

既存の Activity オブジェクトから複合アクティビティを作成するために使用される抽象基本クラス。このクラスでは、アクティビティの型指定子を使用して結果の型を指定します。

generic <typename TResult>
public ref class Activity abstract : System::Activities::ActivityWithResult
[System.ComponentModel.TypeConverter(typeof(System.Activities.XamlIntegration.ActivityWithResultConverter))]
public abstract class Activity<TResult> : System.Activities.ActivityWithResult
[<System.ComponentModel.TypeConverter(typeof(System.Activities.XamlIntegration.ActivityWithResultConverter))>]
type Activity<'Result> = class
    inherit ActivityWithResult
Public MustInherit Class Activity(Of TResult)
Inherits ActivityWithResult

型パラメーター

TResult

アクティビティの戻り値の型。

継承
Activity<TResult>
派生
属性

次の例では、Activity<TResult> からクラスを派生させる方法を示します。

public sealed class AppendString : Activity<string>
{
    // Input argument.
    [RequiredArgument]
    public InArgument<string> Name { get; set; }

    public AppendString()
    {
        // Define the implementation of this activity.
        this.Implementation = () => new Assign<string>
        {
            Value = new LambdaValue<string>(ctx => Name.Get(ctx) + " says hello world"),
            To = new LambdaReference<string>(ctx => Result.Get(ctx)),
        };
    }
}

注釈

アクティビティ型階層の基本クラスは、Activity<TResult> です。 ジェネリック型定義 (CodeActivity<TResult>NativeActivity<TResult>AsyncCodeActivity<TResult>DynamicActivity<TResult> など) を備えたその他すべてのアクティビティ型は、このクラスから派生します。

コンストラクター

Activity<TResult>()

派生クラスで実装された場合、派生クラスの新しいインスタンスを作成します。

プロパティ

CacheId

ワークフロー定義のスコープ内で一意であるキャッシュの識別子を取得します。

(継承元 Activity)
Constraints

Constraint に検証を提供するよう構成できる Activity アクティビティのコレクションを取得します。

(継承元 Activity)
DisplayName

デバッグ、検証、例外処理、および追跡に使用する省略可能な表示名を取得または設定します。

(継承元 Activity)
Id

ワークフロー定義のスコープ内で一意である識別子を取得します。

(継承元 Activity)
Implementation

実行ロジックを含む Activity を返すデリゲートを取得または設定します。

(継承元 Activity)
ImplementationVersion

使用される実装のバージョンを取得または設定します。

(継承元 Activity)
Result

Activity<TResult> の結果引数を取得または設定します。

ResultType

派生クラスで実装された場合、アクティビティ OutArgument の型を取得します。

(継承元 ActivityWithResult)

メソッド

CacheMetadata(ActivityMetadata)

アクティビティの引数、変数、子アクティビティ、およびアクティビティ デリゲートの記述を作成および検証します。

(継承元 Activity)
Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
FromValue(TResult)

所定の値に評価される Activity<TResult> 式を返します。

FromVariable(Variable)

所定の Activity<TResult> に評価される Variable 式を返します。

FromVariable(Variable<TResult>)

所定の Activity<TResult> に評価される Variable<T> 式を返します。

GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
OnCreateDynamicUpdateMap(UpdateMapMetadata, Activity)

動的な更新のマップを作成するとイベントが発生します。

(継承元 Activity)
ShouldSerializeDisplayName()

DisplayName プロパティをシリアル化する必要があるかどうかを示します。

(継承元 Activity)
ToString()

StringId および DisplayName を含む Activity を返します。

(継承元 Activity)

演算子

Implicit(TResult to Activity<TResult>)

所定の値に評価される Activity<TResult> 式を返します。

Implicit(Variable to Activity<TResult>)

所定の Activity<TResult> に評価される Variable 式を返します。

Implicit(Variable<TResult> to Activity<TResult>)

所定の Activity<TResult> に評価される Variable<T> 式を返します。

適用対象