/// <summary>
 /// Initialization constructor
 /// </summary>
 public TDSEnvChangeToken(TDSEnvChangeTokenType type, object newValue, object oldValue) :
     this(type, newValue)
 {
     OldValue = oldValue;
 }
 /// <summary>
 /// Initialization constructor
 /// </summary>
 public TDSEnvChangeToken(TDSEnvChangeTokenType type, object newValue) :
     this(type)
 {
     NewValue = newValue;
 }
 /// <summary>
 /// Initialization constructor
 /// </summary>
 public TDSEnvChangeToken(TDSEnvChangeTokenType type)
 {
     Type = type;
 }
Exemple #4
0
 /// <summary>
 /// Initialization constructor
 /// </summary>
 public TDSEnvChangeToken(TDSEnvChangeTokenType type, object newValue, object oldValue) :
     this(type, newValue)
 {
     OldValue = oldValue;
 }
Exemple #5
0
 /// <summary>
 /// Initialization constructor
 /// </summary>
 public TDSEnvChangeToken(TDSEnvChangeTokenType type, object newValue) :
     this(type)
 {
     NewValue = newValue;
 }
Exemple #6
0
 /// <summary>
 /// Initialization constructor
 /// </summary>
 public TDSEnvChangeToken(TDSEnvChangeTokenType type)
 {
     Type = type;
 }