コード例 #1
0
 public MissingModuleException(XmasUniversal host, Type moduleType)
     : base("Module Type " + moduleType.Name + " on type: " + host.GetType().Name + " is missing")
 {
     this.host = host;
     this.moduleType = moduleType;
 }
コード例 #2
0
 /// <summary>
 /// Adds an XmasUniversal to a list of Universals that has an Action Failed/Started/Completed event raised on them
 /// </summary>
 /// <param name="xuni">XmasUniversal to have an ActionEvent raised on it</param>
 public void AddRaiseActionEvent(XmasUniversal xuni)
 {
     this.raiseActionEvtOn.Add(xuni);
 }