Motd() public static method

public static Motd ( ) : string
return string
コード例 #1
0
 public void RfcMotd(string target, Priority priority) => WriteLine(Rfc2812.Motd(target), priority);
コード例 #2
0
 public void RfcMotd(string target) => WriteLine(Rfc2812.Motd(target));
コード例 #3
0
 public void RfcMotd() => WriteLine(Rfc2812.Motd());
コード例 #4
0
 public void RfcMotd(Priority priority) => WriteLine(Rfc2812.Motd(), priority);
コード例 #5
0
ファイル: IrcCommands.cs プロジェクト: zerk-js/SOTSII-SOS
 public void RfcMotd(string target)
 {
     this.WriteLine(Rfc2812.Motd(target));
 }
コード例 #6
0
ファイル: IrcCommands.cs プロジェクト: zerk-js/SOTSII-SOS
 public void RfcMotd()
 {
     this.WriteLine(Rfc2812.Motd());
 }
コード例 #7
0
ファイル: IrcCommands.cs プロジェクト: zerk-js/SOTSII-SOS
 public void RfcMotd(Priority priority)
 {
     this.WriteLine(Rfc2812.Motd(), priority);
 }