示例#1
0
 /// <summary>
 /// Creates an instance of the class
 /// </summary>
 /// <param name="owner">owner instance</param>
 internal EnvironmentInfo(Contribution.CommonUtils owner)
 {
     if (null == owner)
     {
         throw new ArgumentNullException("owner");
     }
     _owner = owner;
 }
示例#2
0
 /// <summary>
 /// Creates an instance of the class
 /// </summary>
 /// <param name="owner">owner instance</param>
 public DiagnosticPairCollection(Contribution.CommonUtils owner)
 {
     if (null == owner)
         throw new ArgumentNullException("owner");
     Owner = owner;
     foreach (DiagnosticPair item in GetSummary())
         Add(item);
 }
示例#3
0
 /// <summary>
 /// Creates an instance of the class
 /// </summary>
 /// <param name="owner">owner instance</param>
 internal Infos(Contribution.CommonUtils owner)
 {
     if (null == owner)
     {
         throw new ArgumentNullException("owner");
     }
     _lock  = new object();
     _owner = owner;
 }