Esempio n. 1
0
 /// <summary>Initializes a new instance of the ExitBehavior class.</summary>
 /// <param name="instanceID">ID of the behavior instance.</param>
 /// <param name="instanceProperties">The dictionary of propertyNames-propertyValues for this behavior instance.</param>
 public ExitBehavior(long instanceID, Dictionary <string, object> instanceProperties)
     : base(instanceProperties)
 {
     commands = new ExitBehaviorCommands(this);
     ID       = instanceID;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the ExitBehavior class.
 /// </summary>
 /// <param name="instanceID">ID of the behavior instance.</param>
 /// <param name="instanceProperties">The dictionary of propertyNames-propertyValues for this behavior instance.</param>
 public ExitBehavior(long instanceID, Dictionary<string, object> instanceProperties)
     : base(instanceProperties)
 {
     this.commands = new ExitBehaviorCommands(this);
     this.ID = instanceID;
 }
Esempio n. 3
0
 /// <summary>Initializes a new instance of the ExitBehavior class.</summary>
 public ExitBehavior()
     : base(null)
 {
     commands = new ExitBehaviorCommands(this);
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the ExitBehavior class.
 /// </summary>
 public ExitBehavior()
     : base(null)
 {
     this.commands = new ExitBehaviorCommands(this);
 }