List() public static method

public static List ( ) : string
return string
Exemplo n.º 1
0
 public void RfcList(string[] channels, string target, Priority priority) => WriteLine(Rfc2812.List(channels, target), priority);
Exemplo n.º 2
0
 public void RfcList(string[] channels, string target) => WriteLine(Rfc2812.List(channels, target));
Exemplo n.º 3
0
 public void RfcList(string channel) => WriteLine(Rfc2812.List(channel));
Exemplo n.º 4
0
 public void RfcList(string[] channels) => WriteLine(Rfc2812.List(channels));
Exemplo n.º 5
0
 public void RfcList(string channel, Priority priority) => WriteLine(Rfc2812.List(channel), priority);
Exemplo n.º 6
0
 public void RfcList(string channel, string target)
 {
     this.WriteLine(Rfc2812.List(channel, target));
 }
Exemplo n.º 7
0
 public void RfcList(string channel, string target, Priority priority)
 {
     this.WriteLine(Rfc2812.List(channel, target), priority);
 }
Exemplo n.º 8
0
 public void RfcList(string[] channels, Priority priority)
 {
     this.WriteLine(Rfc2812.List(channels), priority);
 }
Exemplo n.º 9
0
 public void RfcList(string channel)
 {
     this.WriteLine(Rfc2812.List(channel));
 }