Part() public static method

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