tgstation-server
4.4.0
The /tg/station 13 server suite
Main Page
Features
API
Architecture
Packages
Classes
Files
File List
src
Tgstation.Server.Host
Components
Interop
ChatUpdate.cs
Go to the documentation of this file.
1
using
System
;
2
using
System
.Collections.Generic;
3
using
System
.Linq;
4
using
Tgstation
.
Server
.
Host
.
Components
.
Chat
;
5
6
namespace
Tgstation
.
Server
.Host.Components.Interop
7
{
11
public
class
ChatUpdate
12
{
16
public
IEnumerable<ChannelRepresentation> Channels {
get
; }
17
22
public
ChatUpdate
(IEnumerable<ChannelRepresentation> channels)
23
{
24
Channels = channels?.ToList() ??
throw
new
ArgumentNullException(nameof(channels));
25
}
26
}
27
}
Tgstation.Server.Host.Components.Chat
Definition:
ChannelMapping.cs:1
Tgstation.Server.Api.Models.IrcPasswordType.Server
Use server authentication
System
Tgstation.Server.Host.Components.Interop.ChatUpdate.ChatUpdate
ChatUpdate(IEnumerable< ChannelRepresentation > channels)
Initializes a new instance of the ChatUpdate .
Definition:
ChatUpdate.cs:22
Tgstation.Server.Host.Components
Tgstation.Server
Tgstation.Server.Host
Tgstation.Server.Host.Components.Interop.ChatUpdate
Represents an update of ChannelRepresentations.
Definition:
ChatUpdate.cs:11
Tgstation
Generated by
1.8.11