tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
BridgeParameters.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3
6
8{
12 public sealed class BridgeParameters : DMApiParameters
13 {
17 public BridgeCommandType? CommandType { get; set; }
18
22 public ushort? CurrentPort { get; set; }
23
27 public Version? Version { get; set; }
28
32 public ICollection<CustomCommand>? CustomCommands { get; set; }
33
38
42 public ChatMessage? ChatMessage { get; set; }
43
47 public ChunkData? Chunk { get; set; }
48
52 public ushort? TopicPort { get; set; }
53
58
63 public BridgeParameters(string accessIdentifier)
64 : base(accessIdentifier)
65 {
66 }
67 }
68}
BridgeParameters(string accessIdentifier)
Initializes a new instance of the BridgeParameters class.
CustomEventInvocation? EventInvocation
The Bridge.CustomEventInvocation being triggered.
ushort? CurrentPort
The current port for BridgeCommandType.DeprecatedPortUpdate requests.
ICollection< CustomCommand >? CustomCommands
The DMAPI CustomCommands for BridgeCommandType.Startup requests.
ushort? TopicPort
The port that should be used to send world topics, if not the default.
DreamDaemonSecurity? MinimumSecurityLevel
The minimum required DreamDaemonSecurity level for BridgeCommandType.Startup requests.
ChunkData? Chunk
The ChunkData for BridgeCommandType.Chunk requests.
Version? Version
The DMAPI global::System.Version for BridgeCommandType.Startup requests.
Represents a message to send to one or more Chat.ChannelRepresentations.
Definition ChatMessage.cs:9
A packet of a split serialized set of data.
Definition ChunkData.cs:7
DreamDaemonSecurity
DreamDaemon's security level.
BridgeCommandType
Represents the BridgeParameters.CommandType.