コード例 #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TestHelper"/> class.
        /// </summary>
        public TestHelper()
        {
            ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) =>
            {
                return true;
            };

            this.command = Command.Splunk();
        }
コード例 #2
0
 /// <summary>
 /// Returns the command object, which picks up .splunkrc
 /// </summary>
 /// <returns>The command object</returns>
 public Command SetUp()
 {
     this.command = Command.Splunk();
     return this.command;
 }