コード例 #1
0
ファイル: Stressor.cs プロジェクト: wsharp07/Cortisol
 public IStressResult ActOnApi(Uri uri)
 {
     _uri       = uri;
     InduceType = InduceType.Api;
     return(this);
 }
コード例 #2
0
ファイル: Stressor.cs プロジェクト: wsharp07/Cortisol
 public IStressResult ActOn(Action action)
 {
     _action    = action;
     InduceType = InduceType.Action;
     return(this);
 }