コード例 #1
0
ファイル: Alert.cs プロジェクト: RichieRich69/StormStryker
 public IAlertFluent Warning()
 {
     _style = Enums.AlertStyle.Warning;
     return new AlertFluent(this);
 }
コード例 #2
0
ファイル: Alert.cs プロジェクト: RichieRich69/StormStryker
 public IAlertFluent Info()
 {
     _style = Enums.AlertStyle.Info;
     return new AlertFluent(this);
 }
コード例 #3
0
ファイル: Alert.cs プロジェクト: RichieRich69/StormStryker
 public IAlertFluent Success()
 {
     _style = Enums.AlertStyle.Success;
     return new AlertFluent(this);
 }
コード例 #4
0
ファイル: Alert.cs プロジェクト: RichieRich69/StormStryker
 public IAlertFluent Danger()
 {
     _style = Enums.AlertStyle.Danger;
     return new AlertFluent(this);
 }