次の方法で共有


PersistenceParticipant コンストラクター

定義

PersistenceParticipant クラスのインスタンスを初期化します。

protected:
 PersistenceParticipant();
protected PersistenceParticipant ();
Protected Sub New ()

PersistenceParticipant から派生したクラスの作成方法を次のコード サンプルに示します。 この例は、 採用プロセス のサンプルからのものです。

public class HiringRequestInfoPersistenceParticipant: PersistenceIOParticipant
{
    public HiringRequestInfoPersistenceParticipant()
        : base(true, false)
    {
    }

適用対象