Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
MucRoom.cs
2{
6 public class MucRoom
7 {
8 private readonly string jid;
9 private readonly string roomId;
10 private readonly string domain;
11 private readonly string nickName;
12
20 public MucRoom(string Jid, string RoomId, string Domain, string NickName)
21 {
22 this.jid = Jid;
23 this.roomId = RoomId;
24 this.domain = Domain;
25 this.nickName = NickName;
26 }
27
31 public string Jid => this.jid;
32
36 public string RoomId => this.roomId;
37
41 public string Domain => this.domain;
42
46 public string NickName => this.nickName;
47
53 public RoomSource this[string SourceName]
54 {
55 get
56 {
57 return new RoomSource(this, SourceName);
58 }
59 }
60
61 }
62}
63
MUC Room, for script access to remote sources.
Definition: MucRoom.cs:7
MucRoom(string Jid, string RoomId, string Domain, string NickName)
MUC Room.
Definition: MucRoom.cs:20
string Domain
Domain hosting the room
Definition: MucRoom.cs:41
string NickName
Nick-name in room
Definition: MucRoom.cs:46