List() public static method

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