言語

PersistenceParticipant コンストラクター

定義

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

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

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

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

適用対象