Exemplo n.º 1
0
 /// <summary>
 /// Convenience shallow copy constructor for easy inheritance construction.
 /// </summary>
 public KustoRuleConfiguration(KustoRuleConfiguration other)
 {
     Clock             = other.Clock;
     Logger            = other.Logger;
     Notifier          = other.Notifier;
     CslQueryProvider  = other.CslQueryProvider;
     KustoDatabaseName = other.KustoDatabaseName;
     StampId           = other.StampId;
     CacheTableName    = other.CacheTableName;
 }
Exemplo n.º 2
0
        /// <summary>
        /// Convenience shallow copy constructor for easy inheritance construction.
        /// </summary>
        public KustoRuleConfiguration(KustoRuleConfiguration other)
        {
            Contract.RequiresNotNull(other);

            Clock             = other.Clock;
            Logger            = other.Logger;
            Notifier          = other.Notifier;
            CslQueryProvider  = other.CslQueryProvider;
            KustoDatabaseName = other.KustoDatabaseName;
            Environment       = other.Environment;
            Stamp             = other.Stamp;
        }
Exemplo n.º 3
0
 public Configuration(KustoRuleConfiguration kustoRuleConfiguration)
     : base(kustoRuleConfiguration)
 {
 }
Exemplo n.º 4
0
 public KustoRuleBase(KustoRuleConfiguration configuration)
 {
     _configuration = configuration;
 }
Exemplo n.º 5
0
 public KustoRuleBase(KustoRuleConfiguration configuration)
 {
     Contract.RequiresNotNull(configuration);
     _configuration = configuration;
 }
Exemplo n.º 6
0
 public KustoRuleConfiguration(KustoRuleConfiguration other)
     : this(other.Clock, other.Logger, other.Notifier, other.KustoClient, other.KustoDatabaseName, other.CacheTableName)
 {
 }