FrameFilterImpl.AddDataParam Method

FrameFilterクラスライブラリリファレンス>クラス>FrameFilterのメソッドを使ってアクセスできるデータ型パラメータの登録を行います。

構文

[C#]
public delegate void SetDataParam( byte[] value );
public delegate byte[] GetDataParam();
protected void AddDataParam( string name, SetDataParam setFunc, GetDataParam getFunc );
パラメータ 説明
name パラメータの名前です。アクセスするためにはこの文字列をFrameFilter.SetDataParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.SetDataParameter MethodFrameFilter.GetDataParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.GetDataParameter Methodに渡さなければなりません。
getFunc 現在のパラメータの設定値を返す働きをGetDataParamが委譲します。
setFunc パラメータの変更と扱いに関しての処理をSetDataParamが委譲します。

備考

フレームフィルタの全パラメータをコンストラクタ内に登録する必要があります。