public MatsClientApplicationBaseExecutor(IClientApplicationBaseExecutor executor, IMatsTelemetryClient mats)
     : base(mats)
 {
     _executor = executor;
 }
 public MatsPublicClientExecutor(IPublicClientApplicationExecutor executor, IMatsTelemetryClient mats)
     : base(mats)
 {
     _executor = executor;
 }
Example #3
0
 protected AbstractMatsExecutor(IMatsTelemetryClient mats)
 {
     _mats = mats;
 }
Example #4
0
 public MatsConfidentialClientExecutor(IConfidentialClientApplicationExecutor executor, IMatsTelemetryClient mats)
     : base(mats)
 {
     _executor = executor;
 }