コード例 #1
0
 internal IrcChannel(string name)
 {
     this.name = name;
     this.type = IrcChannelType.Unspecified;
     this.modes = new HashSet<char>();
     this.modesReadOnly = new ReadOnlySet<char>(this.modes);
     this.users = new Collection<IrcChannelUser>();
     this.usersReadOnly = new IrcChannelUserCollection(this, this.users);
 }
コード例 #2
0
ファイル: IrcChannel.cs プロジェクト: markbm/ZzukBot_v1
 internal IrcChannel(string name)
 {
     this.name          = name;
     this.type          = IrcChannelType.Unspecified;
     this.modes         = new HashSet <char>();
     this.modesReadOnly = new ReadOnlySet <char>(this.modes);
     this.users         = new Collection <IrcChannelUser>();
     this.usersReadOnly = new IrcChannelUserCollection(this, this.users);
 }
コード例 #3
0
ファイル: IrcChannel.cs プロジェクト: IrcDotNet/IrcDotNet
 internal IrcChannel(string name)
 {
     Name = name;
     type = IrcChannelType.Unspecified;
     modes = new HashSet<char>();
     Modes = new ReadOnlySet<char>(modes);
     users = new Collection<IrcChannelUser>();
     Users = new IrcChannelUserCollection(this, users);
 }
コード例 #4
0
ファイル: IrcChannel.cs プロジェクト: charla-n/BIRC
 internal void HandleTypeChanged(IrcChannelType type)
 {
     this.Type = type;
 }
コード例 #5
0
 internal void HandleTypeChanged(IrcChannelType type)
 {
     Type = type;
 }