Show / Hide Table of Contents

Interface IActorBuilder

Implement this interface if you want your class to be used for setting up the actors in the scene for playback.

Namespace: RecordAndPlay.Playback
Assembly: RecordAndPlay.dll
Syntax
public interface IActorBuilder

Methods

Build(Int32, String, Dictionary<String, String>)

Build an actor given the information presented.

Declaration
Actor Build(int subjectId, string subjectName, Dictionary<string, string> metadata)
Parameters
Type Name Description
System.Int32 subjectId

The unique ID of the subject in the recording.

System.String subjectName

The name of the subject.

System.Collections.Generic.Dictionary<System.String, System.String> metadata

Any extra information on the subject.

Returns
Type Description
Actor

An actor to represent the original subject.

Back to top Generated by DocFX