diff --git a/20180906135553___m_s_initial_create_8_designer_8cs.html b/20180906135553___m_s_initial_create_8_designer_8cs.html index be373ae741..1e6f3c5193 100644 --- a/20180906135553___m_s_initial_create_8_designer_8cs.html +++ b/20180906135553___m_s_initial_create_8_designer_8cs.html @@ -3,7 +3,7 @@ - + tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20180906135553_MSInitialCreate.Designer.cs File Reference @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807213255_MSAddDeploymentColumns.Designer.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns
 Adds columns for GitHub deployments for MSSQL. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807213255___m_s_add_deployment_columns_8_designer_8cs_source.html b/20200807213255___m_s_add_deployment_columns_8_designer_8cs_source.html new file mode 100644 index 0000000000..cdc4afc5ed --- /dev/null +++ b/20200807213255___m_s_add_deployment_columns_8_designer_8cs_source.html @@ -0,0 +1,865 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213255_MSAddDeploymentColumns.Designer.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807213255_MSAddDeploymentColumns.Designer.cs
+
+
+Go to the documentation of this file.
1 // <auto-generated />
+
2 using System;
+
3 using Microsoft.EntityFrameworkCore;
+
4 using Microsoft.EntityFrameworkCore.Infrastructure;
+
5 using Microsoft.EntityFrameworkCore.Metadata;
+
6 using Microsoft.EntityFrameworkCore.Migrations;
+
7 
+ +
9 {
+
10  [DbContext(typeof(SqlServerDatabaseContext))]
+
11  [Migration("20200807213255_MSAddDeploymentColumns")]
+
12  partial class MSAddDeploymentColumns
+
13  {
+
15  protected override void BuildTargetModel(ModelBuilder modelBuilder)
+
16  {
+
17 #pragma warning disable 612, 618
+
18  modelBuilder
+
19  .HasAnnotation("ProductVersion", "3.1.6")
+
20  .HasAnnotation("Relational:MaxIdentifierLength", 128)
+
21  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
22 
+
23  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
24  {
+
25  b.Property<long>("Id")
+
26  .ValueGeneratedOnAdd()
+
27  .HasColumnType("bigint")
+
28  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
29 
+
30  b.Property<int>("ChannelLimit")
+
31  .HasColumnType("int");
+
32 
+
33  b.Property<string>("ConnectionString")
+
34  .IsRequired()
+
35  .HasColumnType("nvarchar(max)")
+
36  .HasMaxLength(10000);
+
37 
+
38  b.Property<bool?>("Enabled")
+
39  .HasColumnType("bit");
+
40 
+
41  b.Property<long>("InstanceId")
+
42  .HasColumnType("bigint");
+
43 
+
44  b.Property<string>("Name")
+
45  .IsRequired()
+
46  .HasColumnType("nvarchar(100)")
+
47  .HasMaxLength(100);
+
48 
+
49  b.Property<int>("Provider")
+
50  .HasColumnType("int");
+
51 
+
52  b.Property<long>("ReconnectionInterval")
+
53  .HasColumnType("bigint");
+
54 
+
55  b.HasKey("Id");
+
56 
+
57  b.HasIndex("InstanceId", "Name")
+
58  .IsUnique();
+
59 
+
60  b.ToTable("ChatBots");
+
61  });
+
62 
+
63  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
64  {
+
65  b.Property<long>("Id")
+
66  .ValueGeneratedOnAdd()
+
67  .HasColumnType("bigint")
+
68  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
69 
+
70  b.Property<long>("ChatSettingsId")
+
71  .HasColumnType("bigint");
+
72 
+
73  b.Property<decimal?>("DiscordChannelId")
+
74  .HasColumnType("decimal(20,0)");
+
75 
+
76  b.Property<string>("IrcChannel")
+
77  .HasColumnType("nvarchar(100)")
+
78  .HasMaxLength(100);
+
79 
+
80  b.Property<bool?>("IsAdminChannel")
+
81  .IsRequired()
+
82  .HasColumnType("bit");
+
83 
+
84  b.Property<bool?>("IsUpdatesChannel")
+
85  .IsRequired()
+
86  .HasColumnType("bit");
+
87 
+
88  b.Property<bool?>("IsWatchdogChannel")
+
89  .IsRequired()
+
90  .HasColumnType("bit");
+
91 
+
92  b.Property<string>("Tag")
+
93  .HasColumnType("nvarchar(max)")
+
94  .HasMaxLength(10000);
+
95 
+
96  b.HasKey("Id");
+
97 
+
98  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
99  .IsUnique()
+
100  .HasFilter("[DiscordChannelId] IS NOT NULL");
+
101 
+
102  b.HasIndex("ChatSettingsId", "IrcChannel")
+
103  .IsUnique()
+
104  .HasFilter("[IrcChannel] IS NOT NULL");
+
105 
+
106  b.ToTable("ChatChannels");
+
107  });
+
108 
+
109  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
110  {
+
111  b.Property<long>("Id")
+
112  .ValueGeneratedOnAdd()
+
113  .HasColumnType("bigint")
+
114  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
115 
+
116  b.Property<string>("ByondVersion")
+
117  .IsRequired()
+
118  .HasColumnType("nvarchar(max)");
+
119 
+
120  b.Property<int?>("DMApiMajorVersion")
+
121  .HasColumnType("int");
+
122 
+
123  b.Property<int?>("DMApiMinorVersion")
+
124  .HasColumnType("int");
+
125 
+
126  b.Property<int?>("DMApiPatchVersion")
+
127  .HasColumnType("int");
+
128 
+
129  b.Property<Guid?>("DirectoryName")
+
130  .IsRequired()
+
131  .HasColumnType("uniqueidentifier");
+
132 
+
133  b.Property<string>("DmeName")
+
134  .IsRequired()
+
135  .HasColumnType("nvarchar(max)");
+
136 
+
137  b.Property<int?>("GitHubDeploymentId")
+
138  .HasColumnType("int");
+
139 
+
140  b.Property<long?>("GitHubRepoId")
+
141  .HasColumnType("bigint");
+
142 
+
143  b.Property<long>("JobId")
+
144  .HasColumnType("bigint");
+
145 
+
146  b.Property<int?>("MinimumSecurityLevel")
+
147  .HasColumnType("int");
+
148 
+
149  b.Property<string>("Output")
+
150  .IsRequired()
+
151  .HasColumnType("nvarchar(max)");
+
152 
+
153  b.Property<long>("RevisionInformationId")
+
154  .HasColumnType("bigint");
+
155 
+
156  b.HasKey("Id");
+
157 
+
158  b.HasIndex("DirectoryName");
+
159 
+
160  b.HasIndex("JobId")
+
161  .IsUnique();
+
162 
+
163  b.HasIndex("RevisionInformationId");
+
164 
+
165  b.ToTable("CompileJobs");
+
166  });
+
167 
+
168  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
169  {
+
170  b.Property<long>("Id")
+
171  .ValueGeneratedOnAdd()
+
172  .HasColumnType("bigint")
+
173  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
174 
+
175  b.Property<bool?>("AllowWebClient")
+
176  .IsRequired()
+
177  .HasColumnType("bit");
+
178 
+
179  b.Property<bool?>("AutoStart")
+
180  .IsRequired()
+
181  .HasColumnType("bit");
+
182 
+
183  b.Property<long>("HeartbeatSeconds")
+
184  .HasColumnType("bigint");
+
185 
+
186  b.Property<long>("InstanceId")
+
187  .HasColumnType("bigint");
+
188 
+
189  b.Property<int>("Port")
+
190  .HasColumnType("int");
+
191 
+
192  b.Property<int>("SecurityLevel")
+
193  .HasColumnType("int");
+
194 
+
195  b.Property<long>("StartupTimeout")
+
196  .HasColumnType("bigint");
+
197 
+
198  b.Property<long>("TopicRequestTimeout")
+
199  .HasColumnType("bigint");
+
200 
+
201  b.HasKey("Id");
+
202 
+
203  b.HasIndex("InstanceId")
+
204  .IsUnique();
+
205 
+
206  b.ToTable("DreamDaemonSettings");
+
207  });
+
208 
+
209  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
210  {
+
211  b.Property<long>("Id")
+
212  .ValueGeneratedOnAdd()
+
213  .HasColumnType("bigint")
+
214  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
215 
+
216  b.Property<int>("ApiValidationPort")
+
217  .HasColumnType("int");
+
218 
+
219  b.Property<int>("ApiValidationSecurityLevel")
+
220  .HasColumnType("int");
+
221 
+
222  b.Property<long>("InstanceId")
+
223  .HasColumnType("bigint");
+
224 
+
225  b.Property<string>("ProjectName")
+
226  .HasColumnType("nvarchar(max)")
+
227  .HasMaxLength(10000);
+
228 
+
229  b.Property<bool?>("RequireDMApiValidation")
+
230  .IsRequired()
+
231  .HasColumnType("bit");
+
232 
+
233  b.HasKey("Id");
+
234 
+
235  b.HasIndex("InstanceId")
+
236  .IsUnique();
+
237 
+
238  b.ToTable("DreamMakerSettings");
+
239  });
+
240 
+
241  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
242  {
+
243  b.Property<long>("Id")
+
244  .ValueGeneratedOnAdd()
+
245  .HasColumnType("bigint")
+
246  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
247 
+
248  b.Property<long>("AutoUpdateInterval")
+
249  .HasColumnType("bigint");
+
250 
+
251  b.Property<int>("ChatBotLimit")
+
252  .HasColumnType("int");
+
253 
+
254  b.Property<int>("ConfigurationType")
+
255  .HasColumnType("int");
+
256 
+
257  b.Property<string>("Name")
+
258  .IsRequired()
+
259  .HasColumnType("nvarchar(max)")
+
260  .HasMaxLength(10000);
+
261 
+
262  b.Property<bool?>("Online")
+
263  .IsRequired()
+
264  .HasColumnType("bit");
+
265 
+
266  b.Property<string>("Path")
+
267  .IsRequired()
+
268  .HasColumnType("nvarchar(450)");
+
269 
+
270  b.HasKey("Id");
+
271 
+
272  b.HasIndex("Path")
+
273  .IsUnique();
+
274 
+
275  b.ToTable("Instances");
+
276  });
+
277 
+
278  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
279  {
+
280  b.Property<long>("Id")
+
281  .ValueGeneratedOnAdd()
+
282  .HasColumnType("bigint")
+
283  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
284 
+
285  b.Property<decimal>("ByondRights")
+
286  .HasColumnType("decimal(20,0)");
+
287 
+
288  b.Property<decimal>("ChatBotRights")
+
289  .HasColumnType("decimal(20,0)");
+
290 
+
291  b.Property<decimal>("ConfigurationRights")
+
292  .HasColumnType("decimal(20,0)");
+
293 
+
294  b.Property<decimal>("DreamDaemonRights")
+
295  .HasColumnType("decimal(20,0)");
+
296 
+
297  b.Property<decimal>("DreamMakerRights")
+
298  .HasColumnType("decimal(20,0)");
+
299 
+
300  b.Property<long>("InstanceId")
+
301  .HasColumnType("bigint");
+
302 
+
303  b.Property<decimal>("InstanceUserRights")
+
304  .HasColumnType("decimal(20,0)");
+
305 
+
306  b.Property<decimal>("RepositoryRights")
+
307  .HasColumnType("decimal(20,0)");
+
308 
+
309  b.Property<long>("UserId")
+
310  .HasColumnType("bigint");
+
311 
+
312  b.HasKey("Id");
+
313 
+
314  b.HasIndex("InstanceId");
+
315 
+
316  b.HasIndex("UserId", "InstanceId")
+
317  .IsUnique();
+
318 
+
319  b.ToTable("InstanceUsers");
+
320  });
+
321 
+
322  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
323  {
+
324  b.Property<long>("Id")
+
325  .ValueGeneratedOnAdd()
+
326  .HasColumnType("bigint")
+
327  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
328 
+
329  b.Property<decimal?>("CancelRight")
+
330  .HasColumnType("decimal(20,0)");
+
331 
+
332  b.Property<decimal?>("CancelRightsType")
+
333  .HasColumnType("decimal(20,0)");
+
334 
+
335  b.Property<bool?>("Cancelled")
+
336  .IsRequired()
+
337  .HasColumnType("bit");
+
338 
+
339  b.Property<long?>("CancelledById")
+
340  .HasColumnType("bigint");
+
341 
+
342  b.Property<string>("Description")
+
343  .IsRequired()
+
344  .HasColumnType("nvarchar(max)");
+
345 
+
346  b.Property<long?>("ErrorCode")
+
347  .HasColumnType("bigint");
+
348 
+
349  b.Property<string>("ExceptionDetails")
+
350  .HasColumnType("nvarchar(max)");
+
351 
+
352  b.Property<long>("InstanceId")
+
353  .HasColumnType("bigint");
+
354 
+
355  b.Property<DateTimeOffset?>("StartedAt")
+
356  .IsRequired()
+
357  .HasColumnType("datetimeoffset");
+
358 
+
359  b.Property<long>("StartedById")
+
360  .HasColumnType("bigint");
+
361 
+
362  b.Property<DateTimeOffset?>("StoppedAt")
+
363  .HasColumnType("datetimeoffset");
+
364 
+
365  b.HasKey("Id");
+
366 
+
367  b.HasIndex("CancelledById");
+
368 
+
369  b.HasIndex("InstanceId");
+
370 
+
371  b.HasIndex("StartedById");
+
372 
+
373  b.ToTable("Jobs");
+
374  });
+
375 
+
376  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
377  {
+
378  b.Property<long>("Id")
+
379  .ValueGeneratedOnAdd()
+
380  .HasColumnType("bigint")
+
381  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
382 
+
383  b.Property<string>("AccessIdentifier")
+
384  .IsRequired()
+
385  .HasColumnType("nvarchar(max)");
+
386 
+
387  b.Property<long>("CompileJobId")
+
388  .HasColumnType("bigint");
+
389 
+
390  b.Property<int>("LaunchSecurityLevel")
+
391  .HasColumnType("int");
+
392 
+
393  b.Property<int>("Port")
+
394  .HasColumnType("int");
+
395 
+
396  b.Property<int>("ProcessId")
+
397  .HasColumnType("int");
+
398 
+
399  b.Property<int>("RebootState")
+
400  .HasColumnType("int");
+
401 
+
402  b.HasKey("Id");
+
403 
+
404  b.HasIndex("CompileJobId");
+
405 
+
406  b.ToTable("ReattachInformations");
+
407  });
+
408 
+
409  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
410  {
+
411  b.Property<long>("Id")
+
412  .ValueGeneratedOnAdd()
+
413  .HasColumnType("bigint")
+
414  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
415 
+
416  b.Property<string>("AccessToken")
+
417  .HasColumnType("nvarchar(max)")
+
418  .HasMaxLength(10000);
+
419 
+
420  b.Property<string>("AccessUser")
+
421  .HasColumnType("nvarchar(max)")
+
422  .HasMaxLength(10000);
+
423 
+
424  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
425  .IsRequired()
+
426  .HasColumnType("bit");
+
427 
+
428  b.Property<bool?>("AutoUpdatesSynchronize")
+
429  .IsRequired()
+
430  .HasColumnType("bit");
+
431 
+
432  b.Property<string>("CommitterEmail")
+
433  .IsRequired()
+
434  .HasColumnType("nvarchar(max)")
+
435  .HasMaxLength(10000);
+
436 
+
437  b.Property<string>("CommitterName")
+
438  .IsRequired()
+
439  .HasColumnType("nvarchar(max)")
+
440  .HasMaxLength(10000);
+
441 
+
442  b.Property<bool?>("CreateGitHubDeployments")
+
443  .IsRequired()
+
444  .HasColumnType("bit");
+
445 
+
446  b.Property<long>("InstanceId")
+
447  .HasColumnType("bigint");
+
448 
+
449  b.Property<bool?>("PostTestMergeComment")
+
450  .IsRequired()
+
451  .HasColumnType("bit");
+
452 
+
453  b.Property<bool?>("PushTestMergeCommits")
+
454  .IsRequired()
+
455  .HasColumnType("bit");
+
456 
+
457  b.Property<bool?>("ShowTestMergeCommitters")
+
458  .IsRequired()
+
459  .HasColumnType("bit");
+
460 
+
461  b.HasKey("Id");
+
462 
+
463  b.HasIndex("InstanceId")
+
464  .IsUnique();
+
465 
+
466  b.ToTable("RepositorySettings");
+
467  });
+
468 
+
469  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
470  {
+
471  b.Property<long>("Id")
+
472  .ValueGeneratedOnAdd()
+
473  .HasColumnType("bigint")
+
474  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
475 
+
476  b.Property<long>("RevisionInformationId")
+
477  .HasColumnType("bigint");
+
478 
+
479  b.Property<long>("TestMergeId")
+
480  .HasColumnType("bigint");
+
481 
+
482  b.HasKey("Id");
+
483 
+
484  b.HasIndex("RevisionInformationId");
+
485 
+
486  b.HasIndex("TestMergeId");
+
487 
+
488  b.ToTable("RevInfoTestMerges");
+
489  });
+
490 
+
491  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
492  {
+
493  b.Property<long>("Id")
+
494  .ValueGeneratedOnAdd()
+
495  .HasColumnType("bigint")
+
496  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
497 
+
498  b.Property<string>("CommitSha")
+
499  .IsRequired()
+
500  .HasColumnType("nvarchar(40)")
+
501  .HasMaxLength(40);
+
502 
+
503  b.Property<long>("InstanceId")
+
504  .HasColumnType("bigint");
+
505 
+
506  b.Property<string>("OriginCommitSha")
+
507  .IsRequired()
+
508  .HasColumnType("nvarchar(40)")
+
509  .HasMaxLength(40);
+
510 
+
511  b.HasKey("Id");
+
512 
+
513  b.HasIndex("InstanceId", "CommitSha")
+
514  .IsUnique();
+
515 
+
516  b.ToTable("RevisionInformations");
+
517  });
+
518 
+
519  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
520  {
+
521  b.Property<long>("Id")
+
522  .ValueGeneratedOnAdd()
+
523  .HasColumnType("bigint")
+
524  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
525 
+
526  b.Property<string>("Author")
+
527  .IsRequired()
+
528  .HasColumnType("nvarchar(max)");
+
529 
+
530  b.Property<string>("BodyAtMerge")
+
531  .IsRequired()
+
532  .HasColumnType("nvarchar(max)");
+
533 
+
534  b.Property<string>("Comment")
+
535  .HasColumnType("nvarchar(max)")
+
536  .HasMaxLength(10000);
+
537 
+
538  b.Property<DateTimeOffset>("MergedAt")
+
539  .HasColumnType("datetimeoffset");
+
540 
+
541  b.Property<long>("MergedById")
+
542  .HasColumnType("bigint");
+
543 
+
544  b.Property<int>("Number")
+
545  .HasColumnType("int");
+
546 
+
547  b.Property<long?>("PrimaryRevisionInformationId")
+
548  .IsRequired()
+
549  .HasColumnType("bigint");
+
550 
+
551  b.Property<string>("PullRequestRevision")
+
552  .IsRequired()
+
553  .HasColumnType("nvarchar(40)")
+
554  .HasMaxLength(40);
+
555 
+
556  b.Property<string>("TitleAtMerge")
+
557  .IsRequired()
+
558  .HasColumnType("nvarchar(max)");
+
559 
+
560  b.Property<string>("Url")
+
561  .IsRequired()
+
562  .HasColumnType("nvarchar(max)");
+
563 
+
564  b.HasKey("Id");
+
565 
+
566  b.HasIndex("MergedById");
+
567 
+
568  b.HasIndex("PrimaryRevisionInformationId")
+
569  .IsUnique();
+
570 
+
571  b.ToTable("TestMerges");
+
572  });
+
573 
+
574  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
575  {
+
576  b.Property<long?>("Id")
+
577  .ValueGeneratedOnAdd()
+
578  .HasColumnType("bigint")
+
579  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
580 
+
581  b.Property<decimal>("AdministrationRights")
+
582  .HasColumnType("decimal(20,0)");
+
583 
+
584  b.Property<string>("CanonicalName")
+
585  .IsRequired()
+
586  .HasColumnType("nvarchar(450)");
+
587 
+
588  b.Property<DateTimeOffset?>("CreatedAt")
+
589  .IsRequired()
+
590  .HasColumnType("datetimeoffset");
+
591 
+
592  b.Property<long?>("CreatedById")
+
593  .HasColumnType("bigint");
+
594 
+
595  b.Property<bool?>("Enabled")
+
596  .IsRequired()
+
597  .HasColumnType("bit");
+
598 
+
599  b.Property<decimal>("InstanceManagerRights")
+
600  .HasColumnType("decimal(20,0)");
+
601 
+
602  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
603  .HasColumnType("datetimeoffset");
+
604 
+
605  b.Property<string>("Name")
+
606  .IsRequired()
+
607  .HasColumnType("nvarchar(max)")
+
608  .HasMaxLength(10000);
+
609 
+
610  b.Property<string>("PasswordHash")
+
611  .HasColumnType("nvarchar(max)");
+
612 
+
613  b.Property<string>("SystemIdentifier")
+
614  .HasColumnType("nvarchar(450)");
+
615 
+
616  b.HasKey("Id");
+
617 
+
618  b.HasIndex("CanonicalName")
+
619  .IsUnique();
+
620 
+
621  b.HasIndex("CreatedById");
+
622 
+
623  b.HasIndex("SystemIdentifier")
+
624  .IsUnique()
+
625  .HasFilter("[SystemIdentifier] IS NOT NULL");
+
626 
+
627  b.ToTable("Users");
+
628  });
+
629 
+
630  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
631  {
+
632  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
633  .WithMany("ChatSettings")
+
634  .HasForeignKey("InstanceId")
+
635  .OnDelete(DeleteBehavior.Cascade)
+
636  .IsRequired();
+
637  });
+
638 
+
639  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
640  {
+
641  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
642  .WithMany("Channels")
+
643  .HasForeignKey("ChatSettingsId")
+
644  .OnDelete(DeleteBehavior.Cascade)
+
645  .IsRequired();
+
646  });
+
647 
+
648  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
649  {
+
650  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
651  .WithOne()
+
652  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
653  .OnDelete(DeleteBehavior.Cascade)
+
654  .IsRequired();
+
655 
+
656  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
657  .WithMany("CompileJobs")
+
658  .HasForeignKey("RevisionInformationId")
+
659  .OnDelete(DeleteBehavior.ClientNoAction)
+
660  .IsRequired();
+
661  });
+
662 
+
663  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
664  {
+
665  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
666  .WithOne("DreamDaemonSettings")
+
667  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
668  .OnDelete(DeleteBehavior.Cascade)
+
669  .IsRequired();
+
670  });
+
671 
+
672  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
673  {
+
674  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
675  .WithOne("DreamMakerSettings")
+
676  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
677  .OnDelete(DeleteBehavior.Cascade)
+
678  .IsRequired();
+
679  });
+
680 
+
681  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
682  {
+
683  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
684  .WithMany("InstanceUsers")
+
685  .HasForeignKey("InstanceId")
+
686  .OnDelete(DeleteBehavior.Cascade)
+
687  .IsRequired();
+
688 
+
689  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
690  .WithMany("InstanceUsers")
+
691  .HasForeignKey("UserId")
+
692  .OnDelete(DeleteBehavior.Cascade)
+
693  .IsRequired();
+
694  });
+
695 
+
696  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
697  {
+
698  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
699  .WithMany()
+
700  .HasForeignKey("CancelledById");
+
701 
+
702  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
703  .WithMany("Jobs")
+
704  .HasForeignKey("InstanceId")
+
705  .OnDelete(DeleteBehavior.Cascade)
+
706  .IsRequired();
+
707 
+
708  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
709  .WithMany()
+
710  .HasForeignKey("StartedById")
+
711  .OnDelete(DeleteBehavior.Cascade)
+
712  .IsRequired();
+
713  });
+
714 
+
715  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
716  {
+
717  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
718  .WithMany()
+
719  .HasForeignKey("CompileJobId")
+
720  .OnDelete(DeleteBehavior.Cascade)
+
721  .IsRequired();
+
722  });
+
723 
+
724  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
725  {
+
726  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
727  .WithOne("RepositorySettings")
+
728  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
729  .OnDelete(DeleteBehavior.Cascade)
+
730  .IsRequired();
+
731  });
+
732 
+
733  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
734  {
+
735  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
736  .WithMany("ActiveTestMerges")
+
737  .HasForeignKey("RevisionInformationId")
+
738  .OnDelete(DeleteBehavior.Cascade)
+
739  .IsRequired();
+
740 
+
741  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
742  .WithMany("RevisonInformations")
+
743  .HasForeignKey("TestMergeId")
+
744  .OnDelete(DeleteBehavior.ClientNoAction)
+
745  .IsRequired();
+
746  });
+
747 
+
748  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
749  {
+
750  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
751  .WithMany("RevisionInformations")
+
752  .HasForeignKey("InstanceId")
+
753  .OnDelete(DeleteBehavior.Cascade)
+
754  .IsRequired();
+
755  });
+
756 
+
757  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
758  {
+
759  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
760  .WithMany("TestMerges")
+
761  .HasForeignKey("MergedById")
+
762  .OnDelete(DeleteBehavior.Restrict)
+
763  .IsRequired();
+
764 
+
765  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
766  .WithOne("PrimaryTestMerge")
+
767  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
768  .OnDelete(DeleteBehavior.Cascade)
+
769  .IsRequired();
+
770  });
+
771 
+
772  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
773  {
+
774  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
775  .WithMany("CreatedUsers")
+
776  .HasForeignKey("CreatedById");
+
777  });
+
778 #pragma warning restore 612, 618
+
779  }
+
780  }
+
781 }
+
+
DbContext
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.BuildTargetModel
override void BuildTargetModel(ModelBuilder modelBuilder)
Definition: 20200807213255_MSAddDeploymentColumns.Designer.cs:15
+
Migration
+ + + + diff --git a/20200807213255___m_s_add_deployment_columns_8cs.html b/20200807213255___m_s_add_deployment_columns_8cs.html new file mode 100644 index 0000000000..7778f67d27 --- /dev/null +++ b/20200807213255___m_s_add_deployment_columns_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213255_MSAddDeploymentColumns.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807213255_MSAddDeploymentColumns.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns
 Adds columns for GitHub deployments for MSSQL. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807213255___m_s_add_deployment_columns_8cs_source.html b/20200807213255___m_s_add_deployment_columns_8cs_source.html new file mode 100644 index 0000000000..6058b73472 --- /dev/null +++ b/20200807213255___m_s_add_deployment_columns_8cs_source.html @@ -0,0 +1,134 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213255_MSAddDeploymentColumns.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807213255_MSAddDeploymentColumns.cs
+
+
+Go to the documentation of this file.
1 using Microsoft.EntityFrameworkCore.Migrations;
+
2 using System;
+
3 
+ +
5 {
+
9  public partial class MSAddDeploymentColumns : Migration
+
10  {
+
12  protected override void Up(MigrationBuilder migrationBuilder)
+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
33 
+
35  protected override void Down(MigrationBuilder migrationBuilder)
+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.DropColumn(
+
41  name: "CreateGitHubDeployments",
+
42  table: "RepositorySettings");
+
43 
+
44  migrationBuilder.DropColumn(
+
45  name: "GitHubDeploymentId",
+
46  table: "CompileJobs");
+
47 
+
48  migrationBuilder.DropColumn(
+
49  name: "GitHubRepoId",
+
50  table: "CompileJobs");
+
51  }
+
52  }
+
53 }
+
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Migration
+
Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns
Adds columns for GitHub deployments for MSSQL.
Definition: 20200807213255_MSAddDeploymentColumns.cs:10
+
Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Down
override void Down(MigrationBuilder migrationBuilder)
Definition: 20200807213255_MSAddDeploymentColumns.cs:35
+
Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Up
override void Up(MigrationBuilder migrationBuilder)
Definition: 20200807213255_MSAddDeploymentColumns.cs:12
+ + + + diff --git a/20200807213742___m_y_add_deployment_columns_8_designer_8cs.html b/20200807213742___m_y_add_deployment_columns_8_designer_8cs.html new file mode 100644 index 0000000000..c675be5258 --- /dev/null +++ b/20200807213742___m_y_add_deployment_columns_8_designer_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213742_MYAddDeploymentColumns.Designer.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807213742_MYAddDeploymentColumns.Designer.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns
 Adds columns for GitHub deployments for MYSQL. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807213742___m_y_add_deployment_columns_8_designer_8cs_source.html b/20200807213742___m_y_add_deployment_columns_8_designer_8cs_source.html new file mode 100644 index 0000000000..b02af70744 --- /dev/null +++ b/20200807213742___m_y_add_deployment_columns_8_designer_8cs_source.html @@ -0,0 +1,855 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213742_MYAddDeploymentColumns.Designer.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807213742_MYAddDeploymentColumns.Designer.cs
+
+
+Go to the documentation of this file.
1 // <auto-generated />
+
2 using System;
+
3 using Microsoft.EntityFrameworkCore;
+
4 using Microsoft.EntityFrameworkCore.Infrastructure;
+
5 using Microsoft.EntityFrameworkCore.Migrations;
+
6 
+ +
8 {
+
9  [DbContext(typeof(MySqlDatabaseContext))]
+
10  [Migration("20200807213742_MYAddDeploymentColumns")]
+
11  partial class MYAddDeploymentColumns
+
12  {
+
14  protected override void BuildTargetModel(ModelBuilder modelBuilder)
+
15  {
+
16 #pragma warning disable 612, 618
+
17  modelBuilder
+
18  .HasAnnotation("ProductVersion", "3.1.6")
+
19  .HasAnnotation("Relational:MaxIdentifierLength", 64);
+
20 
+
21  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
22  {
+
23  b.Property<long>("Id")
+
24  .ValueGeneratedOnAdd()
+
25  .HasColumnType("bigint");
+
26 
+
27  b.Property<ushort?>("ChannelLimit")
+
28  .IsRequired()
+
29  .HasColumnType("smallint unsigned");
+
30 
+
31  b.Property<string>("ConnectionString")
+
32  .IsRequired()
+
33  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
34  .HasMaxLength(10000);
+
35 
+
36  b.Property<bool?>("Enabled")
+
37  .HasColumnType("tinyint(1)");
+
38 
+
39  b.Property<long>("InstanceId")
+
40  .HasColumnType("bigint");
+
41 
+
42  b.Property<string>("Name")
+
43  .IsRequired()
+
44  .HasColumnType("varchar(100) CHARACTER SET utf8mb4")
+
45  .HasMaxLength(100);
+
46 
+
47  b.Property<int>("Provider")
+
48  .HasColumnType("int");
+
49 
+
50  b.Property<uint?>("ReconnectionInterval")
+
51  .IsRequired()
+
52  .HasColumnType("int unsigned");
+
53 
+
54  b.HasKey("Id");
+
55 
+
56  b.HasIndex("InstanceId", "Name")
+
57  .IsUnique();
+
58 
+
59  b.ToTable("ChatBots");
+
60  });
+
61 
+
62  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
63  {
+
64  b.Property<long>("Id")
+
65  .ValueGeneratedOnAdd()
+
66  .HasColumnType("bigint");
+
67 
+
68  b.Property<long>("ChatSettingsId")
+
69  .HasColumnType("bigint");
+
70 
+
71  b.Property<ulong?>("DiscordChannelId")
+
72  .HasColumnType("bigint unsigned");
+
73 
+
74  b.Property<string>("IrcChannel")
+
75  .HasColumnType("varchar(100) CHARACTER SET utf8mb4")
+
76  .HasMaxLength(100);
+
77 
+
78  b.Property<bool?>("IsAdminChannel")
+
79  .IsRequired()
+
80  .HasColumnType("tinyint(1)");
+
81 
+
82  b.Property<bool?>("IsUpdatesChannel")
+
83  .IsRequired()
+
84  .HasColumnType("tinyint(1)");
+
85 
+
86  b.Property<bool?>("IsWatchdogChannel")
+
87  .IsRequired()
+
88  .HasColumnType("tinyint(1)");
+
89 
+
90  b.Property<string>("Tag")
+
91  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
92  .HasMaxLength(10000);
+
93 
+
94  b.HasKey("Id");
+
95 
+
96  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
97  .IsUnique();
+
98 
+
99  b.HasIndex("ChatSettingsId", "IrcChannel")
+
100  .IsUnique();
+
101 
+
102  b.ToTable("ChatChannels");
+
103  });
+
104 
+
105  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
106  {
+
107  b.Property<long>("Id")
+
108  .ValueGeneratedOnAdd()
+
109  .HasColumnType("bigint");
+
110 
+
111  b.Property<string>("ByondVersion")
+
112  .IsRequired()
+
113  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
114 
+
115  b.Property<int?>("DMApiMajorVersion")
+
116  .HasColumnType("int");
+
117 
+
118  b.Property<int?>("DMApiMinorVersion")
+
119  .HasColumnType("int");
+
120 
+
121  b.Property<int?>("DMApiPatchVersion")
+
122  .HasColumnType("int");
+
123 
+
124  b.Property<Guid?>("DirectoryName")
+
125  .IsRequired()
+
126  .HasColumnType("char(36)");
+
127 
+
128  b.Property<string>("DmeName")
+
129  .IsRequired()
+
130  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
131 
+
132  b.Property<int?>("GitHubDeploymentId")
+
133  .HasColumnType("int");
+
134 
+
135  b.Property<long?>("GitHubRepoId")
+
136  .HasColumnType("bigint");
+
137 
+
138  b.Property<long>("JobId")
+
139  .HasColumnType("bigint");
+
140 
+
141  b.Property<int?>("MinimumSecurityLevel")
+
142  .HasColumnType("int");
+
143 
+
144  b.Property<string>("Output")
+
145  .IsRequired()
+
146  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
147 
+
148  b.Property<long>("RevisionInformationId")
+
149  .HasColumnType("bigint");
+
150 
+
151  b.HasKey("Id");
+
152 
+
153  b.HasIndex("DirectoryName");
+
154 
+
155  b.HasIndex("JobId")
+
156  .IsUnique();
+
157 
+
158  b.HasIndex("RevisionInformationId");
+
159 
+
160  b.ToTable("CompileJobs");
+
161  });
+
162 
+
163  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
164  {
+
165  b.Property<long>("Id")
+
166  .ValueGeneratedOnAdd()
+
167  .HasColumnType("bigint");
+
168 
+
169  b.Property<bool?>("AllowWebClient")
+
170  .IsRequired()
+
171  .HasColumnType("tinyint(1)");
+
172 
+
173  b.Property<bool?>("AutoStart")
+
174  .IsRequired()
+
175  .HasColumnType("tinyint(1)");
+
176 
+
177  b.Property<uint?>("HeartbeatSeconds")
+
178  .IsRequired()
+
179  .HasColumnType("int unsigned");
+
180 
+
181  b.Property<long>("InstanceId")
+
182  .HasColumnType("bigint");
+
183 
+
184  b.Property<ushort?>("Port")
+
185  .IsRequired()
+
186  .HasColumnType("smallint unsigned");
+
187 
+
188  b.Property<int>("SecurityLevel")
+
189  .HasColumnType("int");
+
190 
+
191  b.Property<uint?>("StartupTimeout")
+
192  .IsRequired()
+
193  .HasColumnType("int unsigned");
+
194 
+
195  b.Property<uint?>("TopicRequestTimeout")
+
196  .IsRequired()
+
197  .HasColumnType("int unsigned");
+
198 
+
199  b.HasKey("Id");
+
200 
+
201  b.HasIndex("InstanceId")
+
202  .IsUnique();
+
203 
+
204  b.ToTable("DreamDaemonSettings");
+
205  });
+
206 
+
207  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
208  {
+
209  b.Property<long>("Id")
+
210  .ValueGeneratedOnAdd()
+
211  .HasColumnType("bigint");
+
212 
+
213  b.Property<ushort?>("ApiValidationPort")
+
214  .IsRequired()
+
215  .HasColumnType("smallint unsigned");
+
216 
+
217  b.Property<int>("ApiValidationSecurityLevel")
+
218  .HasColumnType("int");
+
219 
+
220  b.Property<long>("InstanceId")
+
221  .HasColumnType("bigint");
+
222 
+
223  b.Property<string>("ProjectName")
+
224  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
225  .HasMaxLength(10000);
+
226 
+
227  b.Property<bool?>("RequireDMApiValidation")
+
228  .IsRequired()
+
229  .HasColumnType("tinyint(1)");
+
230 
+
231  b.HasKey("Id");
+
232 
+
233  b.HasIndex("InstanceId")
+
234  .IsUnique();
+
235 
+
236  b.ToTable("DreamMakerSettings");
+
237  });
+
238 
+
239  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
240  {
+
241  b.Property<long>("Id")
+
242  .ValueGeneratedOnAdd()
+
243  .HasColumnType("bigint");
+
244 
+
245  b.Property<uint?>("AutoUpdateInterval")
+
246  .IsRequired()
+
247  .HasColumnType("int unsigned");
+
248 
+
249  b.Property<ushort?>("ChatBotLimit")
+
250  .IsRequired()
+
251  .HasColumnType("smallint unsigned");
+
252 
+
253  b.Property<int>("ConfigurationType")
+
254  .HasColumnType("int");
+
255 
+
256  b.Property<string>("Name")
+
257  .IsRequired()
+
258  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
259  .HasMaxLength(10000);
+
260 
+
261  b.Property<bool?>("Online")
+
262  .IsRequired()
+
263  .HasColumnType("tinyint(1)");
+
264 
+
265  b.Property<string>("Path")
+
266  .IsRequired()
+
267  .HasColumnType("varchar(255) CHARACTER SET utf8mb4");
+
268 
+
269  b.HasKey("Id");
+
270 
+
271  b.HasIndex("Path")
+
272  .IsUnique();
+
273 
+
274  b.ToTable("Instances");
+
275  });
+
276 
+
277  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
278  {
+
279  b.Property<long>("Id")
+
280  .ValueGeneratedOnAdd()
+
281  .HasColumnType("bigint");
+
282 
+
283  b.Property<ulong>("ByondRights")
+
284  .HasColumnType("bigint unsigned");
+
285 
+
286  b.Property<ulong>("ChatBotRights")
+
287  .HasColumnType("bigint unsigned");
+
288 
+
289  b.Property<ulong>("ConfigurationRights")
+
290  .HasColumnType("bigint unsigned");
+
291 
+
292  b.Property<ulong>("DreamDaemonRights")
+
293  .HasColumnType("bigint unsigned");
+
294 
+
295  b.Property<ulong>("DreamMakerRights")
+
296  .HasColumnType("bigint unsigned");
+
297 
+
298  b.Property<long>("InstanceId")
+
299  .HasColumnType("bigint");
+
300 
+
301  b.Property<ulong>("InstanceUserRights")
+
302  .HasColumnType("bigint unsigned");
+
303 
+
304  b.Property<ulong>("RepositoryRights")
+
305  .HasColumnType("bigint unsigned");
+
306 
+
307  b.Property<long>("UserId")
+
308  .HasColumnType("bigint");
+
309 
+
310  b.HasKey("Id");
+
311 
+
312  b.HasIndex("InstanceId");
+
313 
+
314  b.HasIndex("UserId", "InstanceId")
+
315  .IsUnique();
+
316 
+
317  b.ToTable("InstanceUsers");
+
318  });
+
319 
+
320  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
321  {
+
322  b.Property<long>("Id")
+
323  .ValueGeneratedOnAdd()
+
324  .HasColumnType("bigint");
+
325 
+
326  b.Property<ulong?>("CancelRight")
+
327  .HasColumnType("bigint unsigned");
+
328 
+
329  b.Property<ulong?>("CancelRightsType")
+
330  .HasColumnType("bigint unsigned");
+
331 
+
332  b.Property<bool?>("Cancelled")
+
333  .IsRequired()
+
334  .HasColumnType("tinyint(1)");
+
335 
+
336  b.Property<long?>("CancelledById")
+
337  .HasColumnType("bigint");
+
338 
+
339  b.Property<string>("Description")
+
340  .IsRequired()
+
341  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
342 
+
343  b.Property<uint?>("ErrorCode")
+
344  .HasColumnType("int unsigned");
+
345 
+
346  b.Property<string>("ExceptionDetails")
+
347  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
348 
+
349  b.Property<long>("InstanceId")
+
350  .HasColumnType("bigint");
+
351 
+
352  b.Property<DateTimeOffset?>("StartedAt")
+
353  .IsRequired()
+
354  .HasColumnType("datetime(6)");
+
355 
+
356  b.Property<long>("StartedById")
+
357  .HasColumnType("bigint");
+
358 
+
359  b.Property<DateTimeOffset?>("StoppedAt")
+
360  .HasColumnType("datetime(6)");
+
361 
+
362  b.HasKey("Id");
+
363 
+
364  b.HasIndex("CancelledById");
+
365 
+
366  b.HasIndex("InstanceId");
+
367 
+
368  b.HasIndex("StartedById");
+
369 
+
370  b.ToTable("Jobs");
+
371  });
+
372 
+
373  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
374  {
+
375  b.Property<long>("Id")
+
376  .ValueGeneratedOnAdd()
+
377  .HasColumnType("bigint");
+
378 
+
379  b.Property<string>("AccessIdentifier")
+
380  .IsRequired()
+
381  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
382 
+
383  b.Property<long>("CompileJobId")
+
384  .HasColumnType("bigint");
+
385 
+
386  b.Property<int>("LaunchSecurityLevel")
+
387  .HasColumnType("int");
+
388 
+
389  b.Property<ushort>("Port")
+
390  .HasColumnType("smallint unsigned");
+
391 
+
392  b.Property<int>("ProcessId")
+
393  .HasColumnType("int");
+
394 
+
395  b.Property<int>("RebootState")
+
396  .HasColumnType("int");
+
397 
+
398  b.HasKey("Id");
+
399 
+
400  b.HasIndex("CompileJobId");
+
401 
+
402  b.ToTable("ReattachInformations");
+
403  });
+
404 
+
405  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
406  {
+
407  b.Property<long>("Id")
+
408  .ValueGeneratedOnAdd()
+
409  .HasColumnType("bigint");
+
410 
+
411  b.Property<string>("AccessToken")
+
412  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
413  .HasMaxLength(10000);
+
414 
+
415  b.Property<string>("AccessUser")
+
416  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
417  .HasMaxLength(10000);
+
418 
+
419  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
420  .IsRequired()
+
421  .HasColumnType("tinyint(1)");
+
422 
+
423  b.Property<bool?>("AutoUpdatesSynchronize")
+
424  .IsRequired()
+
425  .HasColumnType("tinyint(1)");
+
426 
+
427  b.Property<string>("CommitterEmail")
+
428  .IsRequired()
+
429  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
430  .HasMaxLength(10000);
+
431 
+
432  b.Property<string>("CommitterName")
+
433  .IsRequired()
+
434  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
435  .HasMaxLength(10000);
+
436 
+
437  b.Property<bool?>("CreateGitHubDeployments")
+
438  .IsRequired()
+
439  .HasColumnType("tinyint(1)");
+
440 
+
441  b.Property<long>("InstanceId")
+
442  .HasColumnType("bigint");
+
443 
+
444  b.Property<bool?>("PostTestMergeComment")
+
445  .IsRequired()
+
446  .HasColumnType("tinyint(1)");
+
447 
+
448  b.Property<bool?>("PushTestMergeCommits")
+
449  .IsRequired()
+
450  .HasColumnType("tinyint(1)");
+
451 
+
452  b.Property<bool?>("ShowTestMergeCommitters")
+
453  .IsRequired()
+
454  .HasColumnType("tinyint(1)");
+
455 
+
456  b.HasKey("Id");
+
457 
+
458  b.HasIndex("InstanceId")
+
459  .IsUnique();
+
460 
+
461  b.ToTable("RepositorySettings");
+
462  });
+
463 
+
464  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
465  {
+
466  b.Property<long>("Id")
+
467  .ValueGeneratedOnAdd()
+
468  .HasColumnType("bigint");
+
469 
+
470  b.Property<long>("RevisionInformationId")
+
471  .HasColumnType("bigint");
+
472 
+
473  b.Property<long>("TestMergeId")
+
474  .HasColumnType("bigint");
+
475 
+
476  b.HasKey("Id");
+
477 
+
478  b.HasIndex("RevisionInformationId");
+
479 
+
480  b.HasIndex("TestMergeId");
+
481 
+
482  b.ToTable("RevInfoTestMerges");
+
483  });
+
484 
+
485  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
486  {
+
487  b.Property<long>("Id")
+
488  .ValueGeneratedOnAdd()
+
489  .HasColumnType("bigint");
+
490 
+
491  b.Property<string>("CommitSha")
+
492  .IsRequired()
+
493  .HasColumnType("varchar(40) CHARACTER SET utf8mb4")
+
494  .HasMaxLength(40);
+
495 
+
496  b.Property<long>("InstanceId")
+
497  .HasColumnType("bigint");
+
498 
+
499  b.Property<string>("OriginCommitSha")
+
500  .IsRequired()
+
501  .HasColumnType("varchar(40) CHARACTER SET utf8mb4")
+
502  .HasMaxLength(40);
+
503 
+
504  b.HasKey("Id");
+
505 
+
506  b.HasIndex("InstanceId", "CommitSha")
+
507  .IsUnique();
+
508 
+
509  b.ToTable("RevisionInformations");
+
510  });
+
511 
+
512  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
513  {
+
514  b.Property<long>("Id")
+
515  .ValueGeneratedOnAdd()
+
516  .HasColumnType("bigint");
+
517 
+
518  b.Property<string>("Author")
+
519  .IsRequired()
+
520  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
521 
+
522  b.Property<string>("BodyAtMerge")
+
523  .IsRequired()
+
524  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
525 
+
526  b.Property<string>("Comment")
+
527  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
528  .HasMaxLength(10000);
+
529 
+
530  b.Property<DateTimeOffset>("MergedAt")
+
531  .HasColumnType("datetime(6)");
+
532 
+
533  b.Property<long>("MergedById")
+
534  .HasColumnType("bigint");
+
535 
+
536  b.Property<int>("Number")
+
537  .HasColumnType("int");
+
538 
+
539  b.Property<long?>("PrimaryRevisionInformationId")
+
540  .IsRequired()
+
541  .HasColumnType("bigint");
+
542 
+
543  b.Property<string>("PullRequestRevision")
+
544  .IsRequired()
+
545  .HasColumnType("varchar(40) CHARACTER SET utf8mb4")
+
546  .HasMaxLength(40);
+
547 
+
548  b.Property<string>("TitleAtMerge")
+
549  .IsRequired()
+
550  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
551 
+
552  b.Property<string>("Url")
+
553  .IsRequired()
+
554  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
555 
+
556  b.HasKey("Id");
+
557 
+
558  b.HasIndex("MergedById");
+
559 
+
560  b.HasIndex("PrimaryRevisionInformationId")
+
561  .IsUnique();
+
562 
+
563  b.ToTable("TestMerges");
+
564  });
+
565 
+
566  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
567  {
+
568  b.Property<long?>("Id")
+
569  .ValueGeneratedOnAdd()
+
570  .HasColumnType("bigint");
+
571 
+
572  b.Property<ulong>("AdministrationRights")
+
573  .HasColumnType("bigint unsigned");
+
574 
+
575  b.Property<string>("CanonicalName")
+
576  .IsRequired()
+
577  .HasColumnType("varchar(255) CHARACTER SET utf8mb4");
+
578 
+
579  b.Property<DateTimeOffset?>("CreatedAt")
+
580  .IsRequired()
+
581  .HasColumnType("datetime(6)");
+
582 
+
583  b.Property<long?>("CreatedById")
+
584  .HasColumnType("bigint");
+
585 
+
586  b.Property<bool?>("Enabled")
+
587  .IsRequired()
+
588  .HasColumnType("tinyint(1)");
+
589 
+
590  b.Property<ulong>("InstanceManagerRights")
+
591  .HasColumnType("bigint unsigned");
+
592 
+
593  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
594  .HasColumnType("datetime(6)");
+
595 
+
596  b.Property<string>("Name")
+
597  .IsRequired()
+
598  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
599  .HasMaxLength(10000);
+
600 
+
601  b.Property<string>("PasswordHash")
+
602  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
603 
+
604  b.Property<string>("SystemIdentifier")
+
605  .HasColumnType("varchar(255) CHARACTER SET utf8mb4");
+
606 
+
607  b.HasKey("Id");
+
608 
+
609  b.HasIndex("CanonicalName")
+
610  .IsUnique();
+
611 
+
612  b.HasIndex("CreatedById");
+
613 
+
614  b.HasIndex("SystemIdentifier")
+
615  .IsUnique();
+
616 
+
617  b.ToTable("Users");
+
618  });
+
619 
+
620  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
621  {
+
622  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
623  .WithMany("ChatSettings")
+
624  .HasForeignKey("InstanceId")
+
625  .OnDelete(DeleteBehavior.Cascade)
+
626  .IsRequired();
+
627  });
+
628 
+
629  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
630  {
+
631  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
632  .WithMany("Channels")
+
633  .HasForeignKey("ChatSettingsId")
+
634  .OnDelete(DeleteBehavior.Cascade)
+
635  .IsRequired();
+
636  });
+
637 
+
638  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
639  {
+
640  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
641  .WithOne()
+
642  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
643  .OnDelete(DeleteBehavior.Cascade)
+
644  .IsRequired();
+
645 
+
646  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
647  .WithMany("CompileJobs")
+
648  .HasForeignKey("RevisionInformationId")
+
649  .OnDelete(DeleteBehavior.Cascade)
+
650  .IsRequired();
+
651  });
+
652 
+
653  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
654  {
+
655  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
656  .WithOne("DreamDaemonSettings")
+
657  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
658  .OnDelete(DeleteBehavior.Cascade)
+
659  .IsRequired();
+
660  });
+
661 
+
662  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
663  {
+
664  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
665  .WithOne("DreamMakerSettings")
+
666  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
667  .OnDelete(DeleteBehavior.Cascade)
+
668  .IsRequired();
+
669  });
+
670 
+
671  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
672  {
+
673  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
674  .WithMany("InstanceUsers")
+
675  .HasForeignKey("InstanceId")
+
676  .OnDelete(DeleteBehavior.Cascade)
+
677  .IsRequired();
+
678 
+
679  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
680  .WithMany("InstanceUsers")
+
681  .HasForeignKey("UserId")
+
682  .OnDelete(DeleteBehavior.Cascade)
+
683  .IsRequired();
+
684  });
+
685 
+
686  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
687  {
+
688  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
689  .WithMany()
+
690  .HasForeignKey("CancelledById");
+
691 
+
692  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
693  .WithMany("Jobs")
+
694  .HasForeignKey("InstanceId")
+
695  .OnDelete(DeleteBehavior.Cascade)
+
696  .IsRequired();
+
697 
+
698  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
699  .WithMany()
+
700  .HasForeignKey("StartedById")
+
701  .OnDelete(DeleteBehavior.Cascade)
+
702  .IsRequired();
+
703  });
+
704 
+
705  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
706  {
+
707  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
708  .WithMany()
+
709  .HasForeignKey("CompileJobId")
+
710  .OnDelete(DeleteBehavior.Cascade)
+
711  .IsRequired();
+
712  });
+
713 
+
714  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
715  {
+
716  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
717  .WithOne("RepositorySettings")
+
718  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
719  .OnDelete(DeleteBehavior.Cascade)
+
720  .IsRequired();
+
721  });
+
722 
+
723  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
724  {
+
725  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
726  .WithMany("ActiveTestMerges")
+
727  .HasForeignKey("RevisionInformationId")
+
728  .OnDelete(DeleteBehavior.Cascade)
+
729  .IsRequired();
+
730 
+
731  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
732  .WithMany("RevisonInformations")
+
733  .HasForeignKey("TestMergeId")
+
734  .OnDelete(DeleteBehavior.ClientNoAction)
+
735  .IsRequired();
+
736  });
+
737 
+
738  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
739  {
+
740  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
741  .WithMany("RevisionInformations")
+
742  .HasForeignKey("InstanceId")
+
743  .OnDelete(DeleteBehavior.Cascade)
+
744  .IsRequired();
+
745  });
+
746 
+
747  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
748  {
+
749  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
750  .WithMany("TestMerges")
+
751  .HasForeignKey("MergedById")
+
752  .OnDelete(DeleteBehavior.Restrict)
+
753  .IsRequired();
+
754 
+
755  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
756  .WithOne("PrimaryTestMerge")
+
757  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
758  .OnDelete(DeleteBehavior.Cascade)
+
759  .IsRequired();
+
760  });
+
761 
+
762  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
763  {
+
764  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
765  .WithMany("CreatedUsers")
+
766  .HasForeignKey("CreatedById");
+
767  });
+
768 #pragma warning restore 612, 618
+
769  }
+
770  }
+
771 }
+
+
DbContext
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.BuildTargetModel
override void BuildTargetModel(ModelBuilder modelBuilder)
Definition: 20200807213742_MYAddDeploymentColumns.Designer.cs:14
+
Migration
+ + + + diff --git a/20200807213742___m_y_add_deployment_columns_8cs.html b/20200807213742___m_y_add_deployment_columns_8cs.html new file mode 100644 index 0000000000..209e5071bc --- /dev/null +++ b/20200807213742___m_y_add_deployment_columns_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213742_MYAddDeploymentColumns.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807213742_MYAddDeploymentColumns.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns
 Adds columns for GitHub deployments for MYSQL. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807213742___m_y_add_deployment_columns_8cs_source.html b/20200807213742___m_y_add_deployment_columns_8cs_source.html new file mode 100644 index 0000000000..14116560b2 --- /dev/null +++ b/20200807213742___m_y_add_deployment_columns_8cs_source.html @@ -0,0 +1,134 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807213742_MYAddDeploymentColumns.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807213742_MYAddDeploymentColumns.cs
+
+
+Go to the documentation of this file.
1 using Microsoft.EntityFrameworkCore.Migrations;
+
2 using System;
+
3 
+ +
5 {
+
9  public partial class MYAddDeploymentColumns : Migration
+
10  {
+
12  protected override void Up(MigrationBuilder migrationBuilder)
+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
33 
+
35  protected override void Down(MigrationBuilder migrationBuilder)
+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.DropColumn(
+
41  name: "CreateGitHubDeployments",
+
42  table: "RepositorySettings");
+
43 
+
44  migrationBuilder.DropColumn(
+
45  name: "GitHubDeploymentId",
+
46  table: "CompileJobs");
+
47 
+
48  migrationBuilder.DropColumn(
+
49  name: "GitHubRepoId",
+
50  table: "CompileJobs");
+
51  }
+
52  }
+
53 }
+
+
Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Down
override void Down(MigrationBuilder migrationBuilder)
Definition: 20200807213742_MYAddDeploymentColumns.cs:35
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns
Adds columns for GitHub deployments for MYSQL.
Definition: 20200807213742_MYAddDeploymentColumns.cs:10
+
Migration
+
Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Up
override void Up(MigrationBuilder migrationBuilder)
Definition: 20200807213742_MYAddDeploymentColumns.cs:12
+ + + + diff --git a/20200807214330___p_g_add_deployment_columns_8_designer_8cs.html b/20200807214330___p_g_add_deployment_columns_8_designer_8cs.html new file mode 100644 index 0000000000..d1dbf21312 --- /dev/null +++ b/20200807214330___p_g_add_deployment_columns_8_designer_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214330_PGAddDeploymentColumns.Designer.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807214330_PGAddDeploymentColumns.Designer.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns
 Adds columns for GitHub deployments for PostgresSQL. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807214330___p_g_add_deployment_columns_8_designer_8cs_source.html b/20200807214330___p_g_add_deployment_columns_8_designer_8cs_source.html new file mode 100644 index 0000000000..1799c69a2b --- /dev/null +++ b/20200807214330___p_g_add_deployment_columns_8_designer_8cs_source.html @@ -0,0 +1,862 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214330_PGAddDeploymentColumns.Designer.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807214330_PGAddDeploymentColumns.Designer.cs
+
+
+Go to the documentation of this file.
1 // <auto-generated />
+
2 using System;
+
3 using Microsoft.EntityFrameworkCore;
+
4 using Microsoft.EntityFrameworkCore.Infrastructure;
+
5 using Microsoft.EntityFrameworkCore.Migrations;
+
6 using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
+
7 
+ +
9 {
+
10  [DbContext(typeof(PostgresSqlDatabaseContext))]
+
11  [Migration("20200807214330_PGAddDeploymentColumns")]
+
12  partial class PGAddDeploymentColumns
+
13  {
+
15  protected override void BuildTargetModel(ModelBuilder modelBuilder)
+
16  {
+
17 #pragma warning disable 612, 618
+
18  modelBuilder
+
19  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
+
20  .HasAnnotation("ProductVersion", "3.1.6")
+
21  .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
22 
+
23  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
24  {
+
25  b.Property<long>("Id")
+
26  .ValueGeneratedOnAdd()
+
27  .HasColumnType("bigint")
+
28  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
29 
+
30  b.Property<int>("ChannelLimit")
+
31  .HasColumnType("integer");
+
32 
+
33  b.Property<string>("ConnectionString")
+
34  .IsRequired()
+
35  .HasColumnType("character varying(10000)")
+
36  .HasMaxLength(10000);
+
37 
+
38  b.Property<bool?>("Enabled")
+
39  .HasColumnType("boolean");
+
40 
+
41  b.Property<long>("InstanceId")
+
42  .HasColumnType("bigint");
+
43 
+
44  b.Property<string>("Name")
+
45  .IsRequired()
+
46  .HasColumnType("character varying(100)")
+
47  .HasMaxLength(100);
+
48 
+
49  b.Property<int>("Provider")
+
50  .HasColumnType("integer");
+
51 
+
52  b.Property<long>("ReconnectionInterval")
+
53  .HasColumnType("bigint");
+
54 
+
55  b.HasKey("Id");
+
56 
+
57  b.HasIndex("InstanceId", "Name")
+
58  .IsUnique();
+
59 
+
60  b.ToTable("ChatBots");
+
61  });
+
62 
+
63  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
64  {
+
65  b.Property<long>("Id")
+
66  .ValueGeneratedOnAdd()
+
67  .HasColumnType("bigint")
+
68  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
69 
+
70  b.Property<long>("ChatSettingsId")
+
71  .HasColumnType("bigint");
+
72 
+
73  b.Property<decimal?>("DiscordChannelId")
+
74  .HasColumnType("numeric(20,0)");
+
75 
+
76  b.Property<string>("IrcChannel")
+
77  .HasColumnType("character varying(100)")
+
78  .HasMaxLength(100);
+
79 
+
80  b.Property<bool?>("IsAdminChannel")
+
81  .IsRequired()
+
82  .HasColumnType("boolean");
+
83 
+
84  b.Property<bool?>("IsUpdatesChannel")
+
85  .IsRequired()
+
86  .HasColumnType("boolean");
+
87 
+
88  b.Property<bool?>("IsWatchdogChannel")
+
89  .IsRequired()
+
90  .HasColumnType("boolean");
+
91 
+
92  b.Property<string>("Tag")
+
93  .HasColumnType("character varying(10000)")
+
94  .HasMaxLength(10000);
+
95 
+
96  b.HasKey("Id");
+
97 
+
98  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
99  .IsUnique();
+
100 
+
101  b.HasIndex("ChatSettingsId", "IrcChannel")
+
102  .IsUnique();
+
103 
+
104  b.ToTable("ChatChannels");
+
105  });
+
106 
+
107  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
108  {
+
109  b.Property<long>("Id")
+
110  .ValueGeneratedOnAdd()
+
111  .HasColumnType("bigint")
+
112  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
113 
+
114  b.Property<string>("ByondVersion")
+
115  .IsRequired()
+
116  .HasColumnType("text");
+
117 
+
118  b.Property<int?>("DMApiMajorVersion")
+
119  .HasColumnType("integer");
+
120 
+
121  b.Property<int?>("DMApiMinorVersion")
+
122  .HasColumnType("integer");
+
123 
+
124  b.Property<int?>("DMApiPatchVersion")
+
125  .HasColumnType("integer");
+
126 
+
127  b.Property<Guid?>("DirectoryName")
+
128  .IsRequired()
+
129  .HasColumnType("uuid");
+
130 
+
131  b.Property<string>("DmeName")
+
132  .IsRequired()
+
133  .HasColumnType("text");
+
134 
+
135  b.Property<int?>("GitHubDeploymentId")
+
136  .HasColumnType("integer");
+
137 
+
138  b.Property<long?>("GitHubRepoId")
+
139  .HasColumnType("bigint");
+
140 
+
141  b.Property<long>("JobId")
+
142  .HasColumnType("bigint");
+
143 
+
144  b.Property<int?>("MinimumSecurityLevel")
+
145  .HasColumnType("integer");
+
146 
+
147  b.Property<string>("Output")
+
148  .IsRequired()
+
149  .HasColumnType("text");
+
150 
+
151  b.Property<long>("RevisionInformationId")
+
152  .HasColumnType("bigint");
+
153 
+
154  b.HasKey("Id");
+
155 
+
156  b.HasIndex("DirectoryName");
+
157 
+
158  b.HasIndex("JobId")
+
159  .IsUnique();
+
160 
+
161  b.HasIndex("RevisionInformationId");
+
162 
+
163  b.ToTable("CompileJobs");
+
164  });
+
165 
+
166  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
167  {
+
168  b.Property<long>("Id")
+
169  .ValueGeneratedOnAdd()
+
170  .HasColumnType("bigint")
+
171  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
172 
+
173  b.Property<bool?>("AllowWebClient")
+
174  .IsRequired()
+
175  .HasColumnType("boolean");
+
176 
+
177  b.Property<bool?>("AutoStart")
+
178  .IsRequired()
+
179  .HasColumnType("boolean");
+
180 
+
181  b.Property<long>("HeartbeatSeconds")
+
182  .HasColumnType("bigint");
+
183 
+
184  b.Property<long>("InstanceId")
+
185  .HasColumnType("bigint");
+
186 
+
187  b.Property<int>("Port")
+
188  .HasColumnType("integer");
+
189 
+
190  b.Property<int>("SecurityLevel")
+
191  .HasColumnType("integer");
+
192 
+
193  b.Property<long>("StartupTimeout")
+
194  .HasColumnType("bigint");
+
195 
+
196  b.Property<long>("TopicRequestTimeout")
+
197  .HasColumnType("bigint");
+
198 
+
199  b.HasKey("Id");
+
200 
+
201  b.HasIndex("InstanceId")
+
202  .IsUnique();
+
203 
+
204  b.ToTable("DreamDaemonSettings");
+
205  });
+
206 
+
207  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
208  {
+
209  b.Property<long>("Id")
+
210  .ValueGeneratedOnAdd()
+
211  .HasColumnType("bigint")
+
212  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
213 
+
214  b.Property<int>("ApiValidationPort")
+
215  .HasColumnType("integer");
+
216 
+
217  b.Property<int>("ApiValidationSecurityLevel")
+
218  .HasColumnType("integer");
+
219 
+
220  b.Property<long>("InstanceId")
+
221  .HasColumnType("bigint");
+
222 
+
223  b.Property<string>("ProjectName")
+
224  .HasColumnType("character varying(10000)")
+
225  .HasMaxLength(10000);
+
226 
+
227  b.Property<bool?>("RequireDMApiValidation")
+
228  .IsRequired()
+
229  .HasColumnType("boolean");
+
230 
+
231  b.HasKey("Id");
+
232 
+
233  b.HasIndex("InstanceId")
+
234  .IsUnique();
+
235 
+
236  b.ToTable("DreamMakerSettings");
+
237  });
+
238 
+
239  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
240  {
+
241  b.Property<long>("Id")
+
242  .ValueGeneratedOnAdd()
+
243  .HasColumnType("bigint")
+
244  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
245 
+
246  b.Property<long>("AutoUpdateInterval")
+
247  .HasColumnType("bigint");
+
248 
+
249  b.Property<int>("ChatBotLimit")
+
250  .HasColumnType("integer");
+
251 
+
252  b.Property<int>("ConfigurationType")
+
253  .HasColumnType("integer");
+
254 
+
255  b.Property<string>("Name")
+
256  .IsRequired()
+
257  .HasColumnType("character varying(10000)")
+
258  .HasMaxLength(10000);
+
259 
+
260  b.Property<bool?>("Online")
+
261  .IsRequired()
+
262  .HasColumnType("boolean");
+
263 
+
264  b.Property<string>("Path")
+
265  .IsRequired()
+
266  .HasColumnType("text");
+
267 
+
268  b.HasKey("Id");
+
269 
+
270  b.HasIndex("Path")
+
271  .IsUnique();
+
272 
+
273  b.ToTable("Instances");
+
274  });
+
275 
+
276  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
277  {
+
278  b.Property<long>("Id")
+
279  .ValueGeneratedOnAdd()
+
280  .HasColumnType("bigint")
+
281  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
282 
+
283  b.Property<decimal>("ByondRights")
+
284  .HasColumnType("numeric(20,0)");
+
285 
+
286  b.Property<decimal>("ChatBotRights")
+
287  .HasColumnType("numeric(20,0)");
+
288 
+
289  b.Property<decimal>("ConfigurationRights")
+
290  .HasColumnType("numeric(20,0)");
+
291 
+
292  b.Property<decimal>("DreamDaemonRights")
+
293  .HasColumnType("numeric(20,0)");
+
294 
+
295  b.Property<decimal>("DreamMakerRights")
+
296  .HasColumnType("numeric(20,0)");
+
297 
+
298  b.Property<long>("InstanceId")
+
299  .HasColumnType("bigint");
+
300 
+
301  b.Property<decimal>("InstanceUserRights")
+
302  .HasColumnType("numeric(20,0)");
+
303 
+
304  b.Property<decimal>("RepositoryRights")
+
305  .HasColumnType("numeric(20,0)");
+
306 
+
307  b.Property<long>("UserId")
+
308  .HasColumnType("bigint");
+
309 
+
310  b.HasKey("Id");
+
311 
+
312  b.HasIndex("InstanceId");
+
313 
+
314  b.HasIndex("UserId", "InstanceId")
+
315  .IsUnique();
+
316 
+
317  b.ToTable("InstanceUsers");
+
318  });
+
319 
+
320  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
321  {
+
322  b.Property<long>("Id")
+
323  .ValueGeneratedOnAdd()
+
324  .HasColumnType("bigint")
+
325  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
326 
+
327  b.Property<decimal?>("CancelRight")
+
328  .HasColumnType("numeric(20,0)");
+
329 
+
330  b.Property<decimal?>("CancelRightsType")
+
331  .HasColumnType("numeric(20,0)");
+
332 
+
333  b.Property<bool?>("Cancelled")
+
334  .IsRequired()
+
335  .HasColumnType("boolean");
+
336 
+
337  b.Property<long?>("CancelledById")
+
338  .HasColumnType("bigint");
+
339 
+
340  b.Property<string>("Description")
+
341  .IsRequired()
+
342  .HasColumnType("text");
+
343 
+
344  b.Property<long?>("ErrorCode")
+
345  .HasColumnType("bigint");
+
346 
+
347  b.Property<string>("ExceptionDetails")
+
348  .HasColumnType("text");
+
349 
+
350  b.Property<long>("InstanceId")
+
351  .HasColumnType("bigint");
+
352 
+
353  b.Property<DateTimeOffset?>("StartedAt")
+
354  .IsRequired()
+
355  .HasColumnType("timestamp with time zone");
+
356 
+
357  b.Property<long>("StartedById")
+
358  .HasColumnType("bigint");
+
359 
+
360  b.Property<DateTimeOffset?>("StoppedAt")
+
361  .HasColumnType("timestamp with time zone");
+
362 
+
363  b.HasKey("Id");
+
364 
+
365  b.HasIndex("CancelledById");
+
366 
+
367  b.HasIndex("InstanceId");
+
368 
+
369  b.HasIndex("StartedById");
+
370 
+
371  b.ToTable("Jobs");
+
372  });
+
373 
+
374  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
375  {
+
376  b.Property<long>("Id")
+
377  .ValueGeneratedOnAdd()
+
378  .HasColumnType("bigint")
+
379  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
380 
+
381  b.Property<string>("AccessIdentifier")
+
382  .IsRequired()
+
383  .HasColumnType("text");
+
384 
+
385  b.Property<long>("CompileJobId")
+
386  .HasColumnType("bigint");
+
387 
+
388  b.Property<int>("LaunchSecurityLevel")
+
389  .HasColumnType("integer");
+
390 
+
391  b.Property<int>("Port")
+
392  .HasColumnType("integer");
+
393 
+
394  b.Property<int>("ProcessId")
+
395  .HasColumnType("integer");
+
396 
+
397  b.Property<int>("RebootState")
+
398  .HasColumnType("integer");
+
399 
+
400  b.HasKey("Id");
+
401 
+
402  b.HasIndex("CompileJobId");
+
403 
+
404  b.ToTable("ReattachInformations");
+
405  });
+
406 
+
407  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
408  {
+
409  b.Property<long>("Id")
+
410  .ValueGeneratedOnAdd()
+
411  .HasColumnType("bigint")
+
412  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
413 
+
414  b.Property<string>("AccessToken")
+
415  .HasColumnType("character varying(10000)")
+
416  .HasMaxLength(10000);
+
417 
+
418  b.Property<string>("AccessUser")
+
419  .HasColumnType("character varying(10000)")
+
420  .HasMaxLength(10000);
+
421 
+
422  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
423  .IsRequired()
+
424  .HasColumnType("boolean");
+
425 
+
426  b.Property<bool?>("AutoUpdatesSynchronize")
+
427  .IsRequired()
+
428  .HasColumnType("boolean");
+
429 
+
430  b.Property<string>("CommitterEmail")
+
431  .IsRequired()
+
432  .HasColumnType("character varying(10000)")
+
433  .HasMaxLength(10000);
+
434 
+
435  b.Property<string>("CommitterName")
+
436  .IsRequired()
+
437  .HasColumnType("character varying(10000)")
+
438  .HasMaxLength(10000);
+
439 
+
440  b.Property<bool?>("CreateGitHubDeployments")
+
441  .IsRequired()
+
442  .HasColumnType("boolean");
+
443 
+
444  b.Property<long>("InstanceId")
+
445  .HasColumnType("bigint");
+
446 
+
447  b.Property<bool?>("PostTestMergeComment")
+
448  .IsRequired()
+
449  .HasColumnType("boolean");
+
450 
+
451  b.Property<bool?>("PushTestMergeCommits")
+
452  .IsRequired()
+
453  .HasColumnType("boolean");
+
454 
+
455  b.Property<bool?>("ShowTestMergeCommitters")
+
456  .IsRequired()
+
457  .HasColumnType("boolean");
+
458 
+
459  b.HasKey("Id");
+
460 
+
461  b.HasIndex("InstanceId")
+
462  .IsUnique();
+
463 
+
464  b.ToTable("RepositorySettings");
+
465  });
+
466 
+
467  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
468  {
+
469  b.Property<long>("Id")
+
470  .ValueGeneratedOnAdd()
+
471  .HasColumnType("bigint")
+
472  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
473 
+
474  b.Property<long>("RevisionInformationId")
+
475  .HasColumnType("bigint");
+
476 
+
477  b.Property<long>("TestMergeId")
+
478  .HasColumnType("bigint");
+
479 
+
480  b.HasKey("Id");
+
481 
+
482  b.HasIndex("RevisionInformationId");
+
483 
+
484  b.HasIndex("TestMergeId");
+
485 
+
486  b.ToTable("RevInfoTestMerges");
+
487  });
+
488 
+
489  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
490  {
+
491  b.Property<long>("Id")
+
492  .ValueGeneratedOnAdd()
+
493  .HasColumnType("bigint")
+
494  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
495 
+
496  b.Property<string>("CommitSha")
+
497  .IsRequired()
+
498  .HasColumnType("character varying(40)")
+
499  .HasMaxLength(40);
+
500 
+
501  b.Property<long>("InstanceId")
+
502  .HasColumnType("bigint");
+
503 
+
504  b.Property<string>("OriginCommitSha")
+
505  .IsRequired()
+
506  .HasColumnType("character varying(40)")
+
507  .HasMaxLength(40);
+
508 
+
509  b.HasKey("Id");
+
510 
+
511  b.HasIndex("InstanceId", "CommitSha")
+
512  .IsUnique();
+
513 
+
514  b.ToTable("RevisionInformations");
+
515  });
+
516 
+
517  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
518  {
+
519  b.Property<long>("Id")
+
520  .ValueGeneratedOnAdd()
+
521  .HasColumnType("bigint")
+
522  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
523 
+
524  b.Property<string>("Author")
+
525  .IsRequired()
+
526  .HasColumnType("text");
+
527 
+
528  b.Property<string>("BodyAtMerge")
+
529  .IsRequired()
+
530  .HasColumnType("text");
+
531 
+
532  b.Property<string>("Comment")
+
533  .HasColumnType("character varying(10000)")
+
534  .HasMaxLength(10000);
+
535 
+
536  b.Property<DateTimeOffset>("MergedAt")
+
537  .HasColumnType("timestamp with time zone");
+
538 
+
539  b.Property<long>("MergedById")
+
540  .HasColumnType("bigint");
+
541 
+
542  b.Property<int>("Number")
+
543  .HasColumnType("integer");
+
544 
+
545  b.Property<long?>("PrimaryRevisionInformationId")
+
546  .IsRequired()
+
547  .HasColumnType("bigint");
+
548 
+
549  b.Property<string>("PullRequestRevision")
+
550  .IsRequired()
+
551  .HasColumnType("character varying(40)")
+
552  .HasMaxLength(40);
+
553 
+
554  b.Property<string>("TitleAtMerge")
+
555  .IsRequired()
+
556  .HasColumnType("text");
+
557 
+
558  b.Property<string>("Url")
+
559  .IsRequired()
+
560  .HasColumnType("text");
+
561 
+
562  b.HasKey("Id");
+
563 
+
564  b.HasIndex("MergedById");
+
565 
+
566  b.HasIndex("PrimaryRevisionInformationId")
+
567  .IsUnique();
+
568 
+
569  b.ToTable("TestMerges");
+
570  });
+
571 
+
572  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
573  {
+
574  b.Property<long?>("Id")
+
575  .ValueGeneratedOnAdd()
+
576  .HasColumnType("bigint")
+
577  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
578 
+
579  b.Property<decimal>("AdministrationRights")
+
580  .HasColumnType("numeric(20,0)");
+
581 
+
582  b.Property<string>("CanonicalName")
+
583  .IsRequired()
+
584  .HasColumnType("text");
+
585 
+
586  b.Property<DateTimeOffset?>("CreatedAt")
+
587  .IsRequired()
+
588  .HasColumnType("timestamp with time zone");
+
589 
+
590  b.Property<long?>("CreatedById")
+
591  .HasColumnType("bigint");
+
592 
+
593  b.Property<bool?>("Enabled")
+
594  .IsRequired()
+
595  .HasColumnType("boolean");
+
596 
+
597  b.Property<decimal>("InstanceManagerRights")
+
598  .HasColumnType("numeric(20,0)");
+
599 
+
600  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
601  .HasColumnType("timestamp with time zone");
+
602 
+
603  b.Property<string>("Name")
+
604  .IsRequired()
+
605  .HasColumnType("character varying(10000)")
+
606  .HasMaxLength(10000);
+
607 
+
608  b.Property<string>("PasswordHash")
+
609  .HasColumnType("text");
+
610 
+
611  b.Property<string>("SystemIdentifier")
+
612  .HasColumnType("text");
+
613 
+
614  b.HasKey("Id");
+
615 
+
616  b.HasIndex("CanonicalName")
+
617  .IsUnique();
+
618 
+
619  b.HasIndex("CreatedById");
+
620 
+
621  b.HasIndex("SystemIdentifier")
+
622  .IsUnique();
+
623 
+
624  b.ToTable("Users");
+
625  });
+
626 
+
627  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
628  {
+
629  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
630  .WithMany("ChatSettings")
+
631  .HasForeignKey("InstanceId")
+
632  .OnDelete(DeleteBehavior.Cascade)
+
633  .IsRequired();
+
634  });
+
635 
+
636  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
637  {
+
638  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
639  .WithMany("Channels")
+
640  .HasForeignKey("ChatSettingsId")
+
641  .OnDelete(DeleteBehavior.Cascade)
+
642  .IsRequired();
+
643  });
+
644 
+
645  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
646  {
+
647  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
648  .WithOne()
+
649  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
650  .OnDelete(DeleteBehavior.Cascade)
+
651  .IsRequired();
+
652 
+
653  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
654  .WithMany("CompileJobs")
+
655  .HasForeignKey("RevisionInformationId")
+
656  .OnDelete(DeleteBehavior.Cascade)
+
657  .IsRequired();
+
658  });
+
659 
+
660  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
661  {
+
662  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
663  .WithOne("DreamDaemonSettings")
+
664  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
665  .OnDelete(DeleteBehavior.Cascade)
+
666  .IsRequired();
+
667  });
+
668 
+
669  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
670  {
+
671  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
672  .WithOne("DreamMakerSettings")
+
673  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
674  .OnDelete(DeleteBehavior.Cascade)
+
675  .IsRequired();
+
676  });
+
677 
+
678  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
679  {
+
680  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
681  .WithMany("InstanceUsers")
+
682  .HasForeignKey("InstanceId")
+
683  .OnDelete(DeleteBehavior.Cascade)
+
684  .IsRequired();
+
685 
+
686  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
687  .WithMany("InstanceUsers")
+
688  .HasForeignKey("UserId")
+
689  .OnDelete(DeleteBehavior.Cascade)
+
690  .IsRequired();
+
691  });
+
692 
+
693  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
694  {
+
695  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
696  .WithMany()
+
697  .HasForeignKey("CancelledById");
+
698 
+
699  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
700  .WithMany("Jobs")
+
701  .HasForeignKey("InstanceId")
+
702  .OnDelete(DeleteBehavior.Cascade)
+
703  .IsRequired();
+
704 
+
705  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
706  .WithMany()
+
707  .HasForeignKey("StartedById")
+
708  .OnDelete(DeleteBehavior.Cascade)
+
709  .IsRequired();
+
710  });
+
711 
+
712  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
713  {
+
714  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
715  .WithMany()
+
716  .HasForeignKey("CompileJobId")
+
717  .OnDelete(DeleteBehavior.Cascade)
+
718  .IsRequired();
+
719  });
+
720 
+
721  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
722  {
+
723  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
724  .WithOne("RepositorySettings")
+
725  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
726  .OnDelete(DeleteBehavior.Cascade)
+
727  .IsRequired();
+
728  });
+
729 
+
730  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
731  {
+
732  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
733  .WithMany("ActiveTestMerges")
+
734  .HasForeignKey("RevisionInformationId")
+
735  .OnDelete(DeleteBehavior.Cascade)
+
736  .IsRequired();
+
737 
+
738  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
739  .WithMany("RevisonInformations")
+
740  .HasForeignKey("TestMergeId")
+
741  .OnDelete(DeleteBehavior.ClientNoAction)
+
742  .IsRequired();
+
743  });
+
744 
+
745  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
746  {
+
747  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
748  .WithMany("RevisionInformations")
+
749  .HasForeignKey("InstanceId")
+
750  .OnDelete(DeleteBehavior.Cascade)
+
751  .IsRequired();
+
752  });
+
753 
+
754  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
755  {
+
756  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
757  .WithMany("TestMerges")
+
758  .HasForeignKey("MergedById")
+
759  .OnDelete(DeleteBehavior.Restrict)
+
760  .IsRequired();
+
761 
+
762  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
763  .WithOne("PrimaryTestMerge")
+
764  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
765  .OnDelete(DeleteBehavior.Cascade)
+
766  .IsRequired();
+
767  });
+
768 
+
769  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
770  {
+
771  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
772  .WithMany("CreatedUsers")
+
773  .HasForeignKey("CreatedById");
+
774  });
+
775 #pragma warning restore 612, 618
+
776  }
+
777  }
+
778 }
+
+
DbContext
+
Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.BuildTargetModel
override void BuildTargetModel(ModelBuilder modelBuilder)
Definition: 20200807214330_PGAddDeploymentColumns.Designer.cs:15
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Migration
+ + + + diff --git a/20200807214330___p_g_add_deployment_columns_8cs.html b/20200807214330___p_g_add_deployment_columns_8cs.html new file mode 100644 index 0000000000..687cf01663 --- /dev/null +++ b/20200807214330___p_g_add_deployment_columns_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214330_PGAddDeploymentColumns.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807214330_PGAddDeploymentColumns.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns
 Adds columns for GitHub deployments for PostgresSQL. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807214330___p_g_add_deployment_columns_8cs_source.html b/20200807214330___p_g_add_deployment_columns_8cs_source.html new file mode 100644 index 0000000000..dbc6aca2db --- /dev/null +++ b/20200807214330___p_g_add_deployment_columns_8cs_source.html @@ -0,0 +1,134 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214330_PGAddDeploymentColumns.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807214330_PGAddDeploymentColumns.cs
+
+
+Go to the documentation of this file.
1 using Microsoft.EntityFrameworkCore.Migrations;
+
2 using System;
+
3 
+ +
5 {
+
9  public partial class PGAddDeploymentColumns : Migration
+
10  {
+
12  protected override void Up(MigrationBuilder migrationBuilder)
+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
33 
+
35  protected override void Down(MigrationBuilder migrationBuilder)
+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.DropColumn(
+
41  name: "CreateGitHubDeployments",
+
42  table: "RepositorySettings");
+
43 
+
44  migrationBuilder.DropColumn(
+
45  name: "GitHubDeploymentId",
+
46  table: "CompileJobs");
+
47 
+
48  migrationBuilder.DropColumn(
+
49  name: "GitHubRepoId",
+
50  table: "CompileJobs");
+
51  }
+
52  }
+
53 }
+
+
Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns
Adds columns for GitHub deployments for PostgresSQL.
Definition: 20200807214330_PGAddDeploymentColumns.cs:10
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Up
override void Up(MigrationBuilder migrationBuilder)
Definition: 20200807214330_PGAddDeploymentColumns.cs:12
+
Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Down
override void Down(MigrationBuilder migrationBuilder)
Definition: 20200807214330_PGAddDeploymentColumns.cs:35
+
Migration
+ + + + diff --git a/20200807214754___s_l_add_deployment_columns_8_designer_8cs.html b/20200807214754___s_l_add_deployment_columns_8_designer_8cs.html new file mode 100644 index 0000000000..2e0d1aaac0 --- /dev/null +++ b/20200807214754___s_l_add_deployment_columns_8_designer_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214754_SLAddDeploymentColumns.Designer.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807214754_SLAddDeploymentColumns.Designer.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns
 Adds columns for GitHub deployments for SQLite. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807214754___s_l_add_deployment_columns_8_designer_8cs_source.html b/20200807214754___s_l_add_deployment_columns_8_designer_8cs_source.html new file mode 100644 index 0000000000..6438817d23 --- /dev/null +++ b/20200807214754___s_l_add_deployment_columns_8_designer_8cs_source.html @@ -0,0 +1,854 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214754_SLAddDeploymentColumns.Designer.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807214754_SLAddDeploymentColumns.Designer.cs
+
+
+Go to the documentation of this file.
1 // <auto-generated />
+
2 using System;
+
3 using Microsoft.EntityFrameworkCore;
+
4 using Microsoft.EntityFrameworkCore.Infrastructure;
+
5 using Microsoft.EntityFrameworkCore.Migrations;
+
6 
+ +
8 {
+
9  [DbContext(typeof(SqliteDatabaseContext))]
+
10  [Migration("20200807214754_SLAddDeploymentColumns")]
+
11  partial class SLAddDeploymentColumns
+
12  {
+
14  protected override void BuildTargetModel(ModelBuilder modelBuilder)
+
15  {
+
16 #pragma warning disable 612, 618
+
17  modelBuilder
+
18  .HasAnnotation("ProductVersion", "3.1.6");
+
19 
+
20  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
21  {
+
22  b.Property<long>("Id")
+
23  .ValueGeneratedOnAdd()
+
24  .HasColumnType("INTEGER");
+
25 
+
26  b.Property<ushort?>("ChannelLimit")
+
27  .IsRequired()
+
28  .HasColumnType("INTEGER");
+
29 
+
30  b.Property<string>("ConnectionString")
+
31  .IsRequired()
+
32  .HasColumnType("TEXT")
+
33  .HasMaxLength(10000);
+
34 
+
35  b.Property<bool?>("Enabled")
+
36  .HasColumnType("INTEGER");
+
37 
+
38  b.Property<long>("InstanceId")
+
39  .HasColumnType("INTEGER");
+
40 
+
41  b.Property<string>("Name")
+
42  .IsRequired()
+
43  .HasColumnType("TEXT")
+
44  .HasMaxLength(100);
+
45 
+
46  b.Property<int>("Provider")
+
47  .HasColumnType("INTEGER");
+
48 
+
49  b.Property<uint?>("ReconnectionInterval")
+
50  .IsRequired()
+
51  .HasColumnType("INTEGER");
+
52 
+
53  b.HasKey("Id");
+
54 
+
55  b.HasIndex("InstanceId", "Name")
+
56  .IsUnique();
+
57 
+
58  b.ToTable("ChatBots");
+
59  });
+
60 
+
61  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
62  {
+
63  b.Property<long>("Id")
+
64  .ValueGeneratedOnAdd()
+
65  .HasColumnType("INTEGER");
+
66 
+
67  b.Property<long>("ChatSettingsId")
+
68  .HasColumnType("INTEGER");
+
69 
+
70  b.Property<ulong?>("DiscordChannelId")
+
71  .HasColumnType("INTEGER");
+
72 
+
73  b.Property<string>("IrcChannel")
+
74  .HasColumnType("TEXT")
+
75  .HasMaxLength(100);
+
76 
+
77  b.Property<bool?>("IsAdminChannel")
+
78  .IsRequired()
+
79  .HasColumnType("INTEGER");
+
80 
+
81  b.Property<bool?>("IsUpdatesChannel")
+
82  .IsRequired()
+
83  .HasColumnType("INTEGER");
+
84 
+
85  b.Property<bool?>("IsWatchdogChannel")
+
86  .IsRequired()
+
87  .HasColumnType("INTEGER");
+
88 
+
89  b.Property<string>("Tag")
+
90  .HasColumnType("TEXT")
+
91  .HasMaxLength(10000);
+
92 
+
93  b.HasKey("Id");
+
94 
+
95  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
96  .IsUnique();
+
97 
+
98  b.HasIndex("ChatSettingsId", "IrcChannel")
+
99  .IsUnique();
+
100 
+
101  b.ToTable("ChatChannels");
+
102  });
+
103 
+
104  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
105  {
+
106  b.Property<long>("Id")
+
107  .ValueGeneratedOnAdd()
+
108  .HasColumnType("INTEGER");
+
109 
+
110  b.Property<string>("ByondVersion")
+
111  .IsRequired()
+
112  .HasColumnType("TEXT");
+
113 
+
114  b.Property<int?>("DMApiMajorVersion")
+
115  .HasColumnType("INTEGER");
+
116 
+
117  b.Property<int?>("DMApiMinorVersion")
+
118  .HasColumnType("INTEGER");
+
119 
+
120  b.Property<int?>("DMApiPatchVersion")
+
121  .HasColumnType("INTEGER");
+
122 
+
123  b.Property<Guid?>("DirectoryName")
+
124  .IsRequired()
+
125  .HasColumnType("TEXT");
+
126 
+
127  b.Property<string>("DmeName")
+
128  .IsRequired()
+
129  .HasColumnType("TEXT");
+
130 
+
131  b.Property<int?>("GitHubDeploymentId")
+
132  .HasColumnType("INTEGER");
+
133 
+
134  b.Property<long?>("GitHubRepoId")
+
135  .HasColumnType("INTEGER");
+
136 
+
137  b.Property<long>("JobId")
+
138  .HasColumnType("INTEGER");
+
139 
+
140  b.Property<int?>("MinimumSecurityLevel")
+
141  .HasColumnType("INTEGER");
+
142 
+
143  b.Property<string>("Output")
+
144  .IsRequired()
+
145  .HasColumnType("TEXT");
+
146 
+
147  b.Property<long>("RevisionInformationId")
+
148  .HasColumnType("INTEGER");
+
149 
+
150  b.HasKey("Id");
+
151 
+
152  b.HasIndex("DirectoryName");
+
153 
+
154  b.HasIndex("JobId")
+
155  .IsUnique();
+
156 
+
157  b.HasIndex("RevisionInformationId");
+
158 
+
159  b.ToTable("CompileJobs");
+
160  });
+
161 
+
162  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
163  {
+
164  b.Property<long>("Id")
+
165  .ValueGeneratedOnAdd()
+
166  .HasColumnType("INTEGER");
+
167 
+
168  b.Property<bool?>("AllowWebClient")
+
169  .IsRequired()
+
170  .HasColumnType("INTEGER");
+
171 
+
172  b.Property<bool?>("AutoStart")
+
173  .IsRequired()
+
174  .HasColumnType("INTEGER");
+
175 
+
176  b.Property<uint?>("HeartbeatSeconds")
+
177  .IsRequired()
+
178  .HasColumnType("INTEGER");
+
179 
+
180  b.Property<long>("InstanceId")
+
181  .HasColumnType("INTEGER");
+
182 
+
183  b.Property<ushort?>("Port")
+
184  .IsRequired()
+
185  .HasColumnType("INTEGER");
+
186 
+
187  b.Property<int>("SecurityLevel")
+
188  .HasColumnType("INTEGER");
+
189 
+
190  b.Property<uint?>("StartupTimeout")
+
191  .IsRequired()
+
192  .HasColumnType("INTEGER");
+
193 
+
194  b.Property<uint?>("TopicRequestTimeout")
+
195  .IsRequired()
+
196  .HasColumnType("INTEGER");
+
197 
+
198  b.HasKey("Id");
+
199 
+
200  b.HasIndex("InstanceId")
+
201  .IsUnique();
+
202 
+
203  b.ToTable("DreamDaemonSettings");
+
204  });
+
205 
+
206  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
207  {
+
208  b.Property<long>("Id")
+
209  .ValueGeneratedOnAdd()
+
210  .HasColumnType("INTEGER");
+
211 
+
212  b.Property<ushort?>("ApiValidationPort")
+
213  .IsRequired()
+
214  .HasColumnType("INTEGER");
+
215 
+
216  b.Property<int>("ApiValidationSecurityLevel")
+
217  .HasColumnType("INTEGER");
+
218 
+
219  b.Property<long>("InstanceId")
+
220  .HasColumnType("INTEGER");
+
221 
+
222  b.Property<string>("ProjectName")
+
223  .HasColumnType("TEXT")
+
224  .HasMaxLength(10000);
+
225 
+
226  b.Property<bool?>("RequireDMApiValidation")
+
227  .IsRequired()
+
228  .HasColumnType("INTEGER");
+
229 
+
230  b.HasKey("Id");
+
231 
+
232  b.HasIndex("InstanceId")
+
233  .IsUnique();
+
234 
+
235  b.ToTable("DreamMakerSettings");
+
236  });
+
237 
+
238  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
239  {
+
240  b.Property<long>("Id")
+
241  .ValueGeneratedOnAdd()
+
242  .HasColumnType("INTEGER");
+
243 
+
244  b.Property<uint?>("AutoUpdateInterval")
+
245  .IsRequired()
+
246  .HasColumnType("INTEGER");
+
247 
+
248  b.Property<ushort?>("ChatBotLimit")
+
249  .IsRequired()
+
250  .HasColumnType("INTEGER");
+
251 
+
252  b.Property<int>("ConfigurationType")
+
253  .HasColumnType("INTEGER");
+
254 
+
255  b.Property<string>("Name")
+
256  .IsRequired()
+
257  .HasColumnType("TEXT")
+
258  .HasMaxLength(10000);
+
259 
+
260  b.Property<bool?>("Online")
+
261  .IsRequired()
+
262  .HasColumnType("INTEGER");
+
263 
+
264  b.Property<string>("Path")
+
265  .IsRequired()
+
266  .HasColumnType("TEXT");
+
267 
+
268  b.HasKey("Id");
+
269 
+
270  b.HasIndex("Path")
+
271  .IsUnique();
+
272 
+
273  b.ToTable("Instances");
+
274  });
+
275 
+
276  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
277  {
+
278  b.Property<long>("Id")
+
279  .ValueGeneratedOnAdd()
+
280  .HasColumnType("INTEGER");
+
281 
+
282  b.Property<ulong>("ByondRights")
+
283  .HasColumnType("INTEGER");
+
284 
+
285  b.Property<ulong>("ChatBotRights")
+
286  .HasColumnType("INTEGER");
+
287 
+
288  b.Property<ulong>("ConfigurationRights")
+
289  .HasColumnType("INTEGER");
+
290 
+
291  b.Property<ulong>("DreamDaemonRights")
+
292  .HasColumnType("INTEGER");
+
293 
+
294  b.Property<ulong>("DreamMakerRights")
+
295  .HasColumnType("INTEGER");
+
296 
+
297  b.Property<long>("InstanceId")
+
298  .HasColumnType("INTEGER");
+
299 
+
300  b.Property<ulong>("InstanceUserRights")
+
301  .HasColumnType("INTEGER");
+
302 
+
303  b.Property<ulong>("RepositoryRights")
+
304  .HasColumnType("INTEGER");
+
305 
+
306  b.Property<long>("UserId")
+
307  .HasColumnType("INTEGER");
+
308 
+
309  b.HasKey("Id");
+
310 
+
311  b.HasIndex("InstanceId");
+
312 
+
313  b.HasIndex("UserId", "InstanceId")
+
314  .IsUnique();
+
315 
+
316  b.ToTable("InstanceUsers");
+
317  });
+
318 
+
319  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
320  {
+
321  b.Property<long>("Id")
+
322  .ValueGeneratedOnAdd()
+
323  .HasColumnType("INTEGER");
+
324 
+
325  b.Property<ulong?>("CancelRight")
+
326  .HasColumnType("INTEGER");
+
327 
+
328  b.Property<ulong?>("CancelRightsType")
+
329  .HasColumnType("INTEGER");
+
330 
+
331  b.Property<bool?>("Cancelled")
+
332  .IsRequired()
+
333  .HasColumnType("INTEGER");
+
334 
+
335  b.Property<long?>("CancelledById")
+
336  .HasColumnType("INTEGER");
+
337 
+
338  b.Property<string>("Description")
+
339  .IsRequired()
+
340  .HasColumnType("TEXT");
+
341 
+
342  b.Property<uint?>("ErrorCode")
+
343  .HasColumnType("INTEGER");
+
344 
+
345  b.Property<string>("ExceptionDetails")
+
346  .HasColumnType("TEXT");
+
347 
+
348  b.Property<long>("InstanceId")
+
349  .HasColumnType("INTEGER");
+
350 
+
351  b.Property<DateTimeOffset?>("StartedAt")
+
352  .IsRequired()
+
353  .HasColumnType("TEXT");
+
354 
+
355  b.Property<long>("StartedById")
+
356  .HasColumnType("INTEGER");
+
357 
+
358  b.Property<DateTimeOffset?>("StoppedAt")
+
359  .HasColumnType("TEXT");
+
360 
+
361  b.HasKey("Id");
+
362 
+
363  b.HasIndex("CancelledById");
+
364 
+
365  b.HasIndex("InstanceId");
+
366 
+
367  b.HasIndex("StartedById");
+
368 
+
369  b.ToTable("Jobs");
+
370  });
+
371 
+
372  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
373  {
+
374  b.Property<long>("Id")
+
375  .ValueGeneratedOnAdd()
+
376  .HasColumnType("INTEGER");
+
377 
+
378  b.Property<string>("AccessIdentifier")
+
379  .IsRequired()
+
380  .HasColumnType("TEXT");
+
381 
+
382  b.Property<long>("CompileJobId")
+
383  .HasColumnType("INTEGER");
+
384 
+
385  b.Property<int>("LaunchSecurityLevel")
+
386  .HasColumnType("INTEGER");
+
387 
+
388  b.Property<ushort>("Port")
+
389  .HasColumnType("INTEGER");
+
390 
+
391  b.Property<int>("ProcessId")
+
392  .HasColumnType("INTEGER");
+
393 
+
394  b.Property<int>("RebootState")
+
395  .HasColumnType("INTEGER");
+
396 
+
397  b.HasKey("Id");
+
398 
+
399  b.HasIndex("CompileJobId");
+
400 
+
401  b.ToTable("ReattachInformations");
+
402  });
+
403 
+
404  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
405  {
+
406  b.Property<long>("Id")
+
407  .ValueGeneratedOnAdd()
+
408  .HasColumnType("INTEGER");
+
409 
+
410  b.Property<string>("AccessToken")
+
411  .HasColumnType("TEXT")
+
412  .HasMaxLength(10000);
+
413 
+
414  b.Property<string>("AccessUser")
+
415  .HasColumnType("TEXT")
+
416  .HasMaxLength(10000);
+
417 
+
418  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
419  .IsRequired()
+
420  .HasColumnType("INTEGER");
+
421 
+
422  b.Property<bool?>("AutoUpdatesSynchronize")
+
423  .IsRequired()
+
424  .HasColumnType("INTEGER");
+
425 
+
426  b.Property<string>("CommitterEmail")
+
427  .IsRequired()
+
428  .HasColumnType("TEXT")
+
429  .HasMaxLength(10000);
+
430 
+
431  b.Property<string>("CommitterName")
+
432  .IsRequired()
+
433  .HasColumnType("TEXT")
+
434  .HasMaxLength(10000);
+
435 
+
436  b.Property<bool?>("CreateGitHubDeployments")
+
437  .IsRequired()
+
438  .HasColumnType("INTEGER");
+
439 
+
440  b.Property<long>("InstanceId")
+
441  .HasColumnType("INTEGER");
+
442 
+
443  b.Property<bool?>("PostTestMergeComment")
+
444  .IsRequired()
+
445  .HasColumnType("INTEGER");
+
446 
+
447  b.Property<bool?>("PushTestMergeCommits")
+
448  .IsRequired()
+
449  .HasColumnType("INTEGER");
+
450 
+
451  b.Property<bool?>("ShowTestMergeCommitters")
+
452  .IsRequired()
+
453  .HasColumnType("INTEGER");
+
454 
+
455  b.HasKey("Id");
+
456 
+
457  b.HasIndex("InstanceId")
+
458  .IsUnique();
+
459 
+
460  b.ToTable("RepositorySettings");
+
461  });
+
462 
+
463  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
464  {
+
465  b.Property<long>("Id")
+
466  .ValueGeneratedOnAdd()
+
467  .HasColumnType("INTEGER");
+
468 
+
469  b.Property<long>("RevisionInformationId")
+
470  .HasColumnType("INTEGER");
+
471 
+
472  b.Property<long>("TestMergeId")
+
473  .HasColumnType("INTEGER");
+
474 
+
475  b.HasKey("Id");
+
476 
+
477  b.HasIndex("RevisionInformationId");
+
478 
+
479  b.HasIndex("TestMergeId");
+
480 
+
481  b.ToTable("RevInfoTestMerges");
+
482  });
+
483 
+
484  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
485  {
+
486  b.Property<long>("Id")
+
487  .ValueGeneratedOnAdd()
+
488  .HasColumnType("INTEGER");
+
489 
+
490  b.Property<string>("CommitSha")
+
491  .IsRequired()
+
492  .HasColumnType("TEXT")
+
493  .HasMaxLength(40);
+
494 
+
495  b.Property<long>("InstanceId")
+
496  .HasColumnType("INTEGER");
+
497 
+
498  b.Property<string>("OriginCommitSha")
+
499  .IsRequired()
+
500  .HasColumnType("TEXT")
+
501  .HasMaxLength(40);
+
502 
+
503  b.HasKey("Id");
+
504 
+
505  b.HasIndex("InstanceId", "CommitSha")
+
506  .IsUnique();
+
507 
+
508  b.ToTable("RevisionInformations");
+
509  });
+
510 
+
511  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
512  {
+
513  b.Property<long>("Id")
+
514  .ValueGeneratedOnAdd()
+
515  .HasColumnType("INTEGER");
+
516 
+
517  b.Property<string>("Author")
+
518  .IsRequired()
+
519  .HasColumnType("TEXT");
+
520 
+
521  b.Property<string>("BodyAtMerge")
+
522  .IsRequired()
+
523  .HasColumnType("TEXT");
+
524 
+
525  b.Property<string>("Comment")
+
526  .HasColumnType("TEXT")
+
527  .HasMaxLength(10000);
+
528 
+
529  b.Property<DateTimeOffset>("MergedAt")
+
530  .HasColumnType("TEXT");
+
531 
+
532  b.Property<long>("MergedById")
+
533  .HasColumnType("INTEGER");
+
534 
+
535  b.Property<int>("Number")
+
536  .HasColumnType("INTEGER");
+
537 
+
538  b.Property<long?>("PrimaryRevisionInformationId")
+
539  .IsRequired()
+
540  .HasColumnType("INTEGER");
+
541 
+
542  b.Property<string>("PullRequestRevision")
+
543  .IsRequired()
+
544  .HasColumnType("TEXT")
+
545  .HasMaxLength(40);
+
546 
+
547  b.Property<string>("TitleAtMerge")
+
548  .IsRequired()
+
549  .HasColumnType("TEXT");
+
550 
+
551  b.Property<string>("Url")
+
552  .IsRequired()
+
553  .HasColumnType("TEXT");
+
554 
+
555  b.HasKey("Id");
+
556 
+
557  b.HasIndex("MergedById");
+
558 
+
559  b.HasIndex("PrimaryRevisionInformationId")
+
560  .IsUnique();
+
561 
+
562  b.ToTable("TestMerges");
+
563  });
+
564 
+
565  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
566  {
+
567  b.Property<long?>("Id")
+
568  .ValueGeneratedOnAdd()
+
569  .HasColumnType("INTEGER");
+
570 
+
571  b.Property<ulong>("AdministrationRights")
+
572  .HasColumnType("INTEGER");
+
573 
+
574  b.Property<string>("CanonicalName")
+
575  .IsRequired()
+
576  .HasColumnType("TEXT");
+
577 
+
578  b.Property<DateTimeOffset?>("CreatedAt")
+
579  .IsRequired()
+
580  .HasColumnType("TEXT");
+
581 
+
582  b.Property<long?>("CreatedById")
+
583  .HasColumnType("INTEGER");
+
584 
+
585  b.Property<bool?>("Enabled")
+
586  .IsRequired()
+
587  .HasColumnType("INTEGER");
+
588 
+
589  b.Property<ulong>("InstanceManagerRights")
+
590  .HasColumnType("INTEGER");
+
591 
+
592  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
593  .HasColumnType("TEXT");
+
594 
+
595  b.Property<string>("Name")
+
596  .IsRequired()
+
597  .HasColumnType("TEXT")
+
598  .HasMaxLength(10000);
+
599 
+
600  b.Property<string>("PasswordHash")
+
601  .HasColumnType("TEXT");
+
602 
+
603  b.Property<string>("SystemIdentifier")
+
604  .HasColumnType("TEXT");
+
605 
+
606  b.HasKey("Id");
+
607 
+
608  b.HasIndex("CanonicalName")
+
609  .IsUnique();
+
610 
+
611  b.HasIndex("CreatedById");
+
612 
+
613  b.HasIndex("SystemIdentifier")
+
614  .IsUnique();
+
615 
+
616  b.ToTable("Users");
+
617  });
+
618 
+
619  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
620  {
+
621  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
622  .WithMany("ChatSettings")
+
623  .HasForeignKey("InstanceId")
+
624  .OnDelete(DeleteBehavior.Cascade)
+
625  .IsRequired();
+
626  });
+
627 
+
628  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
629  {
+
630  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
631  .WithMany("Channels")
+
632  .HasForeignKey("ChatSettingsId")
+
633  .OnDelete(DeleteBehavior.Cascade)
+
634  .IsRequired();
+
635  });
+
636 
+
637  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
638  {
+
639  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
640  .WithOne()
+
641  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
642  .OnDelete(DeleteBehavior.Cascade)
+
643  .IsRequired();
+
644 
+
645  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
646  .WithMany("CompileJobs")
+
647  .HasForeignKey("RevisionInformationId")
+
648  .OnDelete(DeleteBehavior.ClientNoAction)
+
649  .IsRequired();
+
650  });
+
651 
+
652  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
653  {
+
654  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
655  .WithOne("DreamDaemonSettings")
+
656  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
657  .OnDelete(DeleteBehavior.Cascade)
+
658  .IsRequired();
+
659  });
+
660 
+
661  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
662  {
+
663  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
664  .WithOne("DreamMakerSettings")
+
665  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
666  .OnDelete(DeleteBehavior.Cascade)
+
667  .IsRequired();
+
668  });
+
669 
+
670  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
671  {
+
672  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
673  .WithMany("InstanceUsers")
+
674  .HasForeignKey("InstanceId")
+
675  .OnDelete(DeleteBehavior.Cascade)
+
676  .IsRequired();
+
677 
+
678  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
679  .WithMany("InstanceUsers")
+
680  .HasForeignKey("UserId")
+
681  .OnDelete(DeleteBehavior.Cascade)
+
682  .IsRequired();
+
683  });
+
684 
+
685  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
686  {
+
687  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
688  .WithMany()
+
689  .HasForeignKey("CancelledById");
+
690 
+
691  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
692  .WithMany("Jobs")
+
693  .HasForeignKey("InstanceId")
+
694  .OnDelete(DeleteBehavior.Cascade)
+
695  .IsRequired();
+
696 
+
697  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
698  .WithMany()
+
699  .HasForeignKey("StartedById")
+
700  .OnDelete(DeleteBehavior.Cascade)
+
701  .IsRequired();
+
702  });
+
703 
+
704  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
705  {
+
706  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
707  .WithMany()
+
708  .HasForeignKey("CompileJobId")
+
709  .OnDelete(DeleteBehavior.Cascade)
+
710  .IsRequired();
+
711  });
+
712 
+
713  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
714  {
+
715  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
716  .WithOne("RepositorySettings")
+
717  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
718  .OnDelete(DeleteBehavior.Cascade)
+
719  .IsRequired();
+
720  });
+
721 
+
722  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
723  {
+
724  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
725  .WithMany("ActiveTestMerges")
+
726  .HasForeignKey("RevisionInformationId")
+
727  .OnDelete(DeleteBehavior.Cascade)
+
728  .IsRequired();
+
729 
+
730  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
731  .WithMany("RevisonInformations")
+
732  .HasForeignKey("TestMergeId")
+
733  .OnDelete(DeleteBehavior.ClientNoAction)
+
734  .IsRequired();
+
735  });
+
736 
+
737  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
738  {
+
739  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
740  .WithMany("RevisionInformations")
+
741  .HasForeignKey("InstanceId")
+
742  .OnDelete(DeleteBehavior.Cascade)
+
743  .IsRequired();
+
744  });
+
745 
+
746  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
747  {
+
748  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
749  .WithMany("TestMerges")
+
750  .HasForeignKey("MergedById")
+
751  .OnDelete(DeleteBehavior.Restrict)
+
752  .IsRequired();
+
753 
+
754  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
755  .WithOne("PrimaryTestMerge")
+
756  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
757  .OnDelete(DeleteBehavior.Cascade)
+
758  .IsRequired();
+
759  });
+
760 
+
761  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
762  {
+
763  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
764  .WithMany("CreatedUsers")
+
765  .HasForeignKey("CreatedById");
+
766  });
+
767 #pragma warning restore 612, 618
+
768  }
+
769  }
+
770 }
+
+
DbContext
+
Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.BuildTargetModel
override void BuildTargetModel(ModelBuilder modelBuilder)
Definition: 20200807214754_SLAddDeploymentColumns.Designer.cs:14
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Migration
+ + + + diff --git a/20200807214754___s_l_add_deployment_columns_8cs.html b/20200807214754___s_l_add_deployment_columns_8cs.html new file mode 100644 index 0000000000..074a731de3 --- /dev/null +++ b/20200807214754___s_l_add_deployment_columns_8cs.html @@ -0,0 +1,106 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214754_SLAddDeploymentColumns.cs File Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
20200807214754_SLAddDeploymentColumns.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns
 Adds columns for GitHub deployments for SQLite. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Database
 
namespace  Tgstation.Server.Host.Database.Migrations
 
+
+ + + + diff --git a/20200807214754___s_l_add_deployment_columns_8cs_source.html b/20200807214754___s_l_add_deployment_columns_8cs_source.html new file mode 100644 index 0000000000..984e277e32 --- /dev/null +++ b/20200807214754___s_l_add_deployment_columns_8cs_source.html @@ -0,0 +1,203 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Database/Migrations/20200807214754_SLAddDeploymentColumns.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
20200807214754_SLAddDeploymentColumns.cs
+
+
+Go to the documentation of this file.
1 using Microsoft.EntityFrameworkCore.Migrations;
+
2 using System;
+
3 
+ +
5 {
+
9  public partial class SLAddDeploymentColumns : Migration
+
10  {
+
12  protected override void Up(MigrationBuilder migrationBuilder)
+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
33 
+
35  protected override void Down(MigrationBuilder migrationBuilder)
+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.RenameTable(
+
41  name: "RepositorySettings",
+
42  newName: "RepositorySettings_down");
+
43 
+
44  migrationBuilder.CreateTable(
+
45  name: "RepositorySettings",
+
46  columns: table => new
+
47  {
+
48  Id = table.Column<long>(nullable: false)
+
49  .Annotation("Sqlite:Autoincrement", true),
+
50  CommitterName = table.Column<string>(maxLength: 10000, nullable: false),
+
51  CommitterEmail = table.Column<string>(maxLength: 10000, nullable: false),
+
52  AccessUser = table.Column<string>(maxLength: 10000, nullable: true),
+
53  AccessToken = table.Column<string>(maxLength: 10000, nullable: true),
+
54  PushTestMergeCommits = table.Column<bool>(nullable: false),
+
55  ShowTestMergeCommitters = table.Column<bool>(nullable: false),
+
56  AutoUpdatesKeepTestMerges = table.Column<bool>(nullable: false),
+
57  AutoUpdatesSynchronize = table.Column<bool>(nullable: false),
+
58  PostTestMergeComment = table.Column<bool>(nullable: false),
+
59  InstanceId = table.Column<long>(nullable: false)
+
60  },
+
61  constraints: table =>
+
62  {
+
63  table.PrimaryKey("PK_RepositorySettings", x => x.Id);
+
64  table.ForeignKey(
+
65  name: "FK_RepositorySettings_Instances_InstanceId",
+
66  column: x => x.InstanceId,
+
67  principalTable: "Instances",
+
68  principalColumn: "Id",
+
69  onDelete: ReferentialAction.Cascade);
+
70  });
+
71 
+
72  migrationBuilder.Sql(
+
73  $"INSERT INTO RepositorySettings SELECT Id,CommitterName,CommitterEmail,AccessUser,AccessToken,PushTestMergeCommits,ShowTestMergeCommitters,AutoUpdatesKeepTestMerges,AutoUpdatesSynchronize,PostTestMergeComment,InstanceId FROM RepositorySettings_down");
+
74 
+
75  migrationBuilder.DropTable(
+
76  name: "RepositorySettings_down");
+
77 
+
78  migrationBuilder.RenameTable(
+
79  name: "CompileJobs",
+
80  newName: "CompileJobs_down");
+
81 
+
82  migrationBuilder.CreateTable(
+
83  name: "CompileJobs",
+
84  columns: table => new
+
85  {
+
86  Id = table.Column<long>(nullable: false)
+
87  .Annotation("Sqlite:Autoincrement", true),
+
88  DmeName = table.Column<string>(nullable: false),
+
89  Output = table.Column<string>(nullable: false),
+
90  DirectoryName = table.Column<Guid>(nullable: false),
+
91  MinimumSecurityLevel = table.Column<int>(nullable: true),
+
92  JobId = table.Column<long>(nullable: false),
+
93  RevisionInformationId = table.Column<long>(nullable: false),
+
94  ByondVersion = table.Column<string>(nullable: false),
+
95  DMApiMajorVersion = table.Column<int>(nullable: true),
+
96  DMApiMinorVersion = table.Column<int>(nullable: true),
+
97  DMApiPatchVersion = table.Column<int>(nullable: true)
+
98  },
+
99  constraints: table =>
+
100  {
+
101  table.PrimaryKey("PK_CompileJobs", x => x.Id);
+
102  table.ForeignKey(
+
103  name: "FK_CompileJobs_Jobs_JobId",
+
104  column: x => x.JobId,
+
105  principalTable: "Jobs",
+
106  principalColumn: "Id",
+
107  onDelete: ReferentialAction.Cascade);
+
108  table.ForeignKey(
+
109  name: "FK_CompileJobs_RevisionInformations_RevisionInformationId",
+
110  column: x => x.RevisionInformationId,
+
111  principalTable: "RevisionInformations",
+
112  principalColumn: "Id");
+
113  });
+
114 
+
115  migrationBuilder.Sql(
+
116  $"INSERT INTO CompileJobs SELECT Id,DmeName,Output,DirectoryName,MinimumSecurityLevel,JobId,RevisionInformationId,ByondVersion,DMApiMajorVersion,DMApiMinorVersion,DMApiPatchVersion FROM CompileJobs_down");
+
117 
+
118  migrationBuilder.DropTable(
+
119  name: "CompileJobs_down");
+
120  }
+
121  }
+
122 }
+
+
Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Down
override void Down(MigrationBuilder migrationBuilder)
Definition: 20200807214754_SLAddDeploymentColumns.cs:35
+
Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns
Adds columns for GitHub deployments for SQLite.
Definition: 20200807214754_SLAddDeploymentColumns.cs:10
+
Tgstation.Server.Host.Database.Migrations
Definition: 20180906135553_MSInitialCreate.cs:6
+
Migration
+
Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Up
override void Up(MigrationBuilder migrationBuilder)
Definition: 20200807214754_SLAddDeploymentColumns.cs:12
+ + + + diff --git a/_a_p_i_8dox.html b/_a_p_i_8dox.html index cc415f1d65..ac9ce9e7bf 100644 --- a/_a_p_i_8dox.html +++ b/_a_p_i_8dox.html @@ -3,7 +3,7 @@ - + tgstation-server: docs/API.dox File Reference @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Namespaces | +Enumerations
+
+
DiscordDMOutputDisplayType.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Api
 
namespace  Tgstation.Server.Api.Models
 
+ + + + +

+Enumerations

enum  Tgstation.Server.Api.Models.DiscordDMOutputDisplayType { Tgstation.Server.Api.Models.DiscordDMOutputDisplayType.Always, +Tgstation.Server.Api.Models.DiscordDMOutputDisplayType.OnError, +Tgstation.Server.Api.Models.DiscordDMOutputDisplayType.Never + }
 When the DM output section of Discord deployment embeds should be shown. More...
 
+
+ + + + diff --git a/_discord_d_m_output_display_type_8cs_source.html b/_discord_d_m_output_display_type_8cs_source.html new file mode 100644 index 0000000000..50cab6a5d5 --- /dev/null +++ b/_discord_d_m_output_display_type_8cs_source.html @@ -0,0 +1,95 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Api/Models/DiscordDMOutputDisplayType.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
DiscordDMOutputDisplayType.cs
+
+
+Go to the documentation of this file.
+
2 {
+ +
7  {
+
11  Always,
+
12 
+
16  OnError,
+
17 
+
21  Never
+
22  }
+
23 }
+
+
Tgstation.Server.Api.Models.DiscordDMOutputDisplayType.Always
@ Always
Always show.
+
Tgstation.Server.Api.Models.DiscordDMOutputDisplayType
DiscordDMOutputDisplayType
When the DM output section of Discord deployment embeds should be shown.
Definition: DiscordDMOutputDisplayType.cs:7
+
Tgstation.Server.Api.Models
Definition: Administration.cs:4
+ + + + diff --git a/_discord_provider_8cs.html b/_discord_provider_8cs.html index e86a7908ed..35e573ded1 100644 --- a/_discord_provider_8cs.html +++ b/_discord_provider_8cs.html @@ -3,7 +3,7 @@ - + tgstation-server: src/Tgstation.Server.Host/Components/Chat/Providers/DiscordProvider.cs File Reference @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
GitHubDeploymentManager.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Classes

class  Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Components
 
namespace  Tgstation.Server.Host.Components.Deployment
 
+
+ + + + diff --git a/_git_hub_deployment_manager_8cs_source.html b/_git_hub_deployment_manager_8cs_source.html new file mode 100644 index 0000000000..6e9008f146 --- /dev/null +++ b/_git_hub_deployment_manager_8cs_source.html @@ -0,0 +1,338 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Components/Deployment/GitHubDeploymentManager.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
GitHubDeploymentManager.cs
+
+
+Go to the documentation of this file.
1 using Microsoft.EntityFrameworkCore;
+
2 using Microsoft.Extensions.Logging;
+
3 using Octokit;
+
4 using System;
+
5 using System.Collections.ObjectModel;
+
6 using System.Linq;
+
7 using System.Threading;
+
8 using System.Threading.Tasks;
+ + + + + +
14 
+ +
16 {
+ +
19  {
+ +
24 
+ +
29 
+
33  readonly ILogger<GitHubDeploymentManager> logger;
+
34 
+
38  readonly Api.Models.Instance metadata;
+
39 
+ + + +
50  ILogger<GitHubDeploymentManager> logger,
+
51  Api.Models.Instance metadata)
+
52  {
+
53  this.databaseContextFactory = databaseContextFactory ?? throw new ArgumentNullException(nameof(databaseContextFactory));
+
54  this.gitHubClientFactory = gitHubClientFactory ?? throw new ArgumentNullException(nameof(gitHubClientFactory));
+
55  this.logger = logger ?? throw new ArgumentNullException(nameof(logger));
+
56  this.metadata = metadata ?? throw new ArgumentNullException(nameof(metadata));
+
57  }
+
58 
+
60  public async Task StartDeployment(IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)
+
61  {
+
62  if (repository == null)
+
63  throw new ArgumentNullException(nameof(repository));
+
64  if (compileJob == null)
+
65  throw new ArgumentNullException(nameof(compileJob));
+
66 
+
67  if (!repository.IsGitHubRepository)
+
68  {
+
69  logger.LogTrace("Not managing deployment as this is not a GitHub repo");
+
70  return;
+
71  }
+
72 
+
73  logger.LogTrace("Starting deployment...");
+
74 
+
75  RepositorySettings repositorySettings = null;
+ +
77  async databaseContext =>
+
78  repositorySettings = await databaseContext
+ +
80  .AsQueryable()
+
81  .Where(x => x.InstanceId == metadata.Id)
+
82  .FirstAsync(cancellationToken)
+
83  .ConfigureAwait(false))
+
84  .ConfigureAwait(false);
+
85 
+
86  var gitHubClient = repositorySettings.AccessToken == null
+ +
88  : gitHubClientFactory.CreateClient(repositorySettings.AccessToken);
+
89 
+
90  var repositoryTask = gitHubClient
+
91  .Repository
+
92  .Get(
+
93  repository.GitHubOwner,
+
94  repository.GitHubRepoName);
+
95 
+
96  if (repositorySettings.CreateGitHubDeployments.Value)
+
97  {
+
98  logger.LogTrace("Creating deployment...");
+
99  var deployment = await gitHubClient
+
100  .Repository
+
101  .Deployment
+
102  .Create(
+
103  repository.GitHubOwner,
+
104  repository.GitHubRepoName,
+
105  new NewDeployment(compileJob.RevisionInformation.CommitSha)
+
106  {
+
107  AutoMerge = false,
+
108  Description = "TGS Game Deployment",
+
109  Environment = $"TGS: {metadata.Name}",
+
110  ProductionEnvironment = true,
+
111  RequiredContexts = new Collection<string>()
+
112  })
+
113  .WithToken(cancellationToken)
+
114  .ConfigureAwait(false);
+
115 
+
116  compileJob.GitHubDeploymentId = deployment.Id;
+
117  logger.LogDebug("Created deployment ID {0}", deployment.Id);
+
118 
+
119  await gitHubClient
+
120  .Repository
+
121  .Deployment
+
122  .Status
+
123  .Create(
+
124  repository.GitHubOwner,
+
125  repository.GitHubRepoName,
+
126  deployment.Id,
+
127  new NewDeploymentStatus(DeploymentState.InProgress)
+
128  {
+
129  Description = "The project is being deployed",
+
130  AutoInactive = false
+
131  })
+
132  .WithToken(cancellationToken)
+
133  .ConfigureAwait(false);
+
134 
+
135  logger.LogTrace("In-progress deployment status created");
+
136  }
+
137  else
+
138  logger.LogTrace("Not creating deployment");
+
139 
+
140  try
+
141  {
+
142  var gitHubRepo = await repositoryTask
+
143  .WithToken(cancellationToken)
+
144  .ConfigureAwait(false);
+
145 
+
146  compileJob.GitHubRepoId = gitHubRepo.Id;
+
147  logger.LogTrace("Set GitHub ID as {0}", compileJob.GitHubRepoId);
+
148  }
+
149  catch (RateLimitExceededException ex) when (!repositorySettings.CreateGitHubDeployments.Value)
+
150  {
+
151  logger.LogWarning(ex, "Unable to set compile job repository ID!");
+
152  }
+
153  }
+
154 
+
155  async Task UpdateDeployment(
+
156  CompileJob compileJob,
+
157  string description,
+
158  DeploymentState deploymentState,
+
159  CancellationToken cancellationToken)
+
160  {
+
161  if (compileJob == null)
+
162  throw new ArgumentNullException(nameof(compileJob));
+
163 
+
164  if (!compileJob.GitHubRepoId.HasValue || !compileJob.GitHubDeploymentId.HasValue)
+
165  {
+
166  logger.LogTrace("Not updating deployment as it is missing a repo ID or deployment ID.");
+
167  return;
+
168  }
+
169 
+
170  logger.LogTrace("Updating deployment {0} to {1}...", compileJob.GitHubDeploymentId.Value, deploymentState);
+
171 
+
172  string gitHubAccessToken = null;
+ +
174  async databaseContext =>
+
175  gitHubAccessToken = await databaseContext
+ +
177  .AsQueryable()
+
178  .Where(x => x.InstanceId == metadata.Id)
+
179  .Select(x => x.AccessToken)
+
180  .FirstAsync(cancellationToken)
+
181  .ConfigureAwait(false))
+
182  .ConfigureAwait(false);
+
183 
+
184  if (gitHubAccessToken == null)
+
185  {
+
186  logger.LogWarning(
+
187  "GitHub access token disappeared during deployment, can't update to {0}!",
+
188  deploymentState);
+
189  return;
+
190  }
+
191 
+
192  var gitHubClient = gitHubClientFactory.CreateClient(gitHubAccessToken);
+
193 
+
194  await gitHubClient
+
195  .Repository
+
196  .Deployment
+
197  .Status
+
198  .Create(
+
199  compileJob.GitHubRepoId.Value,
+
200  compileJob.GitHubDeploymentId.Value,
+
201  new NewDeploymentStatus(deploymentState)
+
202  {
+
203  Description = description
+
204  })
+
205  .WithToken(cancellationToken)
+
206  .ConfigureAwait(false);
+
207  }
+
208 
+
210  public Task StageDeployment(
+
211  CompileJob compileJob,
+
212  CancellationToken cancellationToken)
+
213  => UpdateDeployment(
+
214  compileJob,
+
215  "The deployment succeeded and will be applied a the next server reboot.",
+
216  DeploymentState.Pending,
+
217  cancellationToken);
+
218 
+
220  public Task ApplyDeployment(CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)
+
221  => UpdateDeployment(
+
222  compileJob,
+
223  "The deployment is now live on the server.",
+
224  DeploymentState.Success,
+
225  cancellationToken);
+
226 
+
228  public Task FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)
+
229  => UpdateDeployment(
+
230  compileJob,
+
231  errorMessage,
+
232  DeploymentState.Error,
+
233  cancellationToken);
+
234 
+
236  public Task MarkInactive(CompileJob compileJob, CancellationToken cancellationToken)
+
237  => UpdateDeployment(
+
238  compileJob,
+
239  "The deployment has been superceeded.",
+
240  DeploymentState.Inactive,
+
241  cancellationToken);
+
242  }
+
243 }
+
+
Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext
Task UseContext(Func< IDatabaseContext, Task > operation)
Run an operation in the scope of an IDatabaseContext
+
Tgstation.Server.Host.Components.Deployment
Definition: DmbFactory.cs:14
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory
readonly IGitHubClientFactory gitHubClientFactory
The IGitHubClientFactory for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:28
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.UpdateDeployment
async Task UpdateDeployment(CompileJob compileJob, string description, DeploymentState deploymentState, CancellationToken cancellationToken)
Definition: GitHubDeploymentManager.cs:155
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.ApplyDeployment
Task ApplyDeployment(CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)
Stage a given compileJob 's deployment.
+
Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner
string GitHubOwner
The Octokit.Repository.Owner if this IsGitHubRepository
Definition: IRepository.cs:21
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.MarkInactive
Task MarkInactive(CompileJob compileJob, CancellationToken cancellationToken)
Mark the deplotment for a given compileJob as inactive.
+
Tgstation.Server.Host.Models.CompileJob.GitHubDeploymentId
int? GitHubDeploymentId
The GitHub deployment ID associated with the CompileJob if any.
Definition: CompileJob.cs:55
+
Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository
bool IsGitHubRepository
If the IRepository was cloned from GitHub.com
Definition: IRepository.cs:16
+
Tgstation
Definition: ApiHeaders.cs:13
+
Tgstation.Server.Host.Models.CompileJob
Definition: CompileJob.cs:8
+
Tgstation.Server.Host.Models.CompileJob.RevisionInformation
RevisionInformation RevisionInformation
See Api.Models.CompileJob.RevisionInformation
Definition: CompileJob.cs:24
+
Tgstation.Server.Host.Core.IGitHubClientFactory
For creating IGitHubClients
Definition: IGitHubClientFactory.cs:9
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StartDeployment
async Task StartDeployment(IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)
Start a deployment for a given compileJob .
Definition: GitHubDeploymentManager.cs:60
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
Creates and updates GitHub deployments.
Definition: IGitHubDeploymentManager.cs:12
+
Tgstation.Server.Host.Models.CompileJob.GitHubRepoId
long? GitHubRepoId
The source GitHub repository the deployment came from if any.
Definition: CompileJob.cs:50
+
Tgstation.Server.Host.Components.Repository.IRepository
Represents an on-disk git repository
Definition: IRepository.cs:12
+
Tgstation.Server.Host
Definition: ByondExecutableLock.cs:9
+
Tgstation.Server.Api.Models.Internal.RepositorySettings.AccessToken
string? AccessToken
The token/password to access the git repository with
Definition: RepositorySettings.cs:35
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger
readonly ILogger< GitHubDeploymentManager > logger
The ILogger for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:33
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
Definition: GitHubDeploymentManager.cs:19
+
Tgstation.Server.Api.Models.Internal.RevisionInformation.CommitSha
string? CommitSha
The revision sha
Definition: RevisionInformation.cs:15
+
Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName
string GitHubRepoName
The Octokit.Repository.Name if this IsGitHubRepository
Definition: IRepository.cs:26
+
Tgstation.Server.Host.Models
Definition: ChatBot.cs:6
+
Tgstation.Server.Host.Core
Definition: Application.cs:43
+
Tgstation.Server.Host.Models.RepositorySettings
Definition: RepositorySettings.cs:8
+
Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient
IGitHubClient CreateClient()
Create a client with anonymous authentication. Low rate limit
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory
readonly IDatabaseContextFactory databaseContextFactory
The IDatabaseContextFactory for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:23
+
Tgstation.Server.Api.Models.Internal.RepositorySettings.CreateGitHubDeployments
bool? CreateGitHubDeployments
If GitHub deployments should be created. Requires AccessUser, AccessToken, and PushTestMergeCommits t...
Definition: RepositorySettings.cs:47
+
Tgstation.Server.Host.Components
Definition: ByondExecutableLock.cs:9
+
Tgstation.Server.Host.Database
Definition: DatabaseCollection.cs:10
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.FailDeployment
Task FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)
Fail a deployment for a given compileJob .
+
Tgstation.Server.Host.Extensions
Definition: ApplicationBuilderExtensions.cs:13
+
Tgstation.Server.Host.Components.Repository
Definition: ICredentialsProvider.cs:4
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata
readonly Api.Models.Instance metadata
The Models.Instance for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:38
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StageDeployment
Task StageDeployment(CompileJob compileJob, CancellationToken cancellationToken)
Stage a given compileJob 's deployment.
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.GitHubDeploymentManager
GitHubDeploymentManager(IDatabaseContextFactory databaseContextFactory, IGitHubClientFactory gitHubClientFactory, ILogger< GitHubDeploymentManager > logger, Api.Models.Instance metadata)
Initializes a new instance of the GitHubDeploymentManager class.
Definition: GitHubDeploymentManager.cs:47
+
Tgstation.Server
Definition: ApiHeaders.cs:13
+
Tgstation.Server.Host.Database.IDatabaseContextFactory
Factory for scoping usage of IDatabaseContexts. Meant for use by Components
Definition: IDatabaseContextFactory.cs:10
+ + + + diff --git a/_global_suppressions_8cs.html b/_global_suppressions_8cs.html index 3eececa7e2..a1e6ade318 100644 --- a/_global_suppressions_8cs.html +++ b/_global_suppressions_8cs.html @@ -3,7 +3,7 @@ - + tgstation-server: src/Tgstation.Server.Host.Service/GlobalSuppressions.cs File Reference @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
IGitHubDeploymentManager.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

interface  Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
 Creates and updates GitHub deployments. More...
 
+ + + + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Components
 
namespace  Tgstation.Server.Host.Components.Deployment
 
+
+ + + + diff --git a/_i_git_hub_deployment_manager_8cs_source.html b/_i_git_hub_deployment_manager_8cs_source.html new file mode 100644 index 0000000000..4ff386f88d --- /dev/null +++ b/_i_git_hub_deployment_manager_8cs_source.html @@ -0,0 +1,118 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Components/Deployment/IGitHubDeploymentManager.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
IGitHubDeploymentManager.cs
+
+
+Go to the documentation of this file.
1 using System.Threading;
+
2 using System.Threading.Tasks;
+ + +
5 
+ +
7 {
+ +
12  {
+
20  Task StartDeployment(IRepository repository, CompileJob compileJob, CancellationToken cancellationToken);
+
21 
+ +
29  CompileJob compileJob,
+
30  CancellationToken cancellationToken);
+
31 
+
39  Task ApplyDeployment(CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken);
+
40 
+
48  Task FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken);
+
49 
+
56  Task MarkInactive(CompileJob compileJob, CancellationToken cancellationToken);
+
57  }
+
58 }
+
+
Tgstation.Server.Host.Components.Deployment
Definition: DmbFactory.cs:14
+
Tgstation
Definition: ApiHeaders.cs:13
+
Tgstation.Server.Host.Models.CompileJob
Definition: CompileJob.cs:8
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.FailDeployment
Task FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)
Fail a deployment for a given compileJob .
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
Creates and updates GitHub deployments.
Definition: IGitHubDeploymentManager.cs:12
+
Tgstation.Server.Host.Components.Repository.IRepository
Represents an on-disk git repository
Definition: IRepository.cs:12
+
Tgstation.Server.Host
Definition: ByondExecutableLock.cs:9
+
Tgstation.Server.Host.Models
Definition: ChatBot.cs:6
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StageDeployment
Task StageDeployment(CompileJob compileJob, CancellationToken cancellationToken)
Stage a given compileJob 's deployment.
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.MarkInactive
Task MarkInactive(CompileJob compileJob, CancellationToken cancellationToken)
Mark the deplotment for a given compileJob as inactive.
+
Tgstation.Server.Host.Components
Definition: ByondExecutableLock.cs:9
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.ApplyDeployment
Task ApplyDeployment(CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)
Stage a given compileJob 's deployment.
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StartDeployment
Task StartDeployment(IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)
Start a deployment for a given compileJob .
+
Tgstation.Server.Host.Components.Repository
Definition: ICredentialsProvider.cs:4
+
Tgstation.Server
Definition: ApiHeaders.cs:13
+ + + + diff --git a/_i_http_client_8cs.html b/_i_http_client_8cs.html index 4b50b92e4e..c129b801ea 100644 --- a/_i_http_client_8cs.html +++ b/_i_http_client_8cs.html @@ -3,7 +3,7 @@ - + tgstation-server: src/Tgstation.Server.Client/IHttpClient.cs File Reference @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Classes | +Namespaces
+
+
SecurityConfiguration.cs File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + +

+Classes

class  Tgstation.Server.Host.Configuration.SecurityConfiguration
 Configuration options pertaining to user security More...
 
+ + + + + + + + + +

+Namespaces

namespace  Tgstation
 
namespace  Tgstation.Server
 
namespace  Tgstation.Server.Host
 
namespace  Tgstation.Server.Host.Configuration
 
+
+ + + + diff --git a/_security_configuration_8cs_source.html b/_security_configuration_8cs_source.html new file mode 100644 index 0000000000..ee34cc1b4e --- /dev/null +++ b/_security_configuration_8cs_source.html @@ -0,0 +1,112 @@ + + + + + + + +tgstation-server: src/Tgstation.Server.Host/Configuration/SecurityConfiguration.cs Source File + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
SecurityConfiguration.cs
+
+
+Go to the documentation of this file.
+
2 {
+
6  sealed class SecurityConfiguration
+
7  {
+
11  public const string Section = "Security";
+
12 
+
16  const uint DefaultTokenExpiryMinutes = 15;
+
17 
+ +
22 
+ +
27 
+
31  public uint TokenExpiryMinutes { get; set; } = DefaultTokenExpiryMinutes;
+
32 
+ +
37 
+ +
42 
+
46  public string CustomTokenSigningKeyBase64 { get; set; }
+
47  }
+
48 }
+
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.CustomTokenSigningKeyBase64
string CustomTokenSigningKeyBase64
A custom token signing key. Overrides TokenSigningKeyByteCount.
Definition: SecurityConfiguration.cs:46
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenSigningKeyByteAmount
const uint DefaultTokenSigningKeyByteAmount
Default value of TokenSigningKeyByteCount.
Definition: SecurityConfiguration.cs:26
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.TokenClockSkewMinutes
uint TokenClockSkewMinutes
Amount of minutes to skew the clock for Api.Models.Token validation.
Definition: SecurityConfiguration.cs:36
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenExpiryMinutes
const uint DefaultTokenExpiryMinutes
Default value of TokenExpiryMinutes.
Definition: SecurityConfiguration.cs:16
+
Tgstation.Server.Host.Configuration.SecurityConfiguration
Configuration options pertaining to user security
Definition: SecurityConfiguration.cs:7
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.Section
const string Section
The key for the Microsoft.Extensions.Configuration.IConfigurationSection the SecurityConfiguration re...
Definition: SecurityConfiguration.cs:11
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenClockSkewMinutes
const uint DefaultTokenClockSkewMinutes
Default value of TokenClockSkewMinutes.
Definition: SecurityConfiguration.cs:21
+
Tgstation.Server.Host.Configuration
Definition: ControlPanelConfiguration.cs:4
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.TokenExpiryMinutes
uint TokenExpiryMinutes
Amount of minutes until generated Api.Models.Tokens expire.
Definition: SecurityConfiguration.cs:31
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.TokenSigningKeyByteCount
uint TokenSigningKeyByteCount
Amount of bytes to use in the Microsoft.IdentityModel.Tokens.TokenValidationParameters....
Definition: SecurityConfiguration.cs:41
+ + + + diff --git a/_semaphore_slim_context_8cs.html b/_semaphore_slim_context_8cs.html index f8bf4152ba..37657d5241 100644 --- a/_semaphore_slim_context_8cs.html +++ b/_semaphore_slim_context_8cs.html @@ -3,7 +3,7 @@ - + tgstation-server: src/Tgstation.Server.Host/Core/SemaphoreSlimContext.cs File Reference @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager, including all inherited members.

+ + + + + + + + + + + + +
ApplyDeployment(CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
databaseContextFactoryTgstation.Server.Host.Components.Deployment.GitHubDeploymentManagerprivate
FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
gitHubClientFactoryTgstation.Server.Host.Components.Deployment.GitHubDeploymentManagerprivate
GitHubDeploymentManager(IDatabaseContextFactory databaseContextFactory, IGitHubClientFactory gitHubClientFactory, ILogger< GitHubDeploymentManager > logger, Api.Models.Instance metadata)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
loggerTgstation.Server.Host.Components.Deployment.GitHubDeploymentManagerprivate
MarkInactive(CompileJob compileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
metadataTgstation.Server.Host.Components.Deployment.GitHubDeploymentManagerprivate
StageDeployment(CompileJob compileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
StartDeployment(IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager
UpdateDeployment(CompileJob compileJob, string description, DeploymentState deploymentState, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManagerprivate
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html new file mode 100644 index 0000000000..0c4ff339fb --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html @@ -0,0 +1,746 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Public Member Functions | +Private Member Functions | +Private Attributes | +List of all members
+
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager Class Reference
+
+
+ +

+ More...

+
+Inheritance diagram for Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager:
+
+
Inheritance graph
+ + + + +
[legend]
+
+Collaboration diagram for Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager:
+
+
Collaboration graph
+ + + + + + + + +
[legend]
+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 GitHubDeploymentManager (IDatabaseContextFactory databaseContextFactory, IGitHubClientFactory gitHubClientFactory, ILogger< GitHubDeploymentManager > logger, Api.Models.Instance metadata)
 Initializes a new instance of the GitHubDeploymentManager class. More...
 
async Task StartDeployment (IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)
 Start a deployment for a given compileJob . More...
 
Task StageDeployment (CompileJob compileJob, CancellationToken cancellationToken)
 Stage a given compileJob 's deployment. More...
 
Task ApplyDeployment (CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)
 Stage a given compileJob 's deployment. More...
 
Task FailDeployment (CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)
 Fail a deployment for a given compileJob . More...
 
Task MarkInactive (CompileJob compileJob, CancellationToken cancellationToken)
 Mark the deplotment for a given compileJob as inactive. More...
 
+ + + +

+Private Member Functions

async Task UpdateDeployment (CompileJob compileJob, string description, DeploymentState deploymentState, CancellationToken cancellationToken)
 
+ + + + + + + + + + + + + +

+Private Attributes

readonly IDatabaseContextFactory databaseContextFactory
 The IDatabaseContextFactory for the GitHubDeploymentManager. More...
 
readonly IGitHubClientFactory gitHubClientFactory
 The IGitHubClientFactory for the GitHubDeploymentManager. More...
 
readonly ILogger< GitHubDeploymentManagerlogger
 The ILogger for the GitHubDeploymentManager. More...
 
readonly Api.Models.Instance metadata
 The Models.Instance for the GitHubDeploymentManager. More...
 
+

Detailed Description

+
+

Definition at line 18 of file GitHubDeploymentManager.cs.

+

Constructor & Destructor Documentation

+ +

◆ GitHubDeploymentManager()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.GitHubDeploymentManager (IDatabaseContextFactory databaseContextFactory,
IGitHubClientFactory gitHubClientFactory,
ILogger< GitHubDeploymentManagerlogger,
Api.Models.Instance metadata 
)
+
+ +

Initializes a new instance of the GitHubDeploymentManager class.

+
Parameters
+ + + + + +
databaseContextFactoryThe value of databaseContextFactory.
gitHubClientFactoryThe value of gitHubClientFactory.
loggerThe value of logger.
metadataThe value of metadata.
+
+
+ +

Definition at line 47 of file GitHubDeploymentManager.cs.

+
52  {
+
53  this.databaseContextFactory = databaseContextFactory ?? throw new ArgumentNullException(nameof(databaseContextFactory));
+
54  this.gitHubClientFactory = gitHubClientFactory ?? throw new ArgumentNullException(nameof(gitHubClientFactory));
+
55  this.logger = logger ?? throw new ArgumentNullException(nameof(logger));
+
56  this.metadata = metadata ?? throw new ArgumentNullException(nameof(metadata));
+
57  }
+
+

References Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger, and Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata.

+ +
+
+

Member Function Documentation

+ +

◆ ApplyDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.ApplyDeployment (CompileJob compileJob,
CompileJob oldCompileJob,
CancellationToken cancellationToken 
)
+
+ +

Stage a given compileJob 's deployment.

+ +

Implements Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.

+ +
+
+ +

◆ FailDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.FailDeployment (CompileJob compileJob,
string errorMessage,
CancellationToken cancellationToken 
)
+
+ +

Fail a deployment for a given compileJob .

+ +

Implements Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.

+ +
+
+ +

◆ MarkInactive()

+ +
+
+ + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.MarkInactive (CompileJob compileJob,
CancellationToken cancellationToken 
)
+
+ +

Mark the deplotment for a given compileJob as inactive.

+ +

Implements Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.

+ +
+
+ +

◆ StageDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StageDeployment (CompileJob compileJob,
CancellationToken cancellationToken 
)
+
+ +

Stage a given compileJob 's deployment.

+ +

Implements Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.

+ +
+
+ +

◆ StartDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
async Task Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StartDeployment (IRepository repository,
CompileJob compileJob,
CancellationToken cancellationToken 
)
+
+ +

Start a deployment for a given compileJob .

+ +

Implements Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.

+ +

Definition at line 60 of file GitHubDeploymentManager.cs.

+
61  {
+
62  if (repository == null)
+
63  throw new ArgumentNullException(nameof(repository));
+
64  if (compileJob == null)
+
65  throw new ArgumentNullException(nameof(compileJob));
+
66 
+
67  if (!repository.IsGitHubRepository)
+
68  {
+
69  logger.LogTrace("Not managing deployment as this is not a GitHub repo");
+
70  return;
+
71  }
+
72 
+
73  logger.LogTrace("Starting deployment...");
+
74 
+
75  RepositorySettings repositorySettings = null;
+ +
77  async databaseContext =>
+
78  repositorySettings = await databaseContext
+ +
80  .AsQueryable()
+
81  .Where(x => x.InstanceId == metadata.Id)
+
82  .FirstAsync(cancellationToken)
+
83  .ConfigureAwait(false))
+
84  .ConfigureAwait(false);
+
85 
+
86  var gitHubClient = repositorySettings.AccessToken == null
+ +
88  : gitHubClientFactory.CreateClient(repositorySettings.AccessToken);
+
89 
+
90  var repositoryTask = gitHubClient
+
91  .Repository
+
92  .Get(
+
93  repository.GitHubOwner,
+
94  repository.GitHubRepoName);
+
95 
+
96  if (repositorySettings.CreateGitHubDeployments.Value)
+
97  {
+
98  logger.LogTrace("Creating deployment...");
+
99  var deployment = await gitHubClient
+
100  .Repository
+
101  .Deployment
+
102  .Create(
+
103  repository.GitHubOwner,
+
104  repository.GitHubRepoName,
+
105  new NewDeployment(compileJob.RevisionInformation.CommitSha)
+
106  {
+
107  AutoMerge = false,
+
108  Description = "TGS Game Deployment",
+
109  Environment = $"TGS: {metadata.Name}",
+
110  ProductionEnvironment = true,
+
111  RequiredContexts = new Collection<string>()
+
112  })
+
113  .WithToken(cancellationToken)
+
114  .ConfigureAwait(false);
+
115 
+
116  compileJob.GitHubDeploymentId = deployment.Id;
+
117  logger.LogDebug("Created deployment ID {0}", deployment.Id);
+
118 
+
119  await gitHubClient
+
120  .Repository
+
121  .Deployment
+
122  .Status
+
123  .Create(
+
124  repository.GitHubOwner,
+
125  repository.GitHubRepoName,
+
126  deployment.Id,
+
127  new NewDeploymentStatus(DeploymentState.InProgress)
+
128  {
+
129  Description = "The project is being deployed",
+
130  AutoInactive = false
+
131  })
+
132  .WithToken(cancellationToken)
+
133  .ConfigureAwait(false);
+
134 
+
135  logger.LogTrace("In-progress deployment status created");
+
136  }
+
137  else
+
138  logger.LogTrace("Not creating deployment");
+
139 
+
140  try
+
141  {
+
142  var gitHubRepo = await repositoryTask
+
143  .WithToken(cancellationToken)
+
144  .ConfigureAwait(false);
+
145 
+
146  compileJob.GitHubRepoId = gitHubRepo.Id;
+
147  logger.LogTrace("Set GitHub ID as {0}", compileJob.GitHubRepoId);
+
148  }
+
149  catch (RateLimitExceededException ex) when (!repositorySettings.CreateGitHubDeployments.Value)
+
150  {
+
151  logger.LogWarning(ex, "Unable to set compile job repository ID!");
+
152  }
+
153  }
+
+

References Tgstation.Server.Api.Models.Internal.RepositorySettings.AccessToken, Tgstation.Server.Api.Models.Internal.RevisionInformation.CommitSha, Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient(), Tgstation.Server.Api.Models.Internal.RepositorySettings.CreateGitHubDeployments, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory, Tgstation.Server.Host.Models.CompileJob.GitHubDeploymentId, Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner, Tgstation.Server.Host.Models.CompileJob.GitHubRepoId, Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName, Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata, Tgstation.Server.Host.Models.CompileJob.RevisionInformation, and Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext().

+
+Here is the call graph for this function:
+
+
+ + + + + +
+ +
+
+ +

◆ UpdateDeployment()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
async Task Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.UpdateDeployment (CompileJob compileJob,
string description,
DeploymentState deploymentState,
CancellationToken cancellationToken 
)
+
+private
+
+ +

Definition at line 155 of file GitHubDeploymentManager.cs.

+
160  {
+
161  if (compileJob == null)
+
162  throw new ArgumentNullException(nameof(compileJob));
+
163 
+
164  if (!compileJob.GitHubRepoId.HasValue || !compileJob.GitHubDeploymentId.HasValue)
+
165  {
+
166  logger.LogTrace("Not updating deployment as it is missing a repo ID or deployment ID.");
+
167  return;
+
168  }
+
169 
+
170  logger.LogTrace("Updating deployment {0} to {1}...", compileJob.GitHubDeploymentId.Value, deploymentState);
+
171 
+
172  string gitHubAccessToken = null;
+ +
174  async databaseContext =>
+
175  gitHubAccessToken = await databaseContext
+ +
177  .AsQueryable()
+
178  .Where(x => x.InstanceId == metadata.Id)
+
179  .Select(x => x.AccessToken)
+
180  .FirstAsync(cancellationToken)
+
181  .ConfigureAwait(false))
+
182  .ConfigureAwait(false);
+
183 
+
184  if (gitHubAccessToken == null)
+
185  {
+
186  logger.LogWarning(
+
187  "GitHub access token disappeared during deployment, can't update to {0}!",
+
188  deploymentState);
+
189  return;
+
190  }
+
191 
+
192  var gitHubClient = gitHubClientFactory.CreateClient(gitHubAccessToken);
+
193 
+
194  await gitHubClient
+
195  .Repository
+
196  .Deployment
+
197  .Status
+
198  .Create(
+
199  compileJob.GitHubRepoId.Value,
+
200  compileJob.GitHubDeploymentId.Value,
+
201  new NewDeploymentStatus(deploymentState)
+
202  {
+
203  Description = description
+
204  })
+
205  .WithToken(cancellationToken)
+
206  .ConfigureAwait(false);
+
207  }
+
+

References Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient(), Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory, Tgstation.Server.Host.Models.CompileJob.GitHubDeploymentId, Tgstation.Server.Host.Models.CompileJob.GitHubRepoId, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger, Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata, and Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext().

+
+Here is the call graph for this function:
+
+
+ + + + + +
+ +
+
+

Member Data Documentation

+ +

◆ databaseContextFactory

+ +
+
+ + + + + +
+ + + + +
readonly IDatabaseContextFactory Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory
+
+private
+
+
+ +

◆ gitHubClientFactory

+ +
+
+ + + + + +
+ + + + +
readonly IGitHubClientFactory Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory
+
+private
+
+
+ +

◆ logger

+ +
+
+ + + + + +
+ + + + +
readonly ILogger<GitHubDeploymentManager> Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger
+
+private
+
+
+ +

◆ metadata

+ +
+
+ + + + + +
+ + + + +
readonly Api.Models.Instance Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata
+
+private
+
+
+
The documentation for this class was generated from the following file: +
+
Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext
Task UseContext(Func< IDatabaseContext, Task > operation)
Run an operation in the scope of an IDatabaseContext
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory
readonly IGitHubClientFactory gitHubClientFactory
The IGitHubClientFactory for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:28
+
Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner
string GitHubOwner
The Octokit.Repository.Owner if this IsGitHubRepository
Definition: IRepository.cs:21
+
Tgstation.Server.Host.Models.CompileJob.GitHubDeploymentId
int? GitHubDeploymentId
The GitHub deployment ID associated with the CompileJob if any.
Definition: CompileJob.cs:55
+
Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository
bool IsGitHubRepository
If the IRepository was cloned from GitHub.com
Definition: IRepository.cs:16
+
Tgstation.Server.Host.Models.CompileJob.RevisionInformation
RevisionInformation RevisionInformation
See Api.Models.CompileJob.RevisionInformation
Definition: CompileJob.cs:24
+
Tgstation.Server.Host.Models.CompileJob.GitHubRepoId
long? GitHubRepoId
The source GitHub repository the deployment came from if any.
Definition: CompileJob.cs:50
+
Tgstation.Server.Api.Models.Internal.RepositorySettings.AccessToken
string? AccessToken
The token/password to access the git repository with
Definition: RepositorySettings.cs:35
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger
readonly ILogger< GitHubDeploymentManager > logger
The ILogger for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:33
+
Tgstation.Server.Api.Models.Internal.RevisionInformation.CommitSha
string? CommitSha
The revision sha
Definition: RevisionInformation.cs:15
+
Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName
string GitHubRepoName
The Octokit.Repository.Name if this IsGitHubRepository
Definition: IRepository.cs:26
+
Tgstation.Server.Host.Models.RepositorySettings
Definition: RepositorySettings.cs:8
+
Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient
IGitHubClient CreateClient()
Create a client with anonymous authentication. Low rate limit
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory
readonly IDatabaseContextFactory databaseContextFactory
The IDatabaseContextFactory for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:23
+
Tgstation.Server.Api.Models.Internal.RepositorySettings.CreateGitHubDeployments
bool? CreateGitHubDeployments
If GitHub deployments should be created. Requires AccessUser, AccessToken, and PushTestMergeCommits t...
Definition: RepositorySettings.cs:47
+
Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata
readonly Api.Models.Instance metadata
The Models.Instance for the GitHubDeploymentManager.
Definition: GitHubDeploymentManager.cs:38
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.map new file mode 100644 index 0000000000..2c977c3c37 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.map @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.md5 new file mode 100644 index 0000000000..0a38495896 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.md5 @@ -0,0 +1 @@ +e6dc05ce4cc77c02231f8a015163e878 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.png new file mode 100644 index 0000000000..7ade176743 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__coll__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.map new file mode 100644 index 0000000000..15055d7376 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.md5 new file mode 100644 index 0000000000..d3e1355ef0 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.md5 @@ -0,0 +1 @@ +f639169613e83614e267f018fa9b7610 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.png new file mode 100644 index 0000000000..d102149447 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager__inherit__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.map b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.map new file mode 100644 index 0000000000..c7d8262db2 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.md5 new file mode 100644 index 0000000000..25da224082 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.md5 @@ -0,0 +1 @@ +8a2b46dd4673141f8cfc25c0f6488c83 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.png b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.png new file mode 100644 index 0000000000..ab2965217d Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_a63f609709d84ef07f7987a13c846c310_cgraph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.map b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.map new file mode 100644 index 0000000000..e2c3673e30 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.md5 new file mode 100644 index 0000000000..d91338ca08 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.md5 @@ -0,0 +1 @@ +8e8b7b38221b4d5b00cb36c3c9be484f \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.png b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.png new file mode 100644 index 0000000000..4bf5ec291e Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager_ac3aeb890dfb67252ed73f8026913fd10_cgraph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider-members.html b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider-members.html index 82ae9b8fca..e6c206c2df 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Configuration.SecurityConfiguration Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Configuration.SecurityConfiguration, including all inherited members.

+ + + + + + + + + +
CustomTokenSigningKeyBase64Tgstation.Server.Host.Configuration.SecurityConfiguration
DefaultTokenClockSkewMinutesTgstation.Server.Host.Configuration.SecurityConfigurationprivatestatic
DefaultTokenExpiryMinutesTgstation.Server.Host.Configuration.SecurityConfigurationprivatestatic
DefaultTokenSigningKeyByteAmountTgstation.Server.Host.Configuration.SecurityConfigurationprivatestatic
SectionTgstation.Server.Host.Configuration.SecurityConfigurationstatic
TokenClockSkewMinutesTgstation.Server.Host.Configuration.SecurityConfiguration
TokenExpiryMinutesTgstation.Server.Host.Configuration.SecurityConfiguration
TokenSigningKeyByteCountTgstation.Server.Host.Configuration.SecurityConfiguration
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html new file mode 100644 index 0000000000..8358e2c93a --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html @@ -0,0 +1,365 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Configuration.SecurityConfiguration Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Static Public Attributes | +Properties | +Static Private Attributes | +List of all members
+
+
Tgstation.Server.Host.Configuration.SecurityConfiguration Class Reference
+
+
+ +

Configuration options pertaining to user security + More...

+
+Collaboration diagram for Tgstation.Server.Host.Configuration.SecurityConfiguration:
+
+
Collaboration graph
+ + + + + +
[legend]
+ + + + + +

+Static Public Attributes

const string Section = "Security"
 The key for the Microsoft.Extensions.Configuration.IConfigurationSection the SecurityConfiguration resides in More...
 
+ + + + + + + + + + + + + +

+Properties

uint TokenExpiryMinutes = DefaultTokenExpiryMinutes [get, set]
 Amount of minutes until generated Api.Models.Tokens expire. More...
 
uint TokenClockSkewMinutes = DefaultTokenClockSkewMinutes [get, set]
 Amount of minutes to skew the clock for Api.Models.Token validation. More...
 
uint TokenSigningKeyByteCount = DefaultTokenSigningKeyByteAmount [get, set]
 Amount of bytes to use in the Microsoft.IdentityModel.Tokens.TokenValidationParameters.IssuerSigningKey. More...
 
string CustomTokenSigningKeyBase64 [get, set]
 A custom token signing key. Overrides TokenSigningKeyByteCount. More...
 
+ + + + + + + + + + +

+Static Private Attributes

const uint DefaultTokenExpiryMinutes = 15
 Default value of TokenExpiryMinutes. More...
 
const uint DefaultTokenClockSkewMinutes = 1
 Default value of TokenClockSkewMinutes. More...
 
const uint DefaultTokenSigningKeyByteAmount = 256
 Default value of TokenSigningKeyByteCount. More...
 
+

Detailed Description

+

Configuration options pertaining to user security

+ +

Definition at line 6 of file SecurityConfiguration.cs.

+

Member Data Documentation

+ +

◆ DefaultTokenClockSkewMinutes

+ +
+
+ + + + + +
+ + + + +
const uint Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenClockSkewMinutes = 1
+
+staticprivate
+
+ +

Default value of TokenClockSkewMinutes.

+ +

Definition at line 21 of file SecurityConfiguration.cs.

+ +
+
+ +

◆ DefaultTokenExpiryMinutes

+ +
+
+ + + + + +
+ + + + +
const uint Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenExpiryMinutes = 15
+
+staticprivate
+
+ +

Default value of TokenExpiryMinutes.

+ +

Definition at line 16 of file SecurityConfiguration.cs.

+ +
+
+ +

◆ DefaultTokenSigningKeyByteAmount

+ +
+
+ + + + + +
+ + + + +
const uint Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenSigningKeyByteAmount = 256
+
+staticprivate
+
+ +

Default value of TokenSigningKeyByteCount.

+ +

Definition at line 26 of file SecurityConfiguration.cs.

+ +
+
+ +

◆ Section

+ +
+
+ + + + + +
+ + + + +
const string Tgstation.Server.Host.Configuration.SecurityConfiguration.Section = "Security"
+
+static
+
+ +

The key for the Microsoft.Extensions.Configuration.IConfigurationSection the SecurityConfiguration resides in

+ +

Definition at line 11 of file SecurityConfiguration.cs.

+ +
+
+

Property Documentation

+ +

◆ CustomTokenSigningKeyBase64

+ +
+
+ + + + + +
+ + + + +
string Tgstation.Server.Host.Configuration.SecurityConfiguration.CustomTokenSigningKeyBase64
+
+getset
+
+ +

A custom token signing key. Overrides TokenSigningKeyByteCount.

+ +

Definition at line 46 of file SecurityConfiguration.cs.

+
46 { get; set; }
+
+

Referenced by Tgstation.Server.Host.Security.TokenFactory.TokenFactory().

+ +
+
+ +

◆ TokenClockSkewMinutes

+ +
+
+ + + + + +
+ + + + +
uint Tgstation.Server.Host.Configuration.SecurityConfiguration.TokenClockSkewMinutes = DefaultTokenClockSkewMinutes
+
+getset
+
+ +

Amount of minutes to skew the clock for Api.Models.Token validation.

+ +

Definition at line 36 of file SecurityConfiguration.cs.

+
36 { get; set; } = DefaultTokenClockSkewMinutes;
+
+

Referenced by Tgstation.Server.Host.Security.TokenFactory.TokenFactory().

+ +
+
+ +

◆ TokenExpiryMinutes

+ +
+
+ + + + + +
+ + + + +
uint Tgstation.Server.Host.Configuration.SecurityConfiguration.TokenExpiryMinutes = DefaultTokenExpiryMinutes
+
+getset
+
+ +

Amount of minutes until generated Api.Models.Tokens expire.

+ +

Definition at line 31 of file SecurityConfiguration.cs.

+
31 { get; set; } = DefaultTokenExpiryMinutes;
+
+

Referenced by Tgstation.Server.Host.Security.TokenFactory.CreateToken().

+ +
+
+ +

◆ TokenSigningKeyByteCount

+ +
+
+ + + + + +
+ + + + +
uint Tgstation.Server.Host.Configuration.SecurityConfiguration.TokenSigningKeyByteCount = DefaultTokenSigningKeyByteAmount
+
+getset
+
+ +

Amount of bytes to use in the Microsoft.IdentityModel.Tokens.TokenValidationParameters.IssuerSigningKey.

+ +

Definition at line 41 of file SecurityConfiguration.cs.

+
41 { get; set; } = DefaultTokenSigningKeyByteAmount;
+
+

Referenced by Tgstation.Server.Host.Security.TokenFactory.TokenFactory().

+ +
+
+
The documentation for this class was generated from the following file: +
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenSigningKeyByteAmount
const uint DefaultTokenSigningKeyByteAmount
Default value of TokenSigningKeyByteCount.
Definition: SecurityConfiguration.cs:26
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenExpiryMinutes
const uint DefaultTokenExpiryMinutes
Default value of TokenExpiryMinutes.
Definition: SecurityConfiguration.cs:16
+
Tgstation.Server.Host.Configuration.SecurityConfiguration.DefaultTokenClockSkewMinutes
const uint DefaultTokenClockSkewMinutes
Default value of TokenClockSkewMinutes.
Definition: SecurityConfiguration.cs:21
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.map new file mode 100644 index 0000000000..399b99b9eb --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.md5 new file mode 100644 index 0000000000..e8e9e6d869 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.md5 @@ -0,0 +1 @@ +49af2c97f1d7f8bb7bcff2ccf8a97a3d \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.png new file mode 100644 index 0000000000..5df058661e Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration__coll__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration-members.html b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration-members.html index b798d8e12d..a6af611657 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns, including all inherited members.

+ + + + +
BuildTargetModel(ModelBuilder modelBuilder)Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumnsprotected
Down(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumnsprotected
Up(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumnsprotected
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html new file mode 100644 index 0000000000..edc79c9b60 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html @@ -0,0 +1,1014 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Protected Member Functions | +List of all members
+
+
Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns Class Reference
+
+
+ +

Adds columns for GitHub deployments for MSSQL. + More...

+
+Inheritance diagram for Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns:
+
+
Inheritance graph
+ + + + +
[legend]
+
+Collaboration diagram for Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns:
+
+
Collaboration graph
+ + + + +
[legend]
+ + + + + + + + +

+Protected Member Functions

override void Up (MigrationBuilder migrationBuilder)
 
override void Down (MigrationBuilder migrationBuilder)
 
override void BuildTargetModel (ModelBuilder modelBuilder)
 
+

Detailed Description

+

Adds columns for GitHub deployments for MSSQL.

+ +

Definition at line 9 of file 20200807213255_MSAddDeploymentColumns.cs.

+

Member Function Documentation

+ +

◆ BuildTargetModel()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.BuildTargetModel (ModelBuilder modelBuilder)
+
+protected
+
+ +

+ +

Definition at line 15 of file 20200807213255_MSAddDeploymentColumns.Designer.cs.

+
16  {
+
17 #pragma warning disable 612, 618
+
18  modelBuilder
+
19  .HasAnnotation("ProductVersion", "3.1.6")
+
20  .HasAnnotation("Relational:MaxIdentifierLength", 128)
+
21  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
22 
+
23  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
24  {
+
25  b.Property<long>("Id")
+
26  .ValueGeneratedOnAdd()
+
27  .HasColumnType("bigint")
+
28  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
29 
+
30  b.Property<int>("ChannelLimit")
+
31  .HasColumnType("int");
+
32 
+
33  b.Property<string>("ConnectionString")
+
34  .IsRequired()
+
35  .HasColumnType("nvarchar(max)")
+
36  .HasMaxLength(10000);
+
37 
+
38  b.Property<bool?>("Enabled")
+
39  .HasColumnType("bit");
+
40 
+
41  b.Property<long>("InstanceId")
+
42  .HasColumnType("bigint");
+
43 
+
44  b.Property<string>("Name")
+
45  .IsRequired()
+
46  .HasColumnType("nvarchar(100)")
+
47  .HasMaxLength(100);
+
48 
+
49  b.Property<int>("Provider")
+
50  .HasColumnType("int");
+
51 
+
52  b.Property<long>("ReconnectionInterval")
+
53  .HasColumnType("bigint");
+
54 
+
55  b.HasKey("Id");
+
56 
+
57  b.HasIndex("InstanceId", "Name")
+
58  .IsUnique();
+
59 
+
60  b.ToTable("ChatBots");
+
61  });
+
62 
+
63  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
64  {
+
65  b.Property<long>("Id")
+
66  .ValueGeneratedOnAdd()
+
67  .HasColumnType("bigint")
+
68  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
69 
+
70  b.Property<long>("ChatSettingsId")
+
71  .HasColumnType("bigint");
+
72 
+
73  b.Property<decimal?>("DiscordChannelId")
+
74  .HasColumnType("decimal(20,0)");
+
75 
+
76  b.Property<string>("IrcChannel")
+
77  .HasColumnType("nvarchar(100)")
+
78  .HasMaxLength(100);
+
79 
+
80  b.Property<bool?>("IsAdminChannel")
+
81  .IsRequired()
+
82  .HasColumnType("bit");
+
83 
+
84  b.Property<bool?>("IsUpdatesChannel")
+
85  .IsRequired()
+
86  .HasColumnType("bit");
+
87 
+
88  b.Property<bool?>("IsWatchdogChannel")
+
89  .IsRequired()
+
90  .HasColumnType("bit");
+
91 
+
92  b.Property<string>("Tag")
+
93  .HasColumnType("nvarchar(max)")
+
94  .HasMaxLength(10000);
+
95 
+
96  b.HasKey("Id");
+
97 
+
98  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
99  .IsUnique()
+
100  .HasFilter("[DiscordChannelId] IS NOT NULL");
+
101 
+
102  b.HasIndex("ChatSettingsId", "IrcChannel")
+
103  .IsUnique()
+
104  .HasFilter("[IrcChannel] IS NOT NULL");
+
105 
+
106  b.ToTable("ChatChannels");
+
107  });
+
108 
+
109  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
110  {
+
111  b.Property<long>("Id")
+
112  .ValueGeneratedOnAdd()
+
113  .HasColumnType("bigint")
+
114  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
115 
+
116  b.Property<string>("ByondVersion")
+
117  .IsRequired()
+
118  .HasColumnType("nvarchar(max)");
+
119 
+
120  b.Property<int?>("DMApiMajorVersion")
+
121  .HasColumnType("int");
+
122 
+
123  b.Property<int?>("DMApiMinorVersion")
+
124  .HasColumnType("int");
+
125 
+
126  b.Property<int?>("DMApiPatchVersion")
+
127  .HasColumnType("int");
+
128 
+
129  b.Property<Guid?>("DirectoryName")
+
130  .IsRequired()
+
131  .HasColumnType("uniqueidentifier");
+
132 
+
133  b.Property<string>("DmeName")
+
134  .IsRequired()
+
135  .HasColumnType("nvarchar(max)");
+
136 
+
137  b.Property<int?>("GitHubDeploymentId")
+
138  .HasColumnType("int");
+
139 
+
140  b.Property<long?>("GitHubRepoId")
+
141  .HasColumnType("bigint");
+
142 
+
143  b.Property<long>("JobId")
+
144  .HasColumnType("bigint");
+
145 
+
146  b.Property<int?>("MinimumSecurityLevel")
+
147  .HasColumnType("int");
+
148 
+
149  b.Property<string>("Output")
+
150  .IsRequired()
+
151  .HasColumnType("nvarchar(max)");
+
152 
+
153  b.Property<long>("RevisionInformationId")
+
154  .HasColumnType("bigint");
+
155 
+
156  b.HasKey("Id");
+
157 
+
158  b.HasIndex("DirectoryName");
+
159 
+
160  b.HasIndex("JobId")
+
161  .IsUnique();
+
162 
+
163  b.HasIndex("RevisionInformationId");
+
164 
+
165  b.ToTable("CompileJobs");
+
166  });
+
167 
+
168  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
169  {
+
170  b.Property<long>("Id")
+
171  .ValueGeneratedOnAdd()
+
172  .HasColumnType("bigint")
+
173  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
174 
+
175  b.Property<bool?>("AllowWebClient")
+
176  .IsRequired()
+
177  .HasColumnType("bit");
+
178 
+
179  b.Property<bool?>("AutoStart")
+
180  .IsRequired()
+
181  .HasColumnType("bit");
+
182 
+
183  b.Property<long>("HeartbeatSeconds")
+
184  .HasColumnType("bigint");
+
185 
+
186  b.Property<long>("InstanceId")
+
187  .HasColumnType("bigint");
+
188 
+
189  b.Property<int>("Port")
+
190  .HasColumnType("int");
+
191 
+
192  b.Property<int>("SecurityLevel")
+
193  .HasColumnType("int");
+
194 
+
195  b.Property<long>("StartupTimeout")
+
196  .HasColumnType("bigint");
+
197 
+
198  b.Property<long>("TopicRequestTimeout")
+
199  .HasColumnType("bigint");
+
200 
+
201  b.HasKey("Id");
+
202 
+
203  b.HasIndex("InstanceId")
+
204  .IsUnique();
+
205 
+
206  b.ToTable("DreamDaemonSettings");
+
207  });
+
208 
+
209  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
210  {
+
211  b.Property<long>("Id")
+
212  .ValueGeneratedOnAdd()
+
213  .HasColumnType("bigint")
+
214  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
215 
+
216  b.Property<int>("ApiValidationPort")
+
217  .HasColumnType("int");
+
218 
+
219  b.Property<int>("ApiValidationSecurityLevel")
+
220  .HasColumnType("int");
+
221 
+
222  b.Property<long>("InstanceId")
+
223  .HasColumnType("bigint");
+
224 
+
225  b.Property<string>("ProjectName")
+
226  .HasColumnType("nvarchar(max)")
+
227  .HasMaxLength(10000);
+
228 
+
229  b.Property<bool?>("RequireDMApiValidation")
+
230  .IsRequired()
+
231  .HasColumnType("bit");
+
232 
+
233  b.HasKey("Id");
+
234 
+
235  b.HasIndex("InstanceId")
+
236  .IsUnique();
+
237 
+
238  b.ToTable("DreamMakerSettings");
+
239  });
+
240 
+
241  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
242  {
+
243  b.Property<long>("Id")
+
244  .ValueGeneratedOnAdd()
+
245  .HasColumnType("bigint")
+
246  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
247 
+
248  b.Property<long>("AutoUpdateInterval")
+
249  .HasColumnType("bigint");
+
250 
+
251  b.Property<int>("ChatBotLimit")
+
252  .HasColumnType("int");
+
253 
+
254  b.Property<int>("ConfigurationType")
+
255  .HasColumnType("int");
+
256 
+
257  b.Property<string>("Name")
+
258  .IsRequired()
+
259  .HasColumnType("nvarchar(max)")
+
260  .HasMaxLength(10000);
+
261 
+
262  b.Property<bool?>("Online")
+
263  .IsRequired()
+
264  .HasColumnType("bit");
+
265 
+
266  b.Property<string>("Path")
+
267  .IsRequired()
+
268  .HasColumnType("nvarchar(450)");
+
269 
+
270  b.HasKey("Id");
+
271 
+
272  b.HasIndex("Path")
+
273  .IsUnique();
+
274 
+
275  b.ToTable("Instances");
+
276  });
+
277 
+
278  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
279  {
+
280  b.Property<long>("Id")
+
281  .ValueGeneratedOnAdd()
+
282  .HasColumnType("bigint")
+
283  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
284 
+
285  b.Property<decimal>("ByondRights")
+
286  .HasColumnType("decimal(20,0)");
+
287 
+
288  b.Property<decimal>("ChatBotRights")
+
289  .HasColumnType("decimal(20,0)");
+
290 
+
291  b.Property<decimal>("ConfigurationRights")
+
292  .HasColumnType("decimal(20,0)");
+
293 
+
294  b.Property<decimal>("DreamDaemonRights")
+
295  .HasColumnType("decimal(20,0)");
+
296 
+
297  b.Property<decimal>("DreamMakerRights")
+
298  .HasColumnType("decimal(20,0)");
+
299 
+
300  b.Property<long>("InstanceId")
+
301  .HasColumnType("bigint");
+
302 
+
303  b.Property<decimal>("InstanceUserRights")
+
304  .HasColumnType("decimal(20,0)");
+
305 
+
306  b.Property<decimal>("RepositoryRights")
+
307  .HasColumnType("decimal(20,0)");
+
308 
+
309  b.Property<long>("UserId")
+
310  .HasColumnType("bigint");
+
311 
+
312  b.HasKey("Id");
+
313 
+
314  b.HasIndex("InstanceId");
+
315 
+
316  b.HasIndex("UserId", "InstanceId")
+
317  .IsUnique();
+
318 
+
319  b.ToTable("InstanceUsers");
+
320  });
+
321 
+
322  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
323  {
+
324  b.Property<long>("Id")
+
325  .ValueGeneratedOnAdd()
+
326  .HasColumnType("bigint")
+
327  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
328 
+
329  b.Property<decimal?>("CancelRight")
+
330  .HasColumnType("decimal(20,0)");
+
331 
+
332  b.Property<decimal?>("CancelRightsType")
+
333  .HasColumnType("decimal(20,0)");
+
334 
+
335  b.Property<bool?>("Cancelled")
+
336  .IsRequired()
+
337  .HasColumnType("bit");
+
338 
+
339  b.Property<long?>("CancelledById")
+
340  .HasColumnType("bigint");
+
341 
+
342  b.Property<string>("Description")
+
343  .IsRequired()
+
344  .HasColumnType("nvarchar(max)");
+
345 
+
346  b.Property<long?>("ErrorCode")
+
347  .HasColumnType("bigint");
+
348 
+
349  b.Property<string>("ExceptionDetails")
+
350  .HasColumnType("nvarchar(max)");
+
351 
+
352  b.Property<long>("InstanceId")
+
353  .HasColumnType("bigint");
+
354 
+
355  b.Property<DateTimeOffset?>("StartedAt")
+
356  .IsRequired()
+
357  .HasColumnType("datetimeoffset");
+
358 
+
359  b.Property<long>("StartedById")
+
360  .HasColumnType("bigint");
+
361 
+
362  b.Property<DateTimeOffset?>("StoppedAt")
+
363  .HasColumnType("datetimeoffset");
+
364 
+
365  b.HasKey("Id");
+
366 
+
367  b.HasIndex("CancelledById");
+
368 
+
369  b.HasIndex("InstanceId");
+
370 
+
371  b.HasIndex("StartedById");
+
372 
+
373  b.ToTable("Jobs");
+
374  });
+
375 
+
376  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
377  {
+
378  b.Property<long>("Id")
+
379  .ValueGeneratedOnAdd()
+
380  .HasColumnType("bigint")
+
381  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
382 
+
383  b.Property<string>("AccessIdentifier")
+
384  .IsRequired()
+
385  .HasColumnType("nvarchar(max)");
+
386 
+
387  b.Property<long>("CompileJobId")
+
388  .HasColumnType("bigint");
+
389 
+
390  b.Property<int>("LaunchSecurityLevel")
+
391  .HasColumnType("int");
+
392 
+
393  b.Property<int>("Port")
+
394  .HasColumnType("int");
+
395 
+
396  b.Property<int>("ProcessId")
+
397  .HasColumnType("int");
+
398 
+
399  b.Property<int>("RebootState")
+
400  .HasColumnType("int");
+
401 
+
402  b.HasKey("Id");
+
403 
+
404  b.HasIndex("CompileJobId");
+
405 
+
406  b.ToTable("ReattachInformations");
+
407  });
+
408 
+
409  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
410  {
+
411  b.Property<long>("Id")
+
412  .ValueGeneratedOnAdd()
+
413  .HasColumnType("bigint")
+
414  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
415 
+
416  b.Property<string>("AccessToken")
+
417  .HasColumnType("nvarchar(max)")
+
418  .HasMaxLength(10000);
+
419 
+
420  b.Property<string>("AccessUser")
+
421  .HasColumnType("nvarchar(max)")
+
422  .HasMaxLength(10000);
+
423 
+
424  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
425  .IsRequired()
+
426  .HasColumnType("bit");
+
427 
+
428  b.Property<bool?>("AutoUpdatesSynchronize")
+
429  .IsRequired()
+
430  .HasColumnType("bit");
+
431 
+
432  b.Property<string>("CommitterEmail")
+
433  .IsRequired()
+
434  .HasColumnType("nvarchar(max)")
+
435  .HasMaxLength(10000);
+
436 
+
437  b.Property<string>("CommitterName")
+
438  .IsRequired()
+
439  .HasColumnType("nvarchar(max)")
+
440  .HasMaxLength(10000);
+
441 
+
442  b.Property<bool?>("CreateGitHubDeployments")
+
443  .IsRequired()
+
444  .HasColumnType("bit");
+
445 
+
446  b.Property<long>("InstanceId")
+
447  .HasColumnType("bigint");
+
448 
+
449  b.Property<bool?>("PostTestMergeComment")
+
450  .IsRequired()
+
451  .HasColumnType("bit");
+
452 
+
453  b.Property<bool?>("PushTestMergeCommits")
+
454  .IsRequired()
+
455  .HasColumnType("bit");
+
456 
+
457  b.Property<bool?>("ShowTestMergeCommitters")
+
458  .IsRequired()
+
459  .HasColumnType("bit");
+
460 
+
461  b.HasKey("Id");
+
462 
+
463  b.HasIndex("InstanceId")
+
464  .IsUnique();
+
465 
+
466  b.ToTable("RepositorySettings");
+
467  });
+
468 
+
469  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
470  {
+
471  b.Property<long>("Id")
+
472  .ValueGeneratedOnAdd()
+
473  .HasColumnType("bigint")
+
474  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
475 
+
476  b.Property<long>("RevisionInformationId")
+
477  .HasColumnType("bigint");
+
478 
+
479  b.Property<long>("TestMergeId")
+
480  .HasColumnType("bigint");
+
481 
+
482  b.HasKey("Id");
+
483 
+
484  b.HasIndex("RevisionInformationId");
+
485 
+
486  b.HasIndex("TestMergeId");
+
487 
+
488  b.ToTable("RevInfoTestMerges");
+
489  });
+
490 
+
491  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
492  {
+
493  b.Property<long>("Id")
+
494  .ValueGeneratedOnAdd()
+
495  .HasColumnType("bigint")
+
496  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
497 
+
498  b.Property<string>("CommitSha")
+
499  .IsRequired()
+
500  .HasColumnType("nvarchar(40)")
+
501  .HasMaxLength(40);
+
502 
+
503  b.Property<long>("InstanceId")
+
504  .HasColumnType("bigint");
+
505 
+
506  b.Property<string>("OriginCommitSha")
+
507  .IsRequired()
+
508  .HasColumnType("nvarchar(40)")
+
509  .HasMaxLength(40);
+
510 
+
511  b.HasKey("Id");
+
512 
+
513  b.HasIndex("InstanceId", "CommitSha")
+
514  .IsUnique();
+
515 
+
516  b.ToTable("RevisionInformations");
+
517  });
+
518 
+
519  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
520  {
+
521  b.Property<long>("Id")
+
522  .ValueGeneratedOnAdd()
+
523  .HasColumnType("bigint")
+
524  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
525 
+
526  b.Property<string>("Author")
+
527  .IsRequired()
+
528  .HasColumnType("nvarchar(max)");
+
529 
+
530  b.Property<string>("BodyAtMerge")
+
531  .IsRequired()
+
532  .HasColumnType("nvarchar(max)");
+
533 
+
534  b.Property<string>("Comment")
+
535  .HasColumnType("nvarchar(max)")
+
536  .HasMaxLength(10000);
+
537 
+
538  b.Property<DateTimeOffset>("MergedAt")
+
539  .HasColumnType("datetimeoffset");
+
540 
+
541  b.Property<long>("MergedById")
+
542  .HasColumnType("bigint");
+
543 
+
544  b.Property<int>("Number")
+
545  .HasColumnType("int");
+
546 
+
547  b.Property<long?>("PrimaryRevisionInformationId")
+
548  .IsRequired()
+
549  .HasColumnType("bigint");
+
550 
+
551  b.Property<string>("PullRequestRevision")
+
552  .IsRequired()
+
553  .HasColumnType("nvarchar(40)")
+
554  .HasMaxLength(40);
+
555 
+
556  b.Property<string>("TitleAtMerge")
+
557  .IsRequired()
+
558  .HasColumnType("nvarchar(max)");
+
559 
+
560  b.Property<string>("Url")
+
561  .IsRequired()
+
562  .HasColumnType("nvarchar(max)");
+
563 
+
564  b.HasKey("Id");
+
565 
+
566  b.HasIndex("MergedById");
+
567 
+
568  b.HasIndex("PrimaryRevisionInformationId")
+
569  .IsUnique();
+
570 
+
571  b.ToTable("TestMerges");
+
572  });
+
573 
+
574  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
575  {
+
576  b.Property<long?>("Id")
+
577  .ValueGeneratedOnAdd()
+
578  .HasColumnType("bigint")
+
579  .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
+
580 
+
581  b.Property<decimal>("AdministrationRights")
+
582  .HasColumnType("decimal(20,0)");
+
583 
+
584  b.Property<string>("CanonicalName")
+
585  .IsRequired()
+
586  .HasColumnType("nvarchar(450)");
+
587 
+
588  b.Property<DateTimeOffset?>("CreatedAt")
+
589  .IsRequired()
+
590  .HasColumnType("datetimeoffset");
+
591 
+
592  b.Property<long?>("CreatedById")
+
593  .HasColumnType("bigint");
+
594 
+
595  b.Property<bool?>("Enabled")
+
596  .IsRequired()
+
597  .HasColumnType("bit");
+
598 
+
599  b.Property<decimal>("InstanceManagerRights")
+
600  .HasColumnType("decimal(20,0)");
+
601 
+
602  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
603  .HasColumnType("datetimeoffset");
+
604 
+
605  b.Property<string>("Name")
+
606  .IsRequired()
+
607  .HasColumnType("nvarchar(max)")
+
608  .HasMaxLength(10000);
+
609 
+
610  b.Property<string>("PasswordHash")
+
611  .HasColumnType("nvarchar(max)");
+
612 
+
613  b.Property<string>("SystemIdentifier")
+
614  .HasColumnType("nvarchar(450)");
+
615 
+
616  b.HasKey("Id");
+
617 
+
618  b.HasIndex("CanonicalName")
+
619  .IsUnique();
+
620 
+
621  b.HasIndex("CreatedById");
+
622 
+
623  b.HasIndex("SystemIdentifier")
+
624  .IsUnique()
+
625  .HasFilter("[SystemIdentifier] IS NOT NULL");
+
626 
+
627  b.ToTable("Users");
+
628  });
+
629 
+
630  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
631  {
+
632  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
633  .WithMany("ChatSettings")
+
634  .HasForeignKey("InstanceId")
+
635  .OnDelete(DeleteBehavior.Cascade)
+
636  .IsRequired();
+
637  });
+
638 
+
639  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
640  {
+
641  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
642  .WithMany("Channels")
+
643  .HasForeignKey("ChatSettingsId")
+
644  .OnDelete(DeleteBehavior.Cascade)
+
645  .IsRequired();
+
646  });
+
647 
+
648  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
649  {
+
650  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
651  .WithOne()
+
652  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
653  .OnDelete(DeleteBehavior.Cascade)
+
654  .IsRequired();
+
655 
+
656  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
657  .WithMany("CompileJobs")
+
658  .HasForeignKey("RevisionInformationId")
+
659  .OnDelete(DeleteBehavior.ClientNoAction)
+
660  .IsRequired();
+
661  });
+
662 
+
663  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
664  {
+
665  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
666  .WithOne("DreamDaemonSettings")
+
667  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
668  .OnDelete(DeleteBehavior.Cascade)
+
669  .IsRequired();
+
670  });
+
671 
+
672  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
673  {
+
674  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
675  .WithOne("DreamMakerSettings")
+
676  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
677  .OnDelete(DeleteBehavior.Cascade)
+
678  .IsRequired();
+
679  });
+
680 
+
681  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
682  {
+
683  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
684  .WithMany("InstanceUsers")
+
685  .HasForeignKey("InstanceId")
+
686  .OnDelete(DeleteBehavior.Cascade)
+
687  .IsRequired();
+
688 
+
689  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
690  .WithMany("InstanceUsers")
+
691  .HasForeignKey("UserId")
+
692  .OnDelete(DeleteBehavior.Cascade)
+
693  .IsRequired();
+
694  });
+
695 
+
696  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
697  {
+
698  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
699  .WithMany()
+
700  .HasForeignKey("CancelledById");
+
701 
+
702  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
703  .WithMany("Jobs")
+
704  .HasForeignKey("InstanceId")
+
705  .OnDelete(DeleteBehavior.Cascade)
+
706  .IsRequired();
+
707 
+
708  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
709  .WithMany()
+
710  .HasForeignKey("StartedById")
+
711  .OnDelete(DeleteBehavior.Cascade)
+
712  .IsRequired();
+
713  });
+
714 
+
715  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
716  {
+
717  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
718  .WithMany()
+
719  .HasForeignKey("CompileJobId")
+
720  .OnDelete(DeleteBehavior.Cascade)
+
721  .IsRequired();
+
722  });
+
723 
+
724  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
725  {
+
726  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
727  .WithOne("RepositorySettings")
+
728  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
729  .OnDelete(DeleteBehavior.Cascade)
+
730  .IsRequired();
+
731  });
+
732 
+
733  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
734  {
+
735  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
736  .WithMany("ActiveTestMerges")
+
737  .HasForeignKey("RevisionInformationId")
+
738  .OnDelete(DeleteBehavior.Cascade)
+
739  .IsRequired();
+
740 
+
741  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
742  .WithMany("RevisonInformations")
+
743  .HasForeignKey("TestMergeId")
+
744  .OnDelete(DeleteBehavior.ClientNoAction)
+
745  .IsRequired();
+
746  });
+
747 
+
748  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
749  {
+
750  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
751  .WithMany("RevisionInformations")
+
752  .HasForeignKey("InstanceId")
+
753  .OnDelete(DeleteBehavior.Cascade)
+
754  .IsRequired();
+
755  });
+
756 
+
757  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
758  {
+
759  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
760  .WithMany("TestMerges")
+
761  .HasForeignKey("MergedById")
+
762  .OnDelete(DeleteBehavior.Restrict)
+
763  .IsRequired();
+
764 
+
765  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
766  .WithOne("PrimaryTestMerge")
+
767  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
768  .OnDelete(DeleteBehavior.Cascade)
+
769  .IsRequired();
+
770  });
+
771 
+
772  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
773  {
+
774  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
775  .WithMany("CreatedUsers")
+
776  .HasForeignKey("CreatedById");
+
777  });
+
778 #pragma warning restore 612, 618
+
779  }
+
+
+
+ +

◆ Down()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Down (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 35 of file 20200807213255_MSAddDeploymentColumns.cs.

+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.DropColumn(
+
41  name: "CreateGitHubDeployments",
+
42  table: "RepositorySettings");
+
43 
+
44  migrationBuilder.DropColumn(
+
45  name: "GitHubDeploymentId",
+
46  table: "CompileJobs");
+
47 
+
48  migrationBuilder.DropColumn(
+
49  name: "GitHubRepoId",
+
50  table: "CompileJobs");
+
51  }
+
+
+
+ +

◆ Up()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Up (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 12 of file 20200807213255_MSAddDeploymentColumns.cs.

+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
+
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.map new file mode 100644 index 0000000000..8b4eda592d --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.md5 new file mode 100644 index 0000000000..4c56a717a0 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.md5 @@ -0,0 +1 @@ +c063dbf1f86f1ab7a55d0ab1ecaf7841 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.png new file mode 100644 index 0000000000..a37a1aed45 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__coll__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.map new file mode 100644 index 0000000000..8b4eda592d --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.md5 new file mode 100644 index 0000000000..4c56a717a0 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.md5 @@ -0,0 +1 @@ +c063dbf1f86f1ab7a55d0ab1ecaf7841 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.png new file mode 100644 index 0000000000..a37a1aed45 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns__inherit__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat-members.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat-members.html index 123df9ff9a..f05ab138b5 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns, including all inherited members.

+ + + + +
BuildTargetModel(ModelBuilder modelBuilder)Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumnsprotected
Down(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumnsprotected
Up(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumnsprotected
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html new file mode 100644 index 0000000000..188c828357 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html @@ -0,0 +1,1005 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Protected Member Functions | +List of all members
+
+
Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns Class Reference
+
+
+ +

Adds columns for GitHub deployments for MYSQL. + More...

+
+Inheritance diagram for Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns:
+
+
Inheritance graph
+ + + + +
[legend]
+
+Collaboration diagram for Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns:
+
+
Collaboration graph
+ + + + +
[legend]
+ + + + + + + + +

+Protected Member Functions

override void Up (MigrationBuilder migrationBuilder)
 
override void Down (MigrationBuilder migrationBuilder)
 
override void BuildTargetModel (ModelBuilder modelBuilder)
 
+

Detailed Description

+

Adds columns for GitHub deployments for MYSQL.

+ +

Definition at line 9 of file 20200807213742_MYAddDeploymentColumns.cs.

+

Member Function Documentation

+ +

◆ BuildTargetModel()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.BuildTargetModel (ModelBuilder modelBuilder)
+
+protected
+
+ +

+ +

Definition at line 14 of file 20200807213742_MYAddDeploymentColumns.Designer.cs.

+
15  {
+
16 #pragma warning disable 612, 618
+
17  modelBuilder
+
18  .HasAnnotation("ProductVersion", "3.1.6")
+
19  .HasAnnotation("Relational:MaxIdentifierLength", 64);
+
20 
+
21  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
22  {
+
23  b.Property<long>("Id")
+
24  .ValueGeneratedOnAdd()
+
25  .HasColumnType("bigint");
+
26 
+
27  b.Property<ushort?>("ChannelLimit")
+
28  .IsRequired()
+
29  .HasColumnType("smallint unsigned");
+
30 
+
31  b.Property<string>("ConnectionString")
+
32  .IsRequired()
+
33  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
34  .HasMaxLength(10000);
+
35 
+
36  b.Property<bool?>("Enabled")
+
37  .HasColumnType("tinyint(1)");
+
38 
+
39  b.Property<long>("InstanceId")
+
40  .HasColumnType("bigint");
+
41 
+
42  b.Property<string>("Name")
+
43  .IsRequired()
+
44  .HasColumnType("varchar(100) CHARACTER SET utf8mb4")
+
45  .HasMaxLength(100);
+
46 
+
47  b.Property<int>("Provider")
+
48  .HasColumnType("int");
+
49 
+
50  b.Property<uint?>("ReconnectionInterval")
+
51  .IsRequired()
+
52  .HasColumnType("int unsigned");
+
53 
+
54  b.HasKey("Id");
+
55 
+
56  b.HasIndex("InstanceId", "Name")
+
57  .IsUnique();
+
58 
+
59  b.ToTable("ChatBots");
+
60  });
+
61 
+
62  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
63  {
+
64  b.Property<long>("Id")
+
65  .ValueGeneratedOnAdd()
+
66  .HasColumnType("bigint");
+
67 
+
68  b.Property<long>("ChatSettingsId")
+
69  .HasColumnType("bigint");
+
70 
+
71  b.Property<ulong?>("DiscordChannelId")
+
72  .HasColumnType("bigint unsigned");
+
73 
+
74  b.Property<string>("IrcChannel")
+
75  .HasColumnType("varchar(100) CHARACTER SET utf8mb4")
+
76  .HasMaxLength(100);
+
77 
+
78  b.Property<bool?>("IsAdminChannel")
+
79  .IsRequired()
+
80  .HasColumnType("tinyint(1)");
+
81 
+
82  b.Property<bool?>("IsUpdatesChannel")
+
83  .IsRequired()
+
84  .HasColumnType("tinyint(1)");
+
85 
+
86  b.Property<bool?>("IsWatchdogChannel")
+
87  .IsRequired()
+
88  .HasColumnType("tinyint(1)");
+
89 
+
90  b.Property<string>("Tag")
+
91  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
92  .HasMaxLength(10000);
+
93 
+
94  b.HasKey("Id");
+
95 
+
96  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
97  .IsUnique();
+
98 
+
99  b.HasIndex("ChatSettingsId", "IrcChannel")
+
100  .IsUnique();
+
101 
+
102  b.ToTable("ChatChannels");
+
103  });
+
104 
+
105  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
106  {
+
107  b.Property<long>("Id")
+
108  .ValueGeneratedOnAdd()
+
109  .HasColumnType("bigint");
+
110 
+
111  b.Property<string>("ByondVersion")
+
112  .IsRequired()
+
113  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
114 
+
115  b.Property<int?>("DMApiMajorVersion")
+
116  .HasColumnType("int");
+
117 
+
118  b.Property<int?>("DMApiMinorVersion")
+
119  .HasColumnType("int");
+
120 
+
121  b.Property<int?>("DMApiPatchVersion")
+
122  .HasColumnType("int");
+
123 
+
124  b.Property<Guid?>("DirectoryName")
+
125  .IsRequired()
+
126  .HasColumnType("char(36)");
+
127 
+
128  b.Property<string>("DmeName")
+
129  .IsRequired()
+
130  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
131 
+
132  b.Property<int?>("GitHubDeploymentId")
+
133  .HasColumnType("int");
+
134 
+
135  b.Property<long?>("GitHubRepoId")
+
136  .HasColumnType("bigint");
+
137 
+
138  b.Property<long>("JobId")
+
139  .HasColumnType("bigint");
+
140 
+
141  b.Property<int?>("MinimumSecurityLevel")
+
142  .HasColumnType("int");
+
143 
+
144  b.Property<string>("Output")
+
145  .IsRequired()
+
146  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
147 
+
148  b.Property<long>("RevisionInformationId")
+
149  .HasColumnType("bigint");
+
150 
+
151  b.HasKey("Id");
+
152 
+
153  b.HasIndex("DirectoryName");
+
154 
+
155  b.HasIndex("JobId")
+
156  .IsUnique();
+
157 
+
158  b.HasIndex("RevisionInformationId");
+
159 
+
160  b.ToTable("CompileJobs");
+
161  });
+
162 
+
163  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
164  {
+
165  b.Property<long>("Id")
+
166  .ValueGeneratedOnAdd()
+
167  .HasColumnType("bigint");
+
168 
+
169  b.Property<bool?>("AllowWebClient")
+
170  .IsRequired()
+
171  .HasColumnType("tinyint(1)");
+
172 
+
173  b.Property<bool?>("AutoStart")
+
174  .IsRequired()
+
175  .HasColumnType("tinyint(1)");
+
176 
+
177  b.Property<uint?>("HeartbeatSeconds")
+
178  .IsRequired()
+
179  .HasColumnType("int unsigned");
+
180 
+
181  b.Property<long>("InstanceId")
+
182  .HasColumnType("bigint");
+
183 
+
184  b.Property<ushort?>("Port")
+
185  .IsRequired()
+
186  .HasColumnType("smallint unsigned");
+
187 
+
188  b.Property<int>("SecurityLevel")
+
189  .HasColumnType("int");
+
190 
+
191  b.Property<uint?>("StartupTimeout")
+
192  .IsRequired()
+
193  .HasColumnType("int unsigned");
+
194 
+
195  b.Property<uint?>("TopicRequestTimeout")
+
196  .IsRequired()
+
197  .HasColumnType("int unsigned");
+
198 
+
199  b.HasKey("Id");
+
200 
+
201  b.HasIndex("InstanceId")
+
202  .IsUnique();
+
203 
+
204  b.ToTable("DreamDaemonSettings");
+
205  });
+
206 
+
207  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
208  {
+
209  b.Property<long>("Id")
+
210  .ValueGeneratedOnAdd()
+
211  .HasColumnType("bigint");
+
212 
+
213  b.Property<ushort?>("ApiValidationPort")
+
214  .IsRequired()
+
215  .HasColumnType("smallint unsigned");
+
216 
+
217  b.Property<int>("ApiValidationSecurityLevel")
+
218  .HasColumnType("int");
+
219 
+
220  b.Property<long>("InstanceId")
+
221  .HasColumnType("bigint");
+
222 
+
223  b.Property<string>("ProjectName")
+
224  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
225  .HasMaxLength(10000);
+
226 
+
227  b.Property<bool?>("RequireDMApiValidation")
+
228  .IsRequired()
+
229  .HasColumnType("tinyint(1)");
+
230 
+
231  b.HasKey("Id");
+
232 
+
233  b.HasIndex("InstanceId")
+
234  .IsUnique();
+
235 
+
236  b.ToTable("DreamMakerSettings");
+
237  });
+
238 
+
239  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
240  {
+
241  b.Property<long>("Id")
+
242  .ValueGeneratedOnAdd()
+
243  .HasColumnType("bigint");
+
244 
+
245  b.Property<uint?>("AutoUpdateInterval")
+
246  .IsRequired()
+
247  .HasColumnType("int unsigned");
+
248 
+
249  b.Property<ushort?>("ChatBotLimit")
+
250  .IsRequired()
+
251  .HasColumnType("smallint unsigned");
+
252 
+
253  b.Property<int>("ConfigurationType")
+
254  .HasColumnType("int");
+
255 
+
256  b.Property<string>("Name")
+
257  .IsRequired()
+
258  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
259  .HasMaxLength(10000);
+
260 
+
261  b.Property<bool?>("Online")
+
262  .IsRequired()
+
263  .HasColumnType("tinyint(1)");
+
264 
+
265  b.Property<string>("Path")
+
266  .IsRequired()
+
267  .HasColumnType("varchar(255) CHARACTER SET utf8mb4");
+
268 
+
269  b.HasKey("Id");
+
270 
+
271  b.HasIndex("Path")
+
272  .IsUnique();
+
273 
+
274  b.ToTable("Instances");
+
275  });
+
276 
+
277  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
278  {
+
279  b.Property<long>("Id")
+
280  .ValueGeneratedOnAdd()
+
281  .HasColumnType("bigint");
+
282 
+
283  b.Property<ulong>("ByondRights")
+
284  .HasColumnType("bigint unsigned");
+
285 
+
286  b.Property<ulong>("ChatBotRights")
+
287  .HasColumnType("bigint unsigned");
+
288 
+
289  b.Property<ulong>("ConfigurationRights")
+
290  .HasColumnType("bigint unsigned");
+
291 
+
292  b.Property<ulong>("DreamDaemonRights")
+
293  .HasColumnType("bigint unsigned");
+
294 
+
295  b.Property<ulong>("DreamMakerRights")
+
296  .HasColumnType("bigint unsigned");
+
297 
+
298  b.Property<long>("InstanceId")
+
299  .HasColumnType("bigint");
+
300 
+
301  b.Property<ulong>("InstanceUserRights")
+
302  .HasColumnType("bigint unsigned");
+
303 
+
304  b.Property<ulong>("RepositoryRights")
+
305  .HasColumnType("bigint unsigned");
+
306 
+
307  b.Property<long>("UserId")
+
308  .HasColumnType("bigint");
+
309 
+
310  b.HasKey("Id");
+
311 
+
312  b.HasIndex("InstanceId");
+
313 
+
314  b.HasIndex("UserId", "InstanceId")
+
315  .IsUnique();
+
316 
+
317  b.ToTable("InstanceUsers");
+
318  });
+
319 
+
320  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
321  {
+
322  b.Property<long>("Id")
+
323  .ValueGeneratedOnAdd()
+
324  .HasColumnType("bigint");
+
325 
+
326  b.Property<ulong?>("CancelRight")
+
327  .HasColumnType("bigint unsigned");
+
328 
+
329  b.Property<ulong?>("CancelRightsType")
+
330  .HasColumnType("bigint unsigned");
+
331 
+
332  b.Property<bool?>("Cancelled")
+
333  .IsRequired()
+
334  .HasColumnType("tinyint(1)");
+
335 
+
336  b.Property<long?>("CancelledById")
+
337  .HasColumnType("bigint");
+
338 
+
339  b.Property<string>("Description")
+
340  .IsRequired()
+
341  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
342 
+
343  b.Property<uint?>("ErrorCode")
+
344  .HasColumnType("int unsigned");
+
345 
+
346  b.Property<string>("ExceptionDetails")
+
347  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
348 
+
349  b.Property<long>("InstanceId")
+
350  .HasColumnType("bigint");
+
351 
+
352  b.Property<DateTimeOffset?>("StartedAt")
+
353  .IsRequired()
+
354  .HasColumnType("datetime(6)");
+
355 
+
356  b.Property<long>("StartedById")
+
357  .HasColumnType("bigint");
+
358 
+
359  b.Property<DateTimeOffset?>("StoppedAt")
+
360  .HasColumnType("datetime(6)");
+
361 
+
362  b.HasKey("Id");
+
363 
+
364  b.HasIndex("CancelledById");
+
365 
+
366  b.HasIndex("InstanceId");
+
367 
+
368  b.HasIndex("StartedById");
+
369 
+
370  b.ToTable("Jobs");
+
371  });
+
372 
+
373  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
374  {
+
375  b.Property<long>("Id")
+
376  .ValueGeneratedOnAdd()
+
377  .HasColumnType("bigint");
+
378 
+
379  b.Property<string>("AccessIdentifier")
+
380  .IsRequired()
+
381  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
382 
+
383  b.Property<long>("CompileJobId")
+
384  .HasColumnType("bigint");
+
385 
+
386  b.Property<int>("LaunchSecurityLevel")
+
387  .HasColumnType("int");
+
388 
+
389  b.Property<ushort>("Port")
+
390  .HasColumnType("smallint unsigned");
+
391 
+
392  b.Property<int>("ProcessId")
+
393  .HasColumnType("int");
+
394 
+
395  b.Property<int>("RebootState")
+
396  .HasColumnType("int");
+
397 
+
398  b.HasKey("Id");
+
399 
+
400  b.HasIndex("CompileJobId");
+
401 
+
402  b.ToTable("ReattachInformations");
+
403  });
+
404 
+
405  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
406  {
+
407  b.Property<long>("Id")
+
408  .ValueGeneratedOnAdd()
+
409  .HasColumnType("bigint");
+
410 
+
411  b.Property<string>("AccessToken")
+
412  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
413  .HasMaxLength(10000);
+
414 
+
415  b.Property<string>("AccessUser")
+
416  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
417  .HasMaxLength(10000);
+
418 
+
419  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
420  .IsRequired()
+
421  .HasColumnType("tinyint(1)");
+
422 
+
423  b.Property<bool?>("AutoUpdatesSynchronize")
+
424  .IsRequired()
+
425  .HasColumnType("tinyint(1)");
+
426 
+
427  b.Property<string>("CommitterEmail")
+
428  .IsRequired()
+
429  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
430  .HasMaxLength(10000);
+
431 
+
432  b.Property<string>("CommitterName")
+
433  .IsRequired()
+
434  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
435  .HasMaxLength(10000);
+
436 
+
437  b.Property<bool?>("CreateGitHubDeployments")
+
438  .IsRequired()
+
439  .HasColumnType("tinyint(1)");
+
440 
+
441  b.Property<long>("InstanceId")
+
442  .HasColumnType("bigint");
+
443 
+
444  b.Property<bool?>("PostTestMergeComment")
+
445  .IsRequired()
+
446  .HasColumnType("tinyint(1)");
+
447 
+
448  b.Property<bool?>("PushTestMergeCommits")
+
449  .IsRequired()
+
450  .HasColumnType("tinyint(1)");
+
451 
+
452  b.Property<bool?>("ShowTestMergeCommitters")
+
453  .IsRequired()
+
454  .HasColumnType("tinyint(1)");
+
455 
+
456  b.HasKey("Id");
+
457 
+
458  b.HasIndex("InstanceId")
+
459  .IsUnique();
+
460 
+
461  b.ToTable("RepositorySettings");
+
462  });
+
463 
+
464  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
465  {
+
466  b.Property<long>("Id")
+
467  .ValueGeneratedOnAdd()
+
468  .HasColumnType("bigint");
+
469 
+
470  b.Property<long>("RevisionInformationId")
+
471  .HasColumnType("bigint");
+
472 
+
473  b.Property<long>("TestMergeId")
+
474  .HasColumnType("bigint");
+
475 
+
476  b.HasKey("Id");
+
477 
+
478  b.HasIndex("RevisionInformationId");
+
479 
+
480  b.HasIndex("TestMergeId");
+
481 
+
482  b.ToTable("RevInfoTestMerges");
+
483  });
+
484 
+
485  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
486  {
+
487  b.Property<long>("Id")
+
488  .ValueGeneratedOnAdd()
+
489  .HasColumnType("bigint");
+
490 
+
491  b.Property<string>("CommitSha")
+
492  .IsRequired()
+
493  .HasColumnType("varchar(40) CHARACTER SET utf8mb4")
+
494  .HasMaxLength(40);
+
495 
+
496  b.Property<long>("InstanceId")
+
497  .HasColumnType("bigint");
+
498 
+
499  b.Property<string>("OriginCommitSha")
+
500  .IsRequired()
+
501  .HasColumnType("varchar(40) CHARACTER SET utf8mb4")
+
502  .HasMaxLength(40);
+
503 
+
504  b.HasKey("Id");
+
505 
+
506  b.HasIndex("InstanceId", "CommitSha")
+
507  .IsUnique();
+
508 
+
509  b.ToTable("RevisionInformations");
+
510  });
+
511 
+
512  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
513  {
+
514  b.Property<long>("Id")
+
515  .ValueGeneratedOnAdd()
+
516  .HasColumnType("bigint");
+
517 
+
518  b.Property<string>("Author")
+
519  .IsRequired()
+
520  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
521 
+
522  b.Property<string>("BodyAtMerge")
+
523  .IsRequired()
+
524  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
525 
+
526  b.Property<string>("Comment")
+
527  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
528  .HasMaxLength(10000);
+
529 
+
530  b.Property<DateTimeOffset>("MergedAt")
+
531  .HasColumnType("datetime(6)");
+
532 
+
533  b.Property<long>("MergedById")
+
534  .HasColumnType("bigint");
+
535 
+
536  b.Property<int>("Number")
+
537  .HasColumnType("int");
+
538 
+
539  b.Property<long?>("PrimaryRevisionInformationId")
+
540  .IsRequired()
+
541  .HasColumnType("bigint");
+
542 
+
543  b.Property<string>("PullRequestRevision")
+
544  .IsRequired()
+
545  .HasColumnType("varchar(40) CHARACTER SET utf8mb4")
+
546  .HasMaxLength(40);
+
547 
+
548  b.Property<string>("TitleAtMerge")
+
549  .IsRequired()
+
550  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
551 
+
552  b.Property<string>("Url")
+
553  .IsRequired()
+
554  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
555 
+
556  b.HasKey("Id");
+
557 
+
558  b.HasIndex("MergedById");
+
559 
+
560  b.HasIndex("PrimaryRevisionInformationId")
+
561  .IsUnique();
+
562 
+
563  b.ToTable("TestMerges");
+
564  });
+
565 
+
566  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
567  {
+
568  b.Property<long?>("Id")
+
569  .ValueGeneratedOnAdd()
+
570  .HasColumnType("bigint");
+
571 
+
572  b.Property<ulong>("AdministrationRights")
+
573  .HasColumnType("bigint unsigned");
+
574 
+
575  b.Property<string>("CanonicalName")
+
576  .IsRequired()
+
577  .HasColumnType("varchar(255) CHARACTER SET utf8mb4");
+
578 
+
579  b.Property<DateTimeOffset?>("CreatedAt")
+
580  .IsRequired()
+
581  .HasColumnType("datetime(6)");
+
582 
+
583  b.Property<long?>("CreatedById")
+
584  .HasColumnType("bigint");
+
585 
+
586  b.Property<bool?>("Enabled")
+
587  .IsRequired()
+
588  .HasColumnType("tinyint(1)");
+
589 
+
590  b.Property<ulong>("InstanceManagerRights")
+
591  .HasColumnType("bigint unsigned");
+
592 
+
593  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
594  .HasColumnType("datetime(6)");
+
595 
+
596  b.Property<string>("Name")
+
597  .IsRequired()
+
598  .HasColumnType("longtext CHARACTER SET utf8mb4")
+
599  .HasMaxLength(10000);
+
600 
+
601  b.Property<string>("PasswordHash")
+
602  .HasColumnType("longtext CHARACTER SET utf8mb4");
+
603 
+
604  b.Property<string>("SystemIdentifier")
+
605  .HasColumnType("varchar(255) CHARACTER SET utf8mb4");
+
606 
+
607  b.HasKey("Id");
+
608 
+
609  b.HasIndex("CanonicalName")
+
610  .IsUnique();
+
611 
+
612  b.HasIndex("CreatedById");
+
613 
+
614  b.HasIndex("SystemIdentifier")
+
615  .IsUnique();
+
616 
+
617  b.ToTable("Users");
+
618  });
+
619 
+
620  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
621  {
+
622  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
623  .WithMany("ChatSettings")
+
624  .HasForeignKey("InstanceId")
+
625  .OnDelete(DeleteBehavior.Cascade)
+
626  .IsRequired();
+
627  });
+
628 
+
629  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
630  {
+
631  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
632  .WithMany("Channels")
+
633  .HasForeignKey("ChatSettingsId")
+
634  .OnDelete(DeleteBehavior.Cascade)
+
635  .IsRequired();
+
636  });
+
637 
+
638  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
639  {
+
640  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
641  .WithOne()
+
642  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
643  .OnDelete(DeleteBehavior.Cascade)
+
644  .IsRequired();
+
645 
+
646  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
647  .WithMany("CompileJobs")
+
648  .HasForeignKey("RevisionInformationId")
+
649  .OnDelete(DeleteBehavior.Cascade)
+
650  .IsRequired();
+
651  });
+
652 
+
653  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
654  {
+
655  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
656  .WithOne("DreamDaemonSettings")
+
657  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
658  .OnDelete(DeleteBehavior.Cascade)
+
659  .IsRequired();
+
660  });
+
661 
+
662  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
663  {
+
664  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
665  .WithOne("DreamMakerSettings")
+
666  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
667  .OnDelete(DeleteBehavior.Cascade)
+
668  .IsRequired();
+
669  });
+
670 
+
671  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
672  {
+
673  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
674  .WithMany("InstanceUsers")
+
675  .HasForeignKey("InstanceId")
+
676  .OnDelete(DeleteBehavior.Cascade)
+
677  .IsRequired();
+
678 
+
679  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
680  .WithMany("InstanceUsers")
+
681  .HasForeignKey("UserId")
+
682  .OnDelete(DeleteBehavior.Cascade)
+
683  .IsRequired();
+
684  });
+
685 
+
686  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
687  {
+
688  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
689  .WithMany()
+
690  .HasForeignKey("CancelledById");
+
691 
+
692  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
693  .WithMany("Jobs")
+
694  .HasForeignKey("InstanceId")
+
695  .OnDelete(DeleteBehavior.Cascade)
+
696  .IsRequired();
+
697 
+
698  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
699  .WithMany()
+
700  .HasForeignKey("StartedById")
+
701  .OnDelete(DeleteBehavior.Cascade)
+
702  .IsRequired();
+
703  });
+
704 
+
705  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
706  {
+
707  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
708  .WithMany()
+
709  .HasForeignKey("CompileJobId")
+
710  .OnDelete(DeleteBehavior.Cascade)
+
711  .IsRequired();
+
712  });
+
713 
+
714  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
715  {
+
716  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
717  .WithOne("RepositorySettings")
+
718  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
719  .OnDelete(DeleteBehavior.Cascade)
+
720  .IsRequired();
+
721  });
+
722 
+
723  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
724  {
+
725  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
726  .WithMany("ActiveTestMerges")
+
727  .HasForeignKey("RevisionInformationId")
+
728  .OnDelete(DeleteBehavior.Cascade)
+
729  .IsRequired();
+
730 
+
731  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
732  .WithMany("RevisonInformations")
+
733  .HasForeignKey("TestMergeId")
+
734  .OnDelete(DeleteBehavior.ClientNoAction)
+
735  .IsRequired();
+
736  });
+
737 
+
738  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
739  {
+
740  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
741  .WithMany("RevisionInformations")
+
742  .HasForeignKey("InstanceId")
+
743  .OnDelete(DeleteBehavior.Cascade)
+
744  .IsRequired();
+
745  });
+
746 
+
747  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
748  {
+
749  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
750  .WithMany("TestMerges")
+
751  .HasForeignKey("MergedById")
+
752  .OnDelete(DeleteBehavior.Restrict)
+
753  .IsRequired();
+
754 
+
755  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
756  .WithOne("PrimaryTestMerge")
+
757  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
758  .OnDelete(DeleteBehavior.Cascade)
+
759  .IsRequired();
+
760  });
+
761 
+
762  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
763  {
+
764  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
765  .WithMany("CreatedUsers")
+
766  .HasForeignKey("CreatedById");
+
767  });
+
768 #pragma warning restore 612, 618
+
769  }
+
+
+
+ +

◆ Down()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Down (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 35 of file 20200807213742_MYAddDeploymentColumns.cs.

+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.DropColumn(
+
41  name: "CreateGitHubDeployments",
+
42  table: "RepositorySettings");
+
43 
+
44  migrationBuilder.DropColumn(
+
45  name: "GitHubDeploymentId",
+
46  table: "CompileJobs");
+
47 
+
48  migrationBuilder.DropColumn(
+
49  name: "GitHubRepoId",
+
50  table: "CompileJobs");
+
51  }
+
+
+
+ +

◆ Up()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Up (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 12 of file 20200807213742_MYAddDeploymentColumns.cs.

+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
+
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.map new file mode 100644 index 0000000000..e49c1be338 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.md5 new file mode 100644 index 0000000000..296be2ecfe --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.md5 @@ -0,0 +1 @@ +b1b30db7f736bcfe276bd5a143a1cfdc \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.png new file mode 100644 index 0000000000..34f318ae29 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__coll__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.map new file mode 100644 index 0000000000..e49c1be338 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.md5 new file mode 100644 index 0000000000..296be2ecfe --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.md5 @@ -0,0 +1 @@ +b1b30db7f736bcfe276bd5a143a1cfdc \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.png new file mode 100644 index 0000000000..34f318ae29 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns__inherit__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat-members.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat-members.html index 0634eda7b7..b49b70b56c 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns, including all inherited members.

+ + + + +
BuildTargetModel(ModelBuilder modelBuilder)Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumnsprotected
Down(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumnsprotected
Up(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumnsprotected
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html new file mode 100644 index 0000000000..e3cb7b667b --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html @@ -0,0 +1,1011 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Protected Member Functions | +List of all members
+
+
Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns Class Reference
+
+
+ +

Adds columns for GitHub deployments for PostgresSQL. + More...

+
+Inheritance diagram for Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns:
+
+
Inheritance graph
+ + + + +
[legend]
+
+Collaboration diagram for Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns:
+
+
Collaboration graph
+ + + + +
[legend]
+ + + + + + + + +

+Protected Member Functions

override void Up (MigrationBuilder migrationBuilder)
 
override void Down (MigrationBuilder migrationBuilder)
 
override void BuildTargetModel (ModelBuilder modelBuilder)
 
+

Detailed Description

+

Adds columns for GitHub deployments for PostgresSQL.

+ +

Definition at line 9 of file 20200807214330_PGAddDeploymentColumns.cs.

+

Member Function Documentation

+ +

◆ BuildTargetModel()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.BuildTargetModel (ModelBuilder modelBuilder)
+
+protected
+
+ +

+ +

Definition at line 15 of file 20200807214330_PGAddDeploymentColumns.Designer.cs.

+
16  {
+
17 #pragma warning disable 612, 618
+
18  modelBuilder
+
19  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
+
20  .HasAnnotation("ProductVersion", "3.1.6")
+
21  .HasAnnotation("Relational:MaxIdentifierLength", 63);
+
22 
+
23  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
24  {
+
25  b.Property<long>("Id")
+
26  .ValueGeneratedOnAdd()
+
27  .HasColumnType("bigint")
+
28  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
29 
+
30  b.Property<int>("ChannelLimit")
+
31  .HasColumnType("integer");
+
32 
+
33  b.Property<string>("ConnectionString")
+
34  .IsRequired()
+
35  .HasColumnType("character varying(10000)")
+
36  .HasMaxLength(10000);
+
37 
+
38  b.Property<bool?>("Enabled")
+
39  .HasColumnType("boolean");
+
40 
+
41  b.Property<long>("InstanceId")
+
42  .HasColumnType("bigint");
+
43 
+
44  b.Property<string>("Name")
+
45  .IsRequired()
+
46  .HasColumnType("character varying(100)")
+
47  .HasMaxLength(100);
+
48 
+
49  b.Property<int>("Provider")
+
50  .HasColumnType("integer");
+
51 
+
52  b.Property<long>("ReconnectionInterval")
+
53  .HasColumnType("bigint");
+
54 
+
55  b.HasKey("Id");
+
56 
+
57  b.HasIndex("InstanceId", "Name")
+
58  .IsUnique();
+
59 
+
60  b.ToTable("ChatBots");
+
61  });
+
62 
+
63  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
64  {
+
65  b.Property<long>("Id")
+
66  .ValueGeneratedOnAdd()
+
67  .HasColumnType("bigint")
+
68  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
69 
+
70  b.Property<long>("ChatSettingsId")
+
71  .HasColumnType("bigint");
+
72 
+
73  b.Property<decimal?>("DiscordChannelId")
+
74  .HasColumnType("numeric(20,0)");
+
75 
+
76  b.Property<string>("IrcChannel")
+
77  .HasColumnType("character varying(100)")
+
78  .HasMaxLength(100);
+
79 
+
80  b.Property<bool?>("IsAdminChannel")
+
81  .IsRequired()
+
82  .HasColumnType("boolean");
+
83 
+
84  b.Property<bool?>("IsUpdatesChannel")
+
85  .IsRequired()
+
86  .HasColumnType("boolean");
+
87 
+
88  b.Property<bool?>("IsWatchdogChannel")
+
89  .IsRequired()
+
90  .HasColumnType("boolean");
+
91 
+
92  b.Property<string>("Tag")
+
93  .HasColumnType("character varying(10000)")
+
94  .HasMaxLength(10000);
+
95 
+
96  b.HasKey("Id");
+
97 
+
98  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
99  .IsUnique();
+
100 
+
101  b.HasIndex("ChatSettingsId", "IrcChannel")
+
102  .IsUnique();
+
103 
+
104  b.ToTable("ChatChannels");
+
105  });
+
106 
+
107  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
108  {
+
109  b.Property<long>("Id")
+
110  .ValueGeneratedOnAdd()
+
111  .HasColumnType("bigint")
+
112  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
113 
+
114  b.Property<string>("ByondVersion")
+
115  .IsRequired()
+
116  .HasColumnType("text");
+
117 
+
118  b.Property<int?>("DMApiMajorVersion")
+
119  .HasColumnType("integer");
+
120 
+
121  b.Property<int?>("DMApiMinorVersion")
+
122  .HasColumnType("integer");
+
123 
+
124  b.Property<int?>("DMApiPatchVersion")
+
125  .HasColumnType("integer");
+
126 
+
127  b.Property<Guid?>("DirectoryName")
+
128  .IsRequired()
+
129  .HasColumnType("uuid");
+
130 
+
131  b.Property<string>("DmeName")
+
132  .IsRequired()
+
133  .HasColumnType("text");
+
134 
+
135  b.Property<int?>("GitHubDeploymentId")
+
136  .HasColumnType("integer");
+
137 
+
138  b.Property<long?>("GitHubRepoId")
+
139  .HasColumnType("bigint");
+
140 
+
141  b.Property<long>("JobId")
+
142  .HasColumnType("bigint");
+
143 
+
144  b.Property<int?>("MinimumSecurityLevel")
+
145  .HasColumnType("integer");
+
146 
+
147  b.Property<string>("Output")
+
148  .IsRequired()
+
149  .HasColumnType("text");
+
150 
+
151  b.Property<long>("RevisionInformationId")
+
152  .HasColumnType("bigint");
+
153 
+
154  b.HasKey("Id");
+
155 
+
156  b.HasIndex("DirectoryName");
+
157 
+
158  b.HasIndex("JobId")
+
159  .IsUnique();
+
160 
+
161  b.HasIndex("RevisionInformationId");
+
162 
+
163  b.ToTable("CompileJobs");
+
164  });
+
165 
+
166  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
167  {
+
168  b.Property<long>("Id")
+
169  .ValueGeneratedOnAdd()
+
170  .HasColumnType("bigint")
+
171  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
172 
+
173  b.Property<bool?>("AllowWebClient")
+
174  .IsRequired()
+
175  .HasColumnType("boolean");
+
176 
+
177  b.Property<bool?>("AutoStart")
+
178  .IsRequired()
+
179  .HasColumnType("boolean");
+
180 
+
181  b.Property<long>("HeartbeatSeconds")
+
182  .HasColumnType("bigint");
+
183 
+
184  b.Property<long>("InstanceId")
+
185  .HasColumnType("bigint");
+
186 
+
187  b.Property<int>("Port")
+
188  .HasColumnType("integer");
+
189 
+
190  b.Property<int>("SecurityLevel")
+
191  .HasColumnType("integer");
+
192 
+
193  b.Property<long>("StartupTimeout")
+
194  .HasColumnType("bigint");
+
195 
+
196  b.Property<long>("TopicRequestTimeout")
+
197  .HasColumnType("bigint");
+
198 
+
199  b.HasKey("Id");
+
200 
+
201  b.HasIndex("InstanceId")
+
202  .IsUnique();
+
203 
+
204  b.ToTable("DreamDaemonSettings");
+
205  });
+
206 
+
207  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
208  {
+
209  b.Property<long>("Id")
+
210  .ValueGeneratedOnAdd()
+
211  .HasColumnType("bigint")
+
212  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
213 
+
214  b.Property<int>("ApiValidationPort")
+
215  .HasColumnType("integer");
+
216 
+
217  b.Property<int>("ApiValidationSecurityLevel")
+
218  .HasColumnType("integer");
+
219 
+
220  b.Property<long>("InstanceId")
+
221  .HasColumnType("bigint");
+
222 
+
223  b.Property<string>("ProjectName")
+
224  .HasColumnType("character varying(10000)")
+
225  .HasMaxLength(10000);
+
226 
+
227  b.Property<bool?>("RequireDMApiValidation")
+
228  .IsRequired()
+
229  .HasColumnType("boolean");
+
230 
+
231  b.HasKey("Id");
+
232 
+
233  b.HasIndex("InstanceId")
+
234  .IsUnique();
+
235 
+
236  b.ToTable("DreamMakerSettings");
+
237  });
+
238 
+
239  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
240  {
+
241  b.Property<long>("Id")
+
242  .ValueGeneratedOnAdd()
+
243  .HasColumnType("bigint")
+
244  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
245 
+
246  b.Property<long>("AutoUpdateInterval")
+
247  .HasColumnType("bigint");
+
248 
+
249  b.Property<int>("ChatBotLimit")
+
250  .HasColumnType("integer");
+
251 
+
252  b.Property<int>("ConfigurationType")
+
253  .HasColumnType("integer");
+
254 
+
255  b.Property<string>("Name")
+
256  .IsRequired()
+
257  .HasColumnType("character varying(10000)")
+
258  .HasMaxLength(10000);
+
259 
+
260  b.Property<bool?>("Online")
+
261  .IsRequired()
+
262  .HasColumnType("boolean");
+
263 
+
264  b.Property<string>("Path")
+
265  .IsRequired()
+
266  .HasColumnType("text");
+
267 
+
268  b.HasKey("Id");
+
269 
+
270  b.HasIndex("Path")
+
271  .IsUnique();
+
272 
+
273  b.ToTable("Instances");
+
274  });
+
275 
+
276  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
277  {
+
278  b.Property<long>("Id")
+
279  .ValueGeneratedOnAdd()
+
280  .HasColumnType("bigint")
+
281  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
282 
+
283  b.Property<decimal>("ByondRights")
+
284  .HasColumnType("numeric(20,0)");
+
285 
+
286  b.Property<decimal>("ChatBotRights")
+
287  .HasColumnType("numeric(20,0)");
+
288 
+
289  b.Property<decimal>("ConfigurationRights")
+
290  .HasColumnType("numeric(20,0)");
+
291 
+
292  b.Property<decimal>("DreamDaemonRights")
+
293  .HasColumnType("numeric(20,0)");
+
294 
+
295  b.Property<decimal>("DreamMakerRights")
+
296  .HasColumnType("numeric(20,0)");
+
297 
+
298  b.Property<long>("InstanceId")
+
299  .HasColumnType("bigint");
+
300 
+
301  b.Property<decimal>("InstanceUserRights")
+
302  .HasColumnType("numeric(20,0)");
+
303 
+
304  b.Property<decimal>("RepositoryRights")
+
305  .HasColumnType("numeric(20,0)");
+
306 
+
307  b.Property<long>("UserId")
+
308  .HasColumnType("bigint");
+
309 
+
310  b.HasKey("Id");
+
311 
+
312  b.HasIndex("InstanceId");
+
313 
+
314  b.HasIndex("UserId", "InstanceId")
+
315  .IsUnique();
+
316 
+
317  b.ToTable("InstanceUsers");
+
318  });
+
319 
+
320  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
321  {
+
322  b.Property<long>("Id")
+
323  .ValueGeneratedOnAdd()
+
324  .HasColumnType("bigint")
+
325  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
326 
+
327  b.Property<decimal?>("CancelRight")
+
328  .HasColumnType("numeric(20,0)");
+
329 
+
330  b.Property<decimal?>("CancelRightsType")
+
331  .HasColumnType("numeric(20,0)");
+
332 
+
333  b.Property<bool?>("Cancelled")
+
334  .IsRequired()
+
335  .HasColumnType("boolean");
+
336 
+
337  b.Property<long?>("CancelledById")
+
338  .HasColumnType("bigint");
+
339 
+
340  b.Property<string>("Description")
+
341  .IsRequired()
+
342  .HasColumnType("text");
+
343 
+
344  b.Property<long?>("ErrorCode")
+
345  .HasColumnType("bigint");
+
346 
+
347  b.Property<string>("ExceptionDetails")
+
348  .HasColumnType("text");
+
349 
+
350  b.Property<long>("InstanceId")
+
351  .HasColumnType("bigint");
+
352 
+
353  b.Property<DateTimeOffset?>("StartedAt")
+
354  .IsRequired()
+
355  .HasColumnType("timestamp with time zone");
+
356 
+
357  b.Property<long>("StartedById")
+
358  .HasColumnType("bigint");
+
359 
+
360  b.Property<DateTimeOffset?>("StoppedAt")
+
361  .HasColumnType("timestamp with time zone");
+
362 
+
363  b.HasKey("Id");
+
364 
+
365  b.HasIndex("CancelledById");
+
366 
+
367  b.HasIndex("InstanceId");
+
368 
+
369  b.HasIndex("StartedById");
+
370 
+
371  b.ToTable("Jobs");
+
372  });
+
373 
+
374  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
375  {
+
376  b.Property<long>("Id")
+
377  .ValueGeneratedOnAdd()
+
378  .HasColumnType("bigint")
+
379  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
380 
+
381  b.Property<string>("AccessIdentifier")
+
382  .IsRequired()
+
383  .HasColumnType("text");
+
384 
+
385  b.Property<long>("CompileJobId")
+
386  .HasColumnType("bigint");
+
387 
+
388  b.Property<int>("LaunchSecurityLevel")
+
389  .HasColumnType("integer");
+
390 
+
391  b.Property<int>("Port")
+
392  .HasColumnType("integer");
+
393 
+
394  b.Property<int>("ProcessId")
+
395  .HasColumnType("integer");
+
396 
+
397  b.Property<int>("RebootState")
+
398  .HasColumnType("integer");
+
399 
+
400  b.HasKey("Id");
+
401 
+
402  b.HasIndex("CompileJobId");
+
403 
+
404  b.ToTable("ReattachInformations");
+
405  });
+
406 
+
407  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
408  {
+
409  b.Property<long>("Id")
+
410  .ValueGeneratedOnAdd()
+
411  .HasColumnType("bigint")
+
412  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
413 
+
414  b.Property<string>("AccessToken")
+
415  .HasColumnType("character varying(10000)")
+
416  .HasMaxLength(10000);
+
417 
+
418  b.Property<string>("AccessUser")
+
419  .HasColumnType("character varying(10000)")
+
420  .HasMaxLength(10000);
+
421 
+
422  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
423  .IsRequired()
+
424  .HasColumnType("boolean");
+
425 
+
426  b.Property<bool?>("AutoUpdatesSynchronize")
+
427  .IsRequired()
+
428  .HasColumnType("boolean");
+
429 
+
430  b.Property<string>("CommitterEmail")
+
431  .IsRequired()
+
432  .HasColumnType("character varying(10000)")
+
433  .HasMaxLength(10000);
+
434 
+
435  b.Property<string>("CommitterName")
+
436  .IsRequired()
+
437  .HasColumnType("character varying(10000)")
+
438  .HasMaxLength(10000);
+
439 
+
440  b.Property<bool?>("CreateGitHubDeployments")
+
441  .IsRequired()
+
442  .HasColumnType("boolean");
+
443 
+
444  b.Property<long>("InstanceId")
+
445  .HasColumnType("bigint");
+
446 
+
447  b.Property<bool?>("PostTestMergeComment")
+
448  .IsRequired()
+
449  .HasColumnType("boolean");
+
450 
+
451  b.Property<bool?>("PushTestMergeCommits")
+
452  .IsRequired()
+
453  .HasColumnType("boolean");
+
454 
+
455  b.Property<bool?>("ShowTestMergeCommitters")
+
456  .IsRequired()
+
457  .HasColumnType("boolean");
+
458 
+
459  b.HasKey("Id");
+
460 
+
461  b.HasIndex("InstanceId")
+
462  .IsUnique();
+
463 
+
464  b.ToTable("RepositorySettings");
+
465  });
+
466 
+
467  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
468  {
+
469  b.Property<long>("Id")
+
470  .ValueGeneratedOnAdd()
+
471  .HasColumnType("bigint")
+
472  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
473 
+
474  b.Property<long>("RevisionInformationId")
+
475  .HasColumnType("bigint");
+
476 
+
477  b.Property<long>("TestMergeId")
+
478  .HasColumnType("bigint");
+
479 
+
480  b.HasKey("Id");
+
481 
+
482  b.HasIndex("RevisionInformationId");
+
483 
+
484  b.HasIndex("TestMergeId");
+
485 
+
486  b.ToTable("RevInfoTestMerges");
+
487  });
+
488 
+
489  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
490  {
+
491  b.Property<long>("Id")
+
492  .ValueGeneratedOnAdd()
+
493  .HasColumnType("bigint")
+
494  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
495 
+
496  b.Property<string>("CommitSha")
+
497  .IsRequired()
+
498  .HasColumnType("character varying(40)")
+
499  .HasMaxLength(40);
+
500 
+
501  b.Property<long>("InstanceId")
+
502  .HasColumnType("bigint");
+
503 
+
504  b.Property<string>("OriginCommitSha")
+
505  .IsRequired()
+
506  .HasColumnType("character varying(40)")
+
507  .HasMaxLength(40);
+
508 
+
509  b.HasKey("Id");
+
510 
+
511  b.HasIndex("InstanceId", "CommitSha")
+
512  .IsUnique();
+
513 
+
514  b.ToTable("RevisionInformations");
+
515  });
+
516 
+
517  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
518  {
+
519  b.Property<long>("Id")
+
520  .ValueGeneratedOnAdd()
+
521  .HasColumnType("bigint")
+
522  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
523 
+
524  b.Property<string>("Author")
+
525  .IsRequired()
+
526  .HasColumnType("text");
+
527 
+
528  b.Property<string>("BodyAtMerge")
+
529  .IsRequired()
+
530  .HasColumnType("text");
+
531 
+
532  b.Property<string>("Comment")
+
533  .HasColumnType("character varying(10000)")
+
534  .HasMaxLength(10000);
+
535 
+
536  b.Property<DateTimeOffset>("MergedAt")
+
537  .HasColumnType("timestamp with time zone");
+
538 
+
539  b.Property<long>("MergedById")
+
540  .HasColumnType("bigint");
+
541 
+
542  b.Property<int>("Number")
+
543  .HasColumnType("integer");
+
544 
+
545  b.Property<long?>("PrimaryRevisionInformationId")
+
546  .IsRequired()
+
547  .HasColumnType("bigint");
+
548 
+
549  b.Property<string>("PullRequestRevision")
+
550  .IsRequired()
+
551  .HasColumnType("character varying(40)")
+
552  .HasMaxLength(40);
+
553 
+
554  b.Property<string>("TitleAtMerge")
+
555  .IsRequired()
+
556  .HasColumnType("text");
+
557 
+
558  b.Property<string>("Url")
+
559  .IsRequired()
+
560  .HasColumnType("text");
+
561 
+
562  b.HasKey("Id");
+
563 
+
564  b.HasIndex("MergedById");
+
565 
+
566  b.HasIndex("PrimaryRevisionInformationId")
+
567  .IsUnique();
+
568 
+
569  b.ToTable("TestMerges");
+
570  });
+
571 
+
572  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
573  {
+
574  b.Property<long?>("Id")
+
575  .ValueGeneratedOnAdd()
+
576  .HasColumnType("bigint")
+
577  .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
+
578 
+
579  b.Property<decimal>("AdministrationRights")
+
580  .HasColumnType("numeric(20,0)");
+
581 
+
582  b.Property<string>("CanonicalName")
+
583  .IsRequired()
+
584  .HasColumnType("text");
+
585 
+
586  b.Property<DateTimeOffset?>("CreatedAt")
+
587  .IsRequired()
+
588  .HasColumnType("timestamp with time zone");
+
589 
+
590  b.Property<long?>("CreatedById")
+
591  .HasColumnType("bigint");
+
592 
+
593  b.Property<bool?>("Enabled")
+
594  .IsRequired()
+
595  .HasColumnType("boolean");
+
596 
+
597  b.Property<decimal>("InstanceManagerRights")
+
598  .HasColumnType("numeric(20,0)");
+
599 
+
600  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
601  .HasColumnType("timestamp with time zone");
+
602 
+
603  b.Property<string>("Name")
+
604  .IsRequired()
+
605  .HasColumnType("character varying(10000)")
+
606  .HasMaxLength(10000);
+
607 
+
608  b.Property<string>("PasswordHash")
+
609  .HasColumnType("text");
+
610 
+
611  b.Property<string>("SystemIdentifier")
+
612  .HasColumnType("text");
+
613 
+
614  b.HasKey("Id");
+
615 
+
616  b.HasIndex("CanonicalName")
+
617  .IsUnique();
+
618 
+
619  b.HasIndex("CreatedById");
+
620 
+
621  b.HasIndex("SystemIdentifier")
+
622  .IsUnique();
+
623 
+
624  b.ToTable("Users");
+
625  });
+
626 
+
627  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
628  {
+
629  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
630  .WithMany("ChatSettings")
+
631  .HasForeignKey("InstanceId")
+
632  .OnDelete(DeleteBehavior.Cascade)
+
633  .IsRequired();
+
634  });
+
635 
+
636  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
637  {
+
638  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
639  .WithMany("Channels")
+
640  .HasForeignKey("ChatSettingsId")
+
641  .OnDelete(DeleteBehavior.Cascade)
+
642  .IsRequired();
+
643  });
+
644 
+
645  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
646  {
+
647  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
648  .WithOne()
+
649  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
650  .OnDelete(DeleteBehavior.Cascade)
+
651  .IsRequired();
+
652 
+
653  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
654  .WithMany("CompileJobs")
+
655  .HasForeignKey("RevisionInformationId")
+
656  .OnDelete(DeleteBehavior.Cascade)
+
657  .IsRequired();
+
658  });
+
659 
+
660  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
661  {
+
662  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
663  .WithOne("DreamDaemonSettings")
+
664  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
665  .OnDelete(DeleteBehavior.Cascade)
+
666  .IsRequired();
+
667  });
+
668 
+
669  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
670  {
+
671  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
672  .WithOne("DreamMakerSettings")
+
673  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
674  .OnDelete(DeleteBehavior.Cascade)
+
675  .IsRequired();
+
676  });
+
677 
+
678  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
679  {
+
680  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
681  .WithMany("InstanceUsers")
+
682  .HasForeignKey("InstanceId")
+
683  .OnDelete(DeleteBehavior.Cascade)
+
684  .IsRequired();
+
685 
+
686  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
687  .WithMany("InstanceUsers")
+
688  .HasForeignKey("UserId")
+
689  .OnDelete(DeleteBehavior.Cascade)
+
690  .IsRequired();
+
691  });
+
692 
+
693  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
694  {
+
695  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
696  .WithMany()
+
697  .HasForeignKey("CancelledById");
+
698 
+
699  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
700  .WithMany("Jobs")
+
701  .HasForeignKey("InstanceId")
+
702  .OnDelete(DeleteBehavior.Cascade)
+
703  .IsRequired();
+
704 
+
705  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
706  .WithMany()
+
707  .HasForeignKey("StartedById")
+
708  .OnDelete(DeleteBehavior.Cascade)
+
709  .IsRequired();
+
710  });
+
711 
+
712  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
713  {
+
714  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
715  .WithMany()
+
716  .HasForeignKey("CompileJobId")
+
717  .OnDelete(DeleteBehavior.Cascade)
+
718  .IsRequired();
+
719  });
+
720 
+
721  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
722  {
+
723  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
724  .WithOne("RepositorySettings")
+
725  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
726  .OnDelete(DeleteBehavior.Cascade)
+
727  .IsRequired();
+
728  });
+
729 
+
730  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
731  {
+
732  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
733  .WithMany("ActiveTestMerges")
+
734  .HasForeignKey("RevisionInformationId")
+
735  .OnDelete(DeleteBehavior.Cascade)
+
736  .IsRequired();
+
737 
+
738  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
739  .WithMany("RevisonInformations")
+
740  .HasForeignKey("TestMergeId")
+
741  .OnDelete(DeleteBehavior.ClientNoAction)
+
742  .IsRequired();
+
743  });
+
744 
+
745  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
746  {
+
747  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
748  .WithMany("RevisionInformations")
+
749  .HasForeignKey("InstanceId")
+
750  .OnDelete(DeleteBehavior.Cascade)
+
751  .IsRequired();
+
752  });
+
753 
+
754  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
755  {
+
756  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
757  .WithMany("TestMerges")
+
758  .HasForeignKey("MergedById")
+
759  .OnDelete(DeleteBehavior.Restrict)
+
760  .IsRequired();
+
761 
+
762  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
763  .WithOne("PrimaryTestMerge")
+
764  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
765  .OnDelete(DeleteBehavior.Cascade)
+
766  .IsRequired();
+
767  });
+
768 
+
769  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
770  {
+
771  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
772  .WithMany("CreatedUsers")
+
773  .HasForeignKey("CreatedById");
+
774  });
+
775 #pragma warning restore 612, 618
+
776  }
+
+
+
+ +

◆ Down()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Down (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 35 of file 20200807214330_PGAddDeploymentColumns.cs.

+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.DropColumn(
+
41  name: "CreateGitHubDeployments",
+
42  table: "RepositorySettings");
+
43 
+
44  migrationBuilder.DropColumn(
+
45  name: "GitHubDeploymentId",
+
46  table: "CompileJobs");
+
47 
+
48  migrationBuilder.DropColumn(
+
49  name: "GitHubRepoId",
+
50  table: "CompileJobs");
+
51  }
+
+
+
+ +

◆ Up()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Up (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 12 of file 20200807214330_PGAddDeploymentColumns.cs.

+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
+
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.map new file mode 100644 index 0000000000..1c9a13f431 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.md5 new file mode 100644 index 0000000000..a01568c0cf --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.md5 @@ -0,0 +1 @@ +19ff6c4945616d00260624a33716d32f \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.png new file mode 100644 index 0000000000..c71a3aebbd Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__coll__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.map new file mode 100644 index 0000000000..1c9a13f431 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.md5 new file mode 100644 index 0000000000..a01568c0cf --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.md5 @@ -0,0 +1 @@ +19ff6c4945616d00260624a33716d32f \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.png new file mode 100644 index 0000000000..c71a3aebbd Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns__inherit__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api-members.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api-members.html index 240b2dca83..926fb467e3 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns, including all inherited members.

+ + + + +
BuildTargetModel(ModelBuilder modelBuilder)Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumnsprotected
Down(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumnsprotected
Up(MigrationBuilder migrationBuilder)Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumnsprotected
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html new file mode 100644 index 0000000000..150afde6dc --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html @@ -0,0 +1,1073 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns Class Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Protected Member Functions | +List of all members
+
+
Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns Class Reference
+
+
+ +

Adds columns for GitHub deployments for SQLite. + More...

+
+Inheritance diagram for Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns:
+
+
Inheritance graph
+ + + + +
[legend]
+
+Collaboration diagram for Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns:
+
+
Collaboration graph
+ + + + +
[legend]
+ + + + + + + + +

+Protected Member Functions

override void Up (MigrationBuilder migrationBuilder)
 
override void Down (MigrationBuilder migrationBuilder)
 
override void BuildTargetModel (ModelBuilder modelBuilder)
 
+

Detailed Description

+

Adds columns for GitHub deployments for SQLite.

+ +

Definition at line 9 of file 20200807214754_SLAddDeploymentColumns.cs.

+

Member Function Documentation

+ +

◆ BuildTargetModel()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.BuildTargetModel (ModelBuilder modelBuilder)
+
+protected
+
+ +

+ +

Definition at line 14 of file 20200807214754_SLAddDeploymentColumns.Designer.cs.

+
15  {
+
16 #pragma warning disable 612, 618
+
17  modelBuilder
+
18  .HasAnnotation("ProductVersion", "3.1.6");
+
19 
+
20  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
21  {
+
22  b.Property<long>("Id")
+
23  .ValueGeneratedOnAdd()
+
24  .HasColumnType("INTEGER");
+
25 
+
26  b.Property<ushort?>("ChannelLimit")
+
27  .IsRequired()
+
28  .HasColumnType("INTEGER");
+
29 
+
30  b.Property<string>("ConnectionString")
+
31  .IsRequired()
+
32  .HasColumnType("TEXT")
+
33  .HasMaxLength(10000);
+
34 
+
35  b.Property<bool?>("Enabled")
+
36  .HasColumnType("INTEGER");
+
37 
+
38  b.Property<long>("InstanceId")
+
39  .HasColumnType("INTEGER");
+
40 
+
41  b.Property<string>("Name")
+
42  .IsRequired()
+
43  .HasColumnType("TEXT")
+
44  .HasMaxLength(100);
+
45 
+
46  b.Property<int>("Provider")
+
47  .HasColumnType("INTEGER");
+
48 
+
49  b.Property<uint?>("ReconnectionInterval")
+
50  .IsRequired()
+
51  .HasColumnType("INTEGER");
+
52 
+
53  b.HasKey("Id");
+
54 
+
55  b.HasIndex("InstanceId", "Name")
+
56  .IsUnique();
+
57 
+
58  b.ToTable("ChatBots");
+
59  });
+
60 
+
61  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
62  {
+
63  b.Property<long>("Id")
+
64  .ValueGeneratedOnAdd()
+
65  .HasColumnType("INTEGER");
+
66 
+
67  b.Property<long>("ChatSettingsId")
+
68  .HasColumnType("INTEGER");
+
69 
+
70  b.Property<ulong?>("DiscordChannelId")
+
71  .HasColumnType("INTEGER");
+
72 
+
73  b.Property<string>("IrcChannel")
+
74  .HasColumnType("TEXT")
+
75  .HasMaxLength(100);
+
76 
+
77  b.Property<bool?>("IsAdminChannel")
+
78  .IsRequired()
+
79  .HasColumnType("INTEGER");
+
80 
+
81  b.Property<bool?>("IsUpdatesChannel")
+
82  .IsRequired()
+
83  .HasColumnType("INTEGER");
+
84 
+
85  b.Property<bool?>("IsWatchdogChannel")
+
86  .IsRequired()
+
87  .HasColumnType("INTEGER");
+
88 
+
89  b.Property<string>("Tag")
+
90  .HasColumnType("TEXT")
+
91  .HasMaxLength(10000);
+
92 
+
93  b.HasKey("Id");
+
94 
+
95  b.HasIndex("ChatSettingsId", "DiscordChannelId")
+
96  .IsUnique();
+
97 
+
98  b.HasIndex("ChatSettingsId", "IrcChannel")
+
99  .IsUnique();
+
100 
+
101  b.ToTable("ChatChannels");
+
102  });
+
103 
+
104  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
105  {
+
106  b.Property<long>("Id")
+
107  .ValueGeneratedOnAdd()
+
108  .HasColumnType("INTEGER");
+
109 
+
110  b.Property<string>("ByondVersion")
+
111  .IsRequired()
+
112  .HasColumnType("TEXT");
+
113 
+
114  b.Property<int?>("DMApiMajorVersion")
+
115  .HasColumnType("INTEGER");
+
116 
+
117  b.Property<int?>("DMApiMinorVersion")
+
118  .HasColumnType("INTEGER");
+
119 
+
120  b.Property<int?>("DMApiPatchVersion")
+
121  .HasColumnType("INTEGER");
+
122 
+
123  b.Property<Guid?>("DirectoryName")
+
124  .IsRequired()
+
125  .HasColumnType("TEXT");
+
126 
+
127  b.Property<string>("DmeName")
+
128  .IsRequired()
+
129  .HasColumnType("TEXT");
+
130 
+
131  b.Property<int?>("GitHubDeploymentId")
+
132  .HasColumnType("INTEGER");
+
133 
+
134  b.Property<long?>("GitHubRepoId")
+
135  .HasColumnType("INTEGER");
+
136 
+
137  b.Property<long>("JobId")
+
138  .HasColumnType("INTEGER");
+
139 
+
140  b.Property<int?>("MinimumSecurityLevel")
+
141  .HasColumnType("INTEGER");
+
142 
+
143  b.Property<string>("Output")
+
144  .IsRequired()
+
145  .HasColumnType("TEXT");
+
146 
+
147  b.Property<long>("RevisionInformationId")
+
148  .HasColumnType("INTEGER");
+
149 
+
150  b.HasKey("Id");
+
151 
+
152  b.HasIndex("DirectoryName");
+
153 
+
154  b.HasIndex("JobId")
+
155  .IsUnique();
+
156 
+
157  b.HasIndex("RevisionInformationId");
+
158 
+
159  b.ToTable("CompileJobs");
+
160  });
+
161 
+
162  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
163  {
+
164  b.Property<long>("Id")
+
165  .ValueGeneratedOnAdd()
+
166  .HasColumnType("INTEGER");
+
167 
+
168  b.Property<bool?>("AllowWebClient")
+
169  .IsRequired()
+
170  .HasColumnType("INTEGER");
+
171 
+
172  b.Property<bool?>("AutoStart")
+
173  .IsRequired()
+
174  .HasColumnType("INTEGER");
+
175 
+
176  b.Property<uint?>("HeartbeatSeconds")
+
177  .IsRequired()
+
178  .HasColumnType("INTEGER");
+
179 
+
180  b.Property<long>("InstanceId")
+
181  .HasColumnType("INTEGER");
+
182 
+
183  b.Property<ushort?>("Port")
+
184  .IsRequired()
+
185  .HasColumnType("INTEGER");
+
186 
+
187  b.Property<int>("SecurityLevel")
+
188  .HasColumnType("INTEGER");
+
189 
+
190  b.Property<uint?>("StartupTimeout")
+
191  .IsRequired()
+
192  .HasColumnType("INTEGER");
+
193 
+
194  b.Property<uint?>("TopicRequestTimeout")
+
195  .IsRequired()
+
196  .HasColumnType("INTEGER");
+
197 
+
198  b.HasKey("Id");
+
199 
+
200  b.HasIndex("InstanceId")
+
201  .IsUnique();
+
202 
+
203  b.ToTable("DreamDaemonSettings");
+
204  });
+
205 
+
206  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
207  {
+
208  b.Property<long>("Id")
+
209  .ValueGeneratedOnAdd()
+
210  .HasColumnType("INTEGER");
+
211 
+
212  b.Property<ushort?>("ApiValidationPort")
+
213  .IsRequired()
+
214  .HasColumnType("INTEGER");
+
215 
+
216  b.Property<int>("ApiValidationSecurityLevel")
+
217  .HasColumnType("INTEGER");
+
218 
+
219  b.Property<long>("InstanceId")
+
220  .HasColumnType("INTEGER");
+
221 
+
222  b.Property<string>("ProjectName")
+
223  .HasColumnType("TEXT")
+
224  .HasMaxLength(10000);
+
225 
+
226  b.Property<bool?>("RequireDMApiValidation")
+
227  .IsRequired()
+
228  .HasColumnType("INTEGER");
+
229 
+
230  b.HasKey("Id");
+
231 
+
232  b.HasIndex("InstanceId")
+
233  .IsUnique();
+
234 
+
235  b.ToTable("DreamMakerSettings");
+
236  });
+
237 
+
238  modelBuilder.Entity("Tgstation.Server.Host.Models.Instance", b =>
+
239  {
+
240  b.Property<long>("Id")
+
241  .ValueGeneratedOnAdd()
+
242  .HasColumnType("INTEGER");
+
243 
+
244  b.Property<uint?>("AutoUpdateInterval")
+
245  .IsRequired()
+
246  .HasColumnType("INTEGER");
+
247 
+
248  b.Property<ushort?>("ChatBotLimit")
+
249  .IsRequired()
+
250  .HasColumnType("INTEGER");
+
251 
+
252  b.Property<int>("ConfigurationType")
+
253  .HasColumnType("INTEGER");
+
254 
+
255  b.Property<string>("Name")
+
256  .IsRequired()
+
257  .HasColumnType("TEXT")
+
258  .HasMaxLength(10000);
+
259 
+
260  b.Property<bool?>("Online")
+
261  .IsRequired()
+
262  .HasColumnType("INTEGER");
+
263 
+
264  b.Property<string>("Path")
+
265  .IsRequired()
+
266  .HasColumnType("TEXT");
+
267 
+
268  b.HasKey("Id");
+
269 
+
270  b.HasIndex("Path")
+
271  .IsUnique();
+
272 
+
273  b.ToTable("Instances");
+
274  });
+
275 
+
276  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
277  {
+
278  b.Property<long>("Id")
+
279  .ValueGeneratedOnAdd()
+
280  .HasColumnType("INTEGER");
+
281 
+
282  b.Property<ulong>("ByondRights")
+
283  .HasColumnType("INTEGER");
+
284 
+
285  b.Property<ulong>("ChatBotRights")
+
286  .HasColumnType("INTEGER");
+
287 
+
288  b.Property<ulong>("ConfigurationRights")
+
289  .HasColumnType("INTEGER");
+
290 
+
291  b.Property<ulong>("DreamDaemonRights")
+
292  .HasColumnType("INTEGER");
+
293 
+
294  b.Property<ulong>("DreamMakerRights")
+
295  .HasColumnType("INTEGER");
+
296 
+
297  b.Property<long>("InstanceId")
+
298  .HasColumnType("INTEGER");
+
299 
+
300  b.Property<ulong>("InstanceUserRights")
+
301  .HasColumnType("INTEGER");
+
302 
+
303  b.Property<ulong>("RepositoryRights")
+
304  .HasColumnType("INTEGER");
+
305 
+
306  b.Property<long>("UserId")
+
307  .HasColumnType("INTEGER");
+
308 
+
309  b.HasKey("Id");
+
310 
+
311  b.HasIndex("InstanceId");
+
312 
+
313  b.HasIndex("UserId", "InstanceId")
+
314  .IsUnique();
+
315 
+
316  b.ToTable("InstanceUsers");
+
317  });
+
318 
+
319  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
320  {
+
321  b.Property<long>("Id")
+
322  .ValueGeneratedOnAdd()
+
323  .HasColumnType("INTEGER");
+
324 
+
325  b.Property<ulong?>("CancelRight")
+
326  .HasColumnType("INTEGER");
+
327 
+
328  b.Property<ulong?>("CancelRightsType")
+
329  .HasColumnType("INTEGER");
+
330 
+
331  b.Property<bool?>("Cancelled")
+
332  .IsRequired()
+
333  .HasColumnType("INTEGER");
+
334 
+
335  b.Property<long?>("CancelledById")
+
336  .HasColumnType("INTEGER");
+
337 
+
338  b.Property<string>("Description")
+
339  .IsRequired()
+
340  .HasColumnType("TEXT");
+
341 
+
342  b.Property<uint?>("ErrorCode")
+
343  .HasColumnType("INTEGER");
+
344 
+
345  b.Property<string>("ExceptionDetails")
+
346  .HasColumnType("TEXT");
+
347 
+
348  b.Property<long>("InstanceId")
+
349  .HasColumnType("INTEGER");
+
350 
+
351  b.Property<DateTimeOffset?>("StartedAt")
+
352  .IsRequired()
+
353  .HasColumnType("TEXT");
+
354 
+
355  b.Property<long>("StartedById")
+
356  .HasColumnType("INTEGER");
+
357 
+
358  b.Property<DateTimeOffset?>("StoppedAt")
+
359  .HasColumnType("TEXT");
+
360 
+
361  b.HasKey("Id");
+
362 
+
363  b.HasIndex("CancelledById");
+
364 
+
365  b.HasIndex("InstanceId");
+
366 
+
367  b.HasIndex("StartedById");
+
368 
+
369  b.ToTable("Jobs");
+
370  });
+
371 
+
372  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
373  {
+
374  b.Property<long>("Id")
+
375  .ValueGeneratedOnAdd()
+
376  .HasColumnType("INTEGER");
+
377 
+
378  b.Property<string>("AccessIdentifier")
+
379  .IsRequired()
+
380  .HasColumnType("TEXT");
+
381 
+
382  b.Property<long>("CompileJobId")
+
383  .HasColumnType("INTEGER");
+
384 
+
385  b.Property<int>("LaunchSecurityLevel")
+
386  .HasColumnType("INTEGER");
+
387 
+
388  b.Property<ushort>("Port")
+
389  .HasColumnType("INTEGER");
+
390 
+
391  b.Property<int>("ProcessId")
+
392  .HasColumnType("INTEGER");
+
393 
+
394  b.Property<int>("RebootState")
+
395  .HasColumnType("INTEGER");
+
396 
+
397  b.HasKey("Id");
+
398 
+
399  b.HasIndex("CompileJobId");
+
400 
+
401  b.ToTable("ReattachInformations");
+
402  });
+
403 
+
404  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
405  {
+
406  b.Property<long>("Id")
+
407  .ValueGeneratedOnAdd()
+
408  .HasColumnType("INTEGER");
+
409 
+
410  b.Property<string>("AccessToken")
+
411  .HasColumnType("TEXT")
+
412  .HasMaxLength(10000);
+
413 
+
414  b.Property<string>("AccessUser")
+
415  .HasColumnType("TEXT")
+
416  .HasMaxLength(10000);
+
417 
+
418  b.Property<bool?>("AutoUpdatesKeepTestMerges")
+
419  .IsRequired()
+
420  .HasColumnType("INTEGER");
+
421 
+
422  b.Property<bool?>("AutoUpdatesSynchronize")
+
423  .IsRequired()
+
424  .HasColumnType("INTEGER");
+
425 
+
426  b.Property<string>("CommitterEmail")
+
427  .IsRequired()
+
428  .HasColumnType("TEXT")
+
429  .HasMaxLength(10000);
+
430 
+
431  b.Property<string>("CommitterName")
+
432  .IsRequired()
+
433  .HasColumnType("TEXT")
+
434  .HasMaxLength(10000);
+
435 
+
436  b.Property<bool?>("CreateGitHubDeployments")
+
437  .IsRequired()
+
438  .HasColumnType("INTEGER");
+
439 
+
440  b.Property<long>("InstanceId")
+
441  .HasColumnType("INTEGER");
+
442 
+
443  b.Property<bool?>("PostTestMergeComment")
+
444  .IsRequired()
+
445  .HasColumnType("INTEGER");
+
446 
+
447  b.Property<bool?>("PushTestMergeCommits")
+
448  .IsRequired()
+
449  .HasColumnType("INTEGER");
+
450 
+
451  b.Property<bool?>("ShowTestMergeCommitters")
+
452  .IsRequired()
+
453  .HasColumnType("INTEGER");
+
454 
+
455  b.HasKey("Id");
+
456 
+
457  b.HasIndex("InstanceId")
+
458  .IsUnique();
+
459 
+
460  b.ToTable("RepositorySettings");
+
461  });
+
462 
+
463  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
464  {
+
465  b.Property<long>("Id")
+
466  .ValueGeneratedOnAdd()
+
467  .HasColumnType("INTEGER");
+
468 
+
469  b.Property<long>("RevisionInformationId")
+
470  .HasColumnType("INTEGER");
+
471 
+
472  b.Property<long>("TestMergeId")
+
473  .HasColumnType("INTEGER");
+
474 
+
475  b.HasKey("Id");
+
476 
+
477  b.HasIndex("RevisionInformationId");
+
478 
+
479  b.HasIndex("TestMergeId");
+
480 
+
481  b.ToTable("RevInfoTestMerges");
+
482  });
+
483 
+
484  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
485  {
+
486  b.Property<long>("Id")
+
487  .ValueGeneratedOnAdd()
+
488  .HasColumnType("INTEGER");
+
489 
+
490  b.Property<string>("CommitSha")
+
491  .IsRequired()
+
492  .HasColumnType("TEXT")
+
493  .HasMaxLength(40);
+
494 
+
495  b.Property<long>("InstanceId")
+
496  .HasColumnType("INTEGER");
+
497 
+
498  b.Property<string>("OriginCommitSha")
+
499  .IsRequired()
+
500  .HasColumnType("TEXT")
+
501  .HasMaxLength(40);
+
502 
+
503  b.HasKey("Id");
+
504 
+
505  b.HasIndex("InstanceId", "CommitSha")
+
506  .IsUnique();
+
507 
+
508  b.ToTable("RevisionInformations");
+
509  });
+
510 
+
511  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
512  {
+
513  b.Property<long>("Id")
+
514  .ValueGeneratedOnAdd()
+
515  .HasColumnType("INTEGER");
+
516 
+
517  b.Property<string>("Author")
+
518  .IsRequired()
+
519  .HasColumnType("TEXT");
+
520 
+
521  b.Property<string>("BodyAtMerge")
+
522  .IsRequired()
+
523  .HasColumnType("TEXT");
+
524 
+
525  b.Property<string>("Comment")
+
526  .HasColumnType("TEXT")
+
527  .HasMaxLength(10000);
+
528 
+
529  b.Property<DateTimeOffset>("MergedAt")
+
530  .HasColumnType("TEXT");
+
531 
+
532  b.Property<long>("MergedById")
+
533  .HasColumnType("INTEGER");
+
534 
+
535  b.Property<int>("Number")
+
536  .HasColumnType("INTEGER");
+
537 
+
538  b.Property<long?>("PrimaryRevisionInformationId")
+
539  .IsRequired()
+
540  .HasColumnType("INTEGER");
+
541 
+
542  b.Property<string>("PullRequestRevision")
+
543  .IsRequired()
+
544  .HasColumnType("TEXT")
+
545  .HasMaxLength(40);
+
546 
+
547  b.Property<string>("TitleAtMerge")
+
548  .IsRequired()
+
549  .HasColumnType("TEXT");
+
550 
+
551  b.Property<string>("Url")
+
552  .IsRequired()
+
553  .HasColumnType("TEXT");
+
554 
+
555  b.HasKey("Id");
+
556 
+
557  b.HasIndex("MergedById");
+
558 
+
559  b.HasIndex("PrimaryRevisionInformationId")
+
560  .IsUnique();
+
561 
+
562  b.ToTable("TestMerges");
+
563  });
+
564 
+
565  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
566  {
+
567  b.Property<long?>("Id")
+
568  .ValueGeneratedOnAdd()
+
569  .HasColumnType("INTEGER");
+
570 
+
571  b.Property<ulong>("AdministrationRights")
+
572  .HasColumnType("INTEGER");
+
573 
+
574  b.Property<string>("CanonicalName")
+
575  .IsRequired()
+
576  .HasColumnType("TEXT");
+
577 
+
578  b.Property<DateTimeOffset?>("CreatedAt")
+
579  .IsRequired()
+
580  .HasColumnType("TEXT");
+
581 
+
582  b.Property<long?>("CreatedById")
+
583  .HasColumnType("INTEGER");
+
584 
+
585  b.Property<bool?>("Enabled")
+
586  .IsRequired()
+
587  .HasColumnType("INTEGER");
+
588 
+
589  b.Property<ulong>("InstanceManagerRights")
+
590  .HasColumnType("INTEGER");
+
591 
+
592  b.Property<DateTimeOffset?>("LastPasswordUpdate")
+
593  .HasColumnType("TEXT");
+
594 
+
595  b.Property<string>("Name")
+
596  .IsRequired()
+
597  .HasColumnType("TEXT")
+
598  .HasMaxLength(10000);
+
599 
+
600  b.Property<string>("PasswordHash")
+
601  .HasColumnType("TEXT");
+
602 
+
603  b.Property<string>("SystemIdentifier")
+
604  .HasColumnType("TEXT");
+
605 
+
606  b.HasKey("Id");
+
607 
+
608  b.HasIndex("CanonicalName")
+
609  .IsUnique();
+
610 
+
611  b.HasIndex("CreatedById");
+
612 
+
613  b.HasIndex("SystemIdentifier")
+
614  .IsUnique();
+
615 
+
616  b.ToTable("Users");
+
617  });
+
618 
+
619  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatBot", b =>
+
620  {
+
621  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
622  .WithMany("ChatSettings")
+
623  .HasForeignKey("InstanceId")
+
624  .OnDelete(DeleteBehavior.Cascade)
+
625  .IsRequired();
+
626  });
+
627 
+
628  modelBuilder.Entity("Tgstation.Server.Host.Models.ChatChannel", b =>
+
629  {
+
630  b.HasOne("Tgstation.Server.Host.Models.ChatBot", "ChatSettings")
+
631  .WithMany("Channels")
+
632  .HasForeignKey("ChatSettingsId")
+
633  .OnDelete(DeleteBehavior.Cascade)
+
634  .IsRequired();
+
635  });
+
636 
+
637  modelBuilder.Entity("Tgstation.Server.Host.Models.CompileJob", b =>
+
638  {
+
639  b.HasOne("Tgstation.Server.Host.Models.Job", "Job")
+
640  .WithOne()
+
641  .HasForeignKey("Tgstation.Server.Host.Models.CompileJob", "JobId")
+
642  .OnDelete(DeleteBehavior.Cascade)
+
643  .IsRequired();
+
644 
+
645  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
646  .WithMany("CompileJobs")
+
647  .HasForeignKey("RevisionInformationId")
+
648  .OnDelete(DeleteBehavior.ClientNoAction)
+
649  .IsRequired();
+
650  });
+
651 
+
652  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamDaemonSettings", b =>
+
653  {
+
654  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
655  .WithOne("DreamDaemonSettings")
+
656  .HasForeignKey("Tgstation.Server.Host.Models.DreamDaemonSettings", "InstanceId")
+
657  .OnDelete(DeleteBehavior.Cascade)
+
658  .IsRequired();
+
659  });
+
660 
+
661  modelBuilder.Entity("Tgstation.Server.Host.Models.DreamMakerSettings", b =>
+
662  {
+
663  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
664  .WithOne("DreamMakerSettings")
+
665  .HasForeignKey("Tgstation.Server.Host.Models.DreamMakerSettings", "InstanceId")
+
666  .OnDelete(DeleteBehavior.Cascade)
+
667  .IsRequired();
+
668  });
+
669 
+
670  modelBuilder.Entity("Tgstation.Server.Host.Models.InstanceUser", b =>
+
671  {
+
672  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
673  .WithMany("InstanceUsers")
+
674  .HasForeignKey("InstanceId")
+
675  .OnDelete(DeleteBehavior.Cascade)
+
676  .IsRequired();
+
677 
+
678  b.HasOne("Tgstation.Server.Host.Models.User", null)
+
679  .WithMany("InstanceUsers")
+
680  .HasForeignKey("UserId")
+
681  .OnDelete(DeleteBehavior.Cascade)
+
682  .IsRequired();
+
683  });
+
684 
+
685  modelBuilder.Entity("Tgstation.Server.Host.Models.Job", b =>
+
686  {
+
687  b.HasOne("Tgstation.Server.Host.Models.User", "CancelledBy")
+
688  .WithMany()
+
689  .HasForeignKey("CancelledById");
+
690 
+
691  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
692  .WithMany("Jobs")
+
693  .HasForeignKey("InstanceId")
+
694  .OnDelete(DeleteBehavior.Cascade)
+
695  .IsRequired();
+
696 
+
697  b.HasOne("Tgstation.Server.Host.Models.User", "StartedBy")
+
698  .WithMany()
+
699  .HasForeignKey("StartedById")
+
700  .OnDelete(DeleteBehavior.Cascade)
+
701  .IsRequired();
+
702  });
+
703 
+
704  modelBuilder.Entity("Tgstation.Server.Host.Models.ReattachInformation", b =>
+
705  {
+
706  b.HasOne("Tgstation.Server.Host.Models.CompileJob", "CompileJob")
+
707  .WithMany()
+
708  .HasForeignKey("CompileJobId")
+
709  .OnDelete(DeleteBehavior.Cascade)
+
710  .IsRequired();
+
711  });
+
712 
+
713  modelBuilder.Entity("Tgstation.Server.Host.Models.RepositorySettings", b =>
+
714  {
+
715  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
716  .WithOne("RepositorySettings")
+
717  .HasForeignKey("Tgstation.Server.Host.Models.RepositorySettings", "InstanceId")
+
718  .OnDelete(DeleteBehavior.Cascade)
+
719  .IsRequired();
+
720  });
+
721 
+
722  modelBuilder.Entity("Tgstation.Server.Host.Models.RevInfoTestMerge", b =>
+
723  {
+
724  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "RevisionInformation")
+
725  .WithMany("ActiveTestMerges")
+
726  .HasForeignKey("RevisionInformationId")
+
727  .OnDelete(DeleteBehavior.Cascade)
+
728  .IsRequired();
+
729 
+
730  b.HasOne("Tgstation.Server.Host.Models.TestMerge", "TestMerge")
+
731  .WithMany("RevisonInformations")
+
732  .HasForeignKey("TestMergeId")
+
733  .OnDelete(DeleteBehavior.ClientNoAction)
+
734  .IsRequired();
+
735  });
+
736 
+
737  modelBuilder.Entity("Tgstation.Server.Host.Models.RevisionInformation", b =>
+
738  {
+
739  b.HasOne("Tgstation.Server.Host.Models.Instance", "Instance")
+
740  .WithMany("RevisionInformations")
+
741  .HasForeignKey("InstanceId")
+
742  .OnDelete(DeleteBehavior.Cascade)
+
743  .IsRequired();
+
744  });
+
745 
+
746  modelBuilder.Entity("Tgstation.Server.Host.Models.TestMerge", b =>
+
747  {
+
748  b.HasOne("Tgstation.Server.Host.Models.User", "MergedBy")
+
749  .WithMany("TestMerges")
+
750  .HasForeignKey("MergedById")
+
751  .OnDelete(DeleteBehavior.Restrict)
+
752  .IsRequired();
+
753 
+
754  b.HasOne("Tgstation.Server.Host.Models.RevisionInformation", "PrimaryRevisionInformation")
+
755  .WithOne("PrimaryTestMerge")
+
756  .HasForeignKey("Tgstation.Server.Host.Models.TestMerge", "PrimaryRevisionInformationId")
+
757  .OnDelete(DeleteBehavior.Cascade)
+
758  .IsRequired();
+
759  });
+
760 
+
761  modelBuilder.Entity("Tgstation.Server.Host.Models.User", b =>
+
762  {
+
763  b.HasOne("Tgstation.Server.Host.Models.User", "CreatedBy")
+
764  .WithMany("CreatedUsers")
+
765  .HasForeignKey("CreatedById");
+
766  });
+
767 #pragma warning restore 612, 618
+
768  }
+
+
+
+ +

◆ Down()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Down (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 35 of file 20200807214754_SLAddDeploymentColumns.cs.

+
36  {
+
37  if (migrationBuilder == null)
+
38  throw new ArgumentNullException(nameof(migrationBuilder));
+
39 
+
40  migrationBuilder.RenameTable(
+
41  name: "RepositorySettings",
+
42  newName: "RepositorySettings_down");
+
43 
+
44  migrationBuilder.CreateTable(
+
45  name: "RepositorySettings",
+
46  columns: table => new
+
47  {
+
48  Id = table.Column<long>(nullable: false)
+
49  .Annotation("Sqlite:Autoincrement", true),
+
50  CommitterName = table.Column<string>(maxLength: 10000, nullable: false),
+
51  CommitterEmail = table.Column<string>(maxLength: 10000, nullable: false),
+
52  AccessUser = table.Column<string>(maxLength: 10000, nullable: true),
+
53  AccessToken = table.Column<string>(maxLength: 10000, nullable: true),
+
54  PushTestMergeCommits = table.Column<bool>(nullable: false),
+
55  ShowTestMergeCommitters = table.Column<bool>(nullable: false),
+
56  AutoUpdatesKeepTestMerges = table.Column<bool>(nullable: false),
+
57  AutoUpdatesSynchronize = table.Column<bool>(nullable: false),
+
58  PostTestMergeComment = table.Column<bool>(nullable: false),
+
59  InstanceId = table.Column<long>(nullable: false)
+
60  },
+
61  constraints: table =>
+
62  {
+
63  table.PrimaryKey("PK_RepositorySettings", x => x.Id);
+
64  table.ForeignKey(
+
65  name: "FK_RepositorySettings_Instances_InstanceId",
+
66  column: x => x.InstanceId,
+
67  principalTable: "Instances",
+
68  principalColumn: "Id",
+
69  onDelete: ReferentialAction.Cascade);
+
70  });
+
71 
+
72  migrationBuilder.Sql(
+
73  $"INSERT INTO RepositorySettings SELECT Id,CommitterName,CommitterEmail,AccessUser,AccessToken,PushTestMergeCommits,ShowTestMergeCommitters,AutoUpdatesKeepTestMerges,AutoUpdatesSynchronize,PostTestMergeComment,InstanceId FROM RepositorySettings_down");
+
74 
+
75  migrationBuilder.DropTable(
+
76  name: "RepositorySettings_down");
+
77 
+
78  migrationBuilder.RenameTable(
+
79  name: "CompileJobs",
+
80  newName: "CompileJobs_down");
+
81 
+
82  migrationBuilder.CreateTable(
+
83  name: "CompileJobs",
+
84  columns: table => new
+
85  {
+
86  Id = table.Column<long>(nullable: false)
+
87  .Annotation("Sqlite:Autoincrement", true),
+
88  DmeName = table.Column<string>(nullable: false),
+
89  Output = table.Column<string>(nullable: false),
+
90  DirectoryName = table.Column<Guid>(nullable: false),
+
91  MinimumSecurityLevel = table.Column<int>(nullable: true),
+
92  JobId = table.Column<long>(nullable: false),
+
93  RevisionInformationId = table.Column<long>(nullable: false),
+
94  ByondVersion = table.Column<string>(nullable: false),
+
95  DMApiMajorVersion = table.Column<int>(nullable: true),
+
96  DMApiMinorVersion = table.Column<int>(nullable: true),
+
97  DMApiPatchVersion = table.Column<int>(nullable: true)
+
98  },
+
99  constraints: table =>
+
100  {
+
101  table.PrimaryKey("PK_CompileJobs", x => x.Id);
+
102  table.ForeignKey(
+
103  name: "FK_CompileJobs_Jobs_JobId",
+
104  column: x => x.JobId,
+
105  principalTable: "Jobs",
+
106  principalColumn: "Id",
+
107  onDelete: ReferentialAction.Cascade);
+
108  table.ForeignKey(
+
109  name: "FK_CompileJobs_RevisionInformations_RevisionInformationId",
+
110  column: x => x.RevisionInformationId,
+
111  principalTable: "RevisionInformations",
+
112  principalColumn: "Id");
+
113  });
+
114 
+
115  migrationBuilder.Sql(
+
116  $"INSERT INTO CompileJobs SELECT Id,DmeName,Output,DirectoryName,MinimumSecurityLevel,JobId,RevisionInformationId,ByondVersion,DMApiMajorVersion,DMApiMinorVersion,DMApiPatchVersion FROM CompileJobs_down");
+
117 
+
118  migrationBuilder.DropTable(
+
119  name: "CompileJobs_down");
+
120  }
+
+
+
+ +

◆ Up()

+ +
+
+ + + + + +
+ + + + + + + + +
override void Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Up (MigrationBuilder migrationBuilder)
+
+protected
+
+ +

+ +

Definition at line 12 of file 20200807214754_SLAddDeploymentColumns.cs.

+
13  {
+
14  if (migrationBuilder == null)
+
15  throw new ArgumentNullException(nameof(migrationBuilder));
+
16 
+
17  migrationBuilder.AddColumn<bool>(
+
18  name: "CreateGitHubDeployments",
+
19  table: "RepositorySettings",
+
20  nullable: false,
+
21  defaultValue: false);
+
22 
+
23  migrationBuilder.AddColumn<int>(
+
24  name: "GitHubDeploymentId",
+
25  table: "CompileJobs",
+
26  nullable: true);
+
27 
+
28  migrationBuilder.AddColumn<long>(
+
29  name: "GitHubRepoId",
+
30  table: "CompileJobs",
+
31  nullable: true);
+
32  }
+
+
+
+
The documentation for this class was generated from the following files: +
+ + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.map new file mode 100644 index 0000000000..d7481a20b0 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.md5 new file mode 100644 index 0000000000..bc27dcb712 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.md5 @@ -0,0 +1 @@ +aa784af8e1698f1abdd1fff889044f39 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.png new file mode 100644 index 0000000000..06165621a5 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__coll__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.map b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.map new file mode 100644 index 0000000000..d7481a20b0 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.md5 b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.md5 new file mode 100644 index 0000000000..bc27dcb712 --- /dev/null +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.md5 @@ -0,0 +1 @@ +aa784af8e1698f1abdd1fff889044f39 \ No newline at end of file diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.png b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.png new file mode 100644 index 0000000000..06165621a5 Binary files /dev/null and b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns__inherit__graph.png differ diff --git a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat-members.html b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat-members.html index c0a39a1e80..da96b6f25a 100644 --- a/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat-members.html +++ b/class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager Member List
+
+
+ +

This is the complete list of members for Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager, including all inherited members.

+ + + + + + +
ApplyDeployment(CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
MarkInactive(CompileJob compileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
StageDeployment(CompileJob compileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
StartDeployment(IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager
+ + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html new file mode 100644 index 0000000000..155412511b --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html @@ -0,0 +1,395 @@ + + + + + + + +tgstation-server: Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager Interface Reference + + + + + + + + + +
+
+ + + + + + + +
+
tgstation-server +  4.5.0 +
+
The /tg/station 13 server suite
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+Public Member Functions | +List of all members
+
+
Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager Interface Reference
+
+
+ +

Creates and updates GitHub deployments. + More...

+
+Inheritance diagram for Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager:
+
+
Inheritance graph
+ + + + +
[legend]
+ + + + + + + + + + + + + + + + + +

+Public Member Functions

Task StartDeployment (IRepository repository, CompileJob compileJob, CancellationToken cancellationToken)
 Start a deployment for a given compileJob . More...
 
Task StageDeployment (CompileJob compileJob, CancellationToken cancellationToken)
 Stage a given compileJob 's deployment. More...
 
Task ApplyDeployment (CompileJob compileJob, CompileJob oldCompileJob, CancellationToken cancellationToken)
 Stage a given compileJob 's deployment. More...
 
Task FailDeployment (CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)
 Fail a deployment for a given compileJob . More...
 
Task MarkInactive (CompileJob compileJob, CancellationToken cancellationToken)
 Mark the deplotment for a given compileJob as inactive. More...
 
+

Detailed Description

+

Creates and updates GitHub deployments.

+ +

Definition at line 11 of file IGitHubDeploymentManager.cs.

+

Member Function Documentation

+ +

◆ ApplyDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.ApplyDeployment (CompileJob compileJob,
CompileJob oldCompileJob,
CancellationToken cancellationToken 
)
+
+ +

Stage a given compileJob 's deployment.

+
Parameters
+ + + + +
compileJobThe CompileJob being applied.
oldCompileJobThe currently active CompileJob, if any.
cancellationTokenThe CancellationToken for the operation.
+
+
+
Returns
A Task representing the running operation.
+ +

Implemented in Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.

+ +

Referenced by Tgstation.Server.Host.Components.Watchdog.WatchdogBase.BeforeApplyDmb().

+
+Here is the caller graph for this function:
+
+
+ + + + + + +
+ +
+
+ +

◆ FailDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.FailDeployment (CompileJob compileJob,
string errorMessage,
CancellationToken cancellationToken 
)
+
+ +

Fail a deployment for a given compileJob .

+
Parameters
+ + + + +
compileJobThe failed CompileJob.
errorMessageThe error message.
cancellationTokenThe CancellationToken for the operation.
+
+
+
Returns
A Task representing the running operation.
+ +

Implemented in Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.

+ +

Referenced by Tgstation.Server.Host.Components.Deployment.DreamMaker.CleanupFailedCompile().

+
+Here is the caller graph for this function:
+
+
+ + + + +
+ +
+
+ +

◆ MarkInactive()

+ +
+
+ + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.MarkInactive (CompileJob compileJob,
CancellationToken cancellationToken 
)
+
+ +

Mark the deplotment for a given compileJob as inactive.

+
Parameters
+ + + +
compileJobThe inactive CompileJob.
cancellationTokenThe CancellationToken for the operation.
+
+
+
Returns
A Task representing the running operation.
+ +

Implemented in Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.

+ +

Referenced by Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanJob().

+
+Here is the caller graph for this function:
+
+
+ + + + + + + + +
+ +
+
+ +

◆ StageDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StageDeployment (CompileJob compileJob,
CancellationToken cancellationToken 
)
+
+ +

Stage a given compileJob 's deployment.

+
Parameters
+ + + +
compileJobThe staged CompileJob.
cancellationTokenThe CancellationToken for the operation.
+
+
+
Returns
A Task representing the running operation.
+ +

Implemented in Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.

+ +

Referenced by Tgstation.Server.Host.Components.Deployment.DmbFactory.LoadCompileJob().

+
+Here is the caller graph for this function:
+
+
+ + + + + +
+ +
+
+ +

◆ StartDeployment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Task Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StartDeployment (IRepository repository,
CompileJob compileJob,
CancellationToken cancellationToken 
)
+
+ +

Start a deployment for a given compileJob .

+
Parameters
+ + + + +
repositoryThe IRepository being deployed.
compileJobThe active CompileJob.
cancellationTokenThe CancellationToken for the operation.
+
+
+
Returns
A Task representing the running operation.
+ +

Implemented in Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.

+ +
+
+
The documentation for this interface was generated from the following file: +
+ + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.map b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.map new file mode 100644 index 0000000000..b457c784f3 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.map @@ -0,0 +1,4 @@ + + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.md5 b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.md5 new file mode 100644 index 0000000000..1e3f47cb77 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.md5 @@ -0,0 +1 @@ +345368f8708cea95e81fa648afdf268b \ No newline at end of file diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.png b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.png new file mode 100644 index 0000000000..451e98269d Binary files /dev/null and b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager__inherit__graph.png differ diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.map b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.map new file mode 100644 index 0000000000..4e132d8452 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.map @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.md5 b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.md5 new file mode 100644 index 0000000000..6fe8217562 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.md5 @@ -0,0 +1 @@ +b8281c3287547069222f38f738f99d40 \ No newline at end of file diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.png b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.png new file mode 100644 index 0000000000..4814b98294 Binary files /dev/null and b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a1be750d6c4665373d98645a890db78fb_icgraph.png differ diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.map b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.map new file mode 100644 index 0000000000..3dc3dc1129 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.map @@ -0,0 +1,6 @@ + + + + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.md5 b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.md5 new file mode 100644 index 0000000000..cf2808a61a --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.md5 @@ -0,0 +1 @@ +0bf55ab332c088a2719ef2535637f05b \ No newline at end of file diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.png b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.png new file mode 100644 index 0000000000..095d66d694 Binary files /dev/null and b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a21fcd146642b9e85afa1e7870b43ffbb_icgraph.png differ diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.map b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.map new file mode 100644 index 0000000000..83bd3c534d --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.map @@ -0,0 +1,5 @@ + + + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.md5 b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.md5 new file mode 100644 index 0000000000..8d9d744554 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.md5 @@ -0,0 +1 @@ +3794f11941d44f019c718c3a99b96b87 \ No newline at end of file diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.png b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.png new file mode 100644 index 0000000000..b4f3fb7537 Binary files /dev/null and b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_a76685fabd65c52827bbbf22ce2b148da_icgraph.png differ diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.map b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.map new file mode 100644 index 0000000000..3cdb5194ed --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.map @@ -0,0 +1,4 @@ + + + + diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.md5 b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.md5 new file mode 100644 index 0000000000..005e100193 --- /dev/null +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.md5 @@ -0,0 +1 @@ +bf3fb6a0e35ff79c7b27155dbd5e081b \ No newline at end of file diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.png b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.png new file mode 100644 index 0000000000..e457594c05 Binary files /dev/null and b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager_ad7f5e3391e59c578b004c57f4706df35_icgraph.png differ diff --git a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider-members.html b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider-members.html index b3f9094063..d778fea417 100644 --- a/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider-members.html +++ b/interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider-members.html @@ -3,7 +3,7 @@ - + tgstation-server: Member List @@ -23,7 +23,7 @@ Logo
tgstation-server -  4.4.2 +  4.5.0
The /tg/station 13 server suite
@@ -32,7 +32,7 @@ - + diff --git a/search/all_0.js b/search/all_0.js index 1ed0780bc8..2e9fdd71a0 100644 --- a/search/all_0.js +++ b/search/all_0.js @@ -97,5 +97,13 @@ var searchData= ['20200705163624_5fpgallownulldmapi_2ecs_94',['20200705163624_PGAllowNullDMApi.cs',['../20200705163624___p_g_allow_null_d_m_api_8cs.html',1,'']]], ['20200705163624_5fpgallownulldmapi_2edesigner_2ecs_95',['20200705163624_PGAllowNullDMApi.Designer.cs',['../20200705163624___p_g_allow_null_d_m_api_8_designer_8cs.html',1,'']]], ['20200705163700_5fslallownulldmapi_2ecs_96',['20200705163700_SLAllowNullDMApi.cs',['../20200705163700___s_l_allow_null_d_m_api_8cs.html',1,'']]], - ['20200705163700_5fslallownulldmapi_2edesigner_2ecs_97',['20200705163700_SLAllowNullDMApi.Designer.cs',['../20200705163700___s_l_allow_null_d_m_api_8_designer_8cs.html',1,'']]] + ['20200705163700_5fslallownulldmapi_2edesigner_2ecs_97',['20200705163700_SLAllowNullDMApi.Designer.cs',['../20200705163700___s_l_allow_null_d_m_api_8_designer_8cs.html',1,'']]], + ['20200807213255_5fmsadddeploymentcolumns_2ecs_98',['20200807213255_MSAddDeploymentColumns.cs',['../20200807213255___m_s_add_deployment_columns_8cs.html',1,'']]], + ['20200807213255_5fmsadddeploymentcolumns_2edesigner_2ecs_99',['20200807213255_MSAddDeploymentColumns.Designer.cs',['../20200807213255___m_s_add_deployment_columns_8_designer_8cs.html',1,'']]], + ['20200807213742_5fmyadddeploymentcolumns_2ecs_100',['20200807213742_MYAddDeploymentColumns.cs',['../20200807213742___m_y_add_deployment_columns_8cs.html',1,'']]], + ['20200807213742_5fmyadddeploymentcolumns_2edesigner_2ecs_101',['20200807213742_MYAddDeploymentColumns.Designer.cs',['../20200807213742___m_y_add_deployment_columns_8_designer_8cs.html',1,'']]], + ['20200807214330_5fpgadddeploymentcolumns_2ecs_102',['20200807214330_PGAddDeploymentColumns.cs',['../20200807214330___p_g_add_deployment_columns_8cs.html',1,'']]], + ['20200807214330_5fpgadddeploymentcolumns_2edesigner_2ecs_103',['20200807214330_PGAddDeploymentColumns.Designer.cs',['../20200807214330___p_g_add_deployment_columns_8_designer_8cs.html',1,'']]], + ['20200807214754_5fsladddeploymentcolumns_2ecs_104',['20200807214754_SLAddDeploymentColumns.cs',['../20200807214754___s_l_add_deployment_columns_8cs.html',1,'']]], + ['20200807214754_5fsladddeploymentcolumns_2edesigner_2ecs_105',['20200807214754_SLAddDeploymentColumns.Designer.cs',['../20200807214754___s_l_add_deployment_columns_8_designer_8cs.html',1,'']]] ]; diff --git a/search/all_1.html b/search/all_1.html index 86b0682cc1..d7ef7cbc1e 100644 --- a/search/all_1.html +++ b/search/all_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_1.js b/search/all_1.js index 0d1a6d7513..16c94fc9b7 100644 --- a/search/all_1.js +++ b/search/all_1.js @@ -1,104 +1,107 @@ var searchData= [ - ['accept_98',['Accept',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efac4408d335012a56ff58937d78050efad',1,'Tgstation::Server::Api']]], - ['accessdenied_99',['AccessDenied',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#acb78a02b4881844e9412384563d9d78d',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], - ['accessidentifier_100',['AccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html#af84241c8eda4d8f7deddb9c5b7eb79a5',1,'Tgstation::Server::Host::Components::Interop::DMApiParameters']]], - ['accesstoken_101',['AccessToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acc5868ef8bebd88a8caa34c4f8f1fd86',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['accessuser_102',['AccessUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a99781fa636aa32efab9dea036e49de4e',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['activate_103',['Activate',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a9e14a1757415a90da51678d31c04a534',1,'Tgstation.Server.Host.Jobs.IJobManager.Activate()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a4b54a1259af63eab6dc7636d9cd05b79',1,'Tgstation.Server.Host.Jobs.JobManager.Activate()']]], - ['activationtcs_104',['activationTcs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aeb78e37489526b7e189bb43d526f88b2',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['active_105',['Active',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a16dba99b6423de5f247062c36178defe',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Active()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a98b88ea1bc4bcf37c41a2f4c966afaa0',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Active()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a3d3ac659fdfea9e5dec63881e6d320b7',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.active()']]], - ['activechatbots_106',['activeChatBots',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a3ca52a2da0df3c6f05614dc8e87a4ec0',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['activecompilejob_107',['ActiveCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a1ceac031ef985adfd469c07b5fef7c6b',1,'Tgstation.Server.Api.Models.DreamDaemon.ActiveCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a23f9971c8bc84a87cfaf08744eaaee0d',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5a4b8311c8cbd7cb851d1ade3bc27e05',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveCompileJob()']]], - ['activejob_108',['ActiveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#aa3c333554a7d7b7f731723afcf2160a3',1,'Tgstation::Server::Api::Models::Repository']]], - ['activelaunchparameters_109',['ActiveLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a19270c2054e4431802fdf5a59f9b3518',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a9affc2eeae2903d1bdb0fa81a6550fc4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveLaunchParameters()']]], - ['activelaunchparametersupdated_110',['ActiveLaunchParametersUpdated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a5787c2f334905254452c2c362bf5874b',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['activeparametersupdated_111',['ActiveParametersUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#afee401fd5e0d23482b77498b6ec23a03',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['activeservercrashed_112',['ActiveServerCrashed',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab92e148d2dd1c50669d594966a5ec6df',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['activeserverrebooted_113',['ActiveServerRebooted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab97165994c837a20e96ed22267cb1a86',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['activeswappable_114',['ActiveSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a0864d506e58d2f6a0f5f3e4d912e572a',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['activetestmerges_115',['ActiveTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#ad87669f877669c68429d4c0b7826adf2',1,'Tgstation.Server.Api.Models.RevisionInformation.ActiveTestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#af99d05ba09723bd09ef54434a3384daf',1,'Tgstation.Server.Host.Models.RevisionInformation.ActiveTestMerges()']]], - ['activeversion_116',['ActiveVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3e62e619b7e50c3b9c990952d7a426be',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#a4bbf7c36cfdbbbdc5a87813d0d6959f6',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ActiveVersion()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a33ebe5cafb9a3e5cfa0b6a0bf9f6070f',1,'Tgstation.Server.Client.Components.ByondClient.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a98f0743e5c383c7d301a4b436d298c72',1,'Tgstation.Server.Client.Components.IByondClient.ActiveVersion()']]], - ['activeversionfilename_117',['ActiveVersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a55d24d297ec0618cf0ecdd6fc0bd5a66',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['actualinstance_118',['actualInstance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a10bd2a064b5383bb3b636462ac849f81',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], - ['add_119',['Add',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a1ec8f79896fdd2504db07240249397ba',1,'Tgstation.Server.Host.Database.DatabaseCollection.Add()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#abd9cab598d35f6af8c789a1f01bba081',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Add()']]], - ['adddefaultresponses_120',['AddDefaultResponses',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a8d6a0a7ccf301a64e12a9e7120ed6a4d',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], - ['additionaldata_121',['AdditionalData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a6ebff98cc7118725387663fd3b85cde3',1,'Tgstation::Server::Api::Models::ErrorMessage']]], - ['additionalserverdata_122',['AdditionalServerData',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a15ba2ccaacd995deb459ac67b1ebd787',1,'Tgstation::Server::Client::ApiException']]], - ['addrange_123',['AddRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#afd205cf9b330ea48bc6e98eab1bad278',1,'Tgstation.Server.Host.Database.DatabaseCollection.AddRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ae3a21d5d69a8d8e906d31dc17be66cf6',1,'Tgstation.Server.Host.Database.IDatabaseCollection.AddRange()']]], - ['addreference_124',['AddReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a0b2156a1c28968cf0dd77e2ef3718ee2',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['addrequestlogger_125',['AddRequestLogger',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a139db37d2f5069e2940421a0cd12fd93',1,'Tgstation.Server.Client.ApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a55853418698889c9f90804d1e9067b51',1,'Tgstation.Server.Client.IApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa06d2eb21c87b01b2d195e3125cb7ccf',1,'Tgstation.Server.Client.IServerClient.AddRequestLogger()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a5b082a51331accc1d118b549c422169a',1,'Tgstation.Server.Client.ServerClient.AddRequestLogger()']]], - ['address_126',['address',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a5b89ca154b65b12e53b6dca3ceeb0243',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.address()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a802f4bc116fb4c464dd60cf8b054b974',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Address()']]], - ['addtestmerge_127',['AddTestMerge',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a05fcb2c19ab0f43a15264431a20790ec',1,'Tgstation.Server.Host.Components.Repository.IRepository.AddTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ab400805727fc1130c18a878f131edce1',1,'Tgstation.Server.Host.Components.Repository.Repository.AddTestMerge()']]], - ['addwatchdog_3c_20tsystemwatchdogfactory_20_3e_128',['AddWatchdog< TSystemWatchdogFactory >',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a3c750651b93228ec3e2776977545cec2',1,'Tgstation::Server::Host::Core::Application']]], - ['administration_129',['Administration',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html',1,'Tgstation.Server.Api.Models.Administration'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a1bd414117e790a954bd7bfb83c7d4fc9',1,'Tgstation.Server.Api.Routes.Administration()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a170097fe653238823c6a3c5a07c4ec94',1,'Tgstation.Server.Client.IServerClient.Administration()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#af81da913067b74f5e8098c6106fda1af',1,'Tgstation.Server.Client.ServerClient.Administration()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7258e7251413465e0a3eb58094430bde',1,'Tgstation.Server.Api.Rights.Administration()']]], - ['administration_2ecs_130',['Administration.cs',['../_administration_8cs.html',1,'']]], - ['administrationclient_131',['AdministrationClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html',1,'Tgstation.Server.Client.AdministrationClient'],['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa5d48433766cd2f29ee60007767f5387',1,'Tgstation.Server.Client.AdministrationClient.AdministrationClient()']]], - ['administrationclient_2ecs_132',['AdministrationClient.cs',['../_administration_client_8cs.html',1,'']]], - ['administrationcontroller_133',['AdministrationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html',1,'Tgstation.Server.Host.Controllers.AdministrationController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a977452509dbf4fd1cca139a0a968cf1c',1,'Tgstation.Server.Host.Controllers.AdministrationController.AdministrationController()']]], - ['administrationcontroller_2ecs_134',['AdministrationController.cs',['../_administration_controller_8cs.html',1,'']]], - ['administrationrights_135',['AdministrationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ad28e489fcb8df51b4ba2f5cdf5dd5d22',1,'Tgstation.Server.Api.Models.Internal.User.AdministrationRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21',1,'Tgstation.Server.Api.Rights.AdministrationRights()']]], - ['administrationrights_2ecs_136',['AdministrationRights.cs',['../_administration_rights_8cs.html',1,'']]], - ['adminname_137',['AdminName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a9a48baf4f5ea3e824d8dc489d3aa38f6',1,'Tgstation::Server::Api::Models::User']]], - ['adminonly_138',['AdminOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a42073a7395ce9de9b0de9d36e4d6f388',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a32556e6bc56cad31d993e4be70e7ca60',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.AdminOnly()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#a0872d9ed0ba21f3decc6d5303001fc8e',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ad69632c6b423bea790abde206d926425',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a63dc4a93cb647e14f40a613101d7335e',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a17094a94c993b8bbb5fdda8b7a470707',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a801fd1e205cb8e006fefcbf8af8e3b30',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.AdminOnly()']]], - ['allowanyorigin_139',['AllowAnyOrigin',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a5c0b28cdbd801a02bce701901a060818',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], - ['allowedorigins_140',['AllowedOrigins',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#afe978b9a640bef63953d313e3a483092',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], - ['allowunprivilegedcreate_141',['AllowUnprivilegedCreate',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556aa5039b48592e4eb0e0bcc4bebf94bdf8',1,'Tgstation::Server::Host::NativeMethods']]], - ['allowwebclient_142',['AllowWebClient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5f96244396a57f351043723b254803bc',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['allrights_3c_20tright_20_3e_143',['AllRights< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0f8605b0068c15bb5e80fae8f858e0db',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['alphaisactive_144',['AlphaIsActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae69887bebd2d65ed9157984bd4f53b7d',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.AlphaIsActive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#abbbd1824bcf972a1eb312c12780fc0bc',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.AlphaIsActive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39f77bb87d63b1a1a50aac89ad909f29',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AlphaIsActive()']]], - ['api_145',['Api',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa72664dc0959f3b0c04891f8c7046a9f3',1,'Tgstation.Server.Api.Api()'],['../api.html',1,'(Global Namespace)']]], - ['api_2edox_146',['API.dox',['../_a_p_i_8dox.html',1,'']]], - ['apiclient_147',['ApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html',1,'Tgstation.Server.Client.ApiClient'],['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa8fcfafea45fc308cd03fc312b49bbc9',1,'Tgstation.Server.Client.AdministrationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a295eaf549628214344fb27e81fba5541',1,'Tgstation.Server.Client.Components.ByondClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a6d24e075bdc11fb958a8b4621475b662',1,'Tgstation.Server.Client.Components.ChatBotsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a42e1a0711dec8d78fc370b30b1aacf80',1,'Tgstation.Server.Client.Components.ConfigurationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a877a9f75012ed5a6f8673e6ab152b7b8',1,'Tgstation.Server.Client.Components.DreamDaemonClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a15b39a0722ab7ba469ea002df87190a7',1,'Tgstation.Server.Client.Components.DreamMakerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#afe9a85e5c7dfa76fcd2ffdeecc388b34',1,'Tgstation.Server.Client.Components.InstanceUserClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#acd85788ba2647284a601f7cca2e3d8cb',1,'Tgstation.Server.Client.Components.JobsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a34759d9d0d89eab5def2d32cc90b7736',1,'Tgstation.Server.Client.Components.RepositoryClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a717fb098fea90adf6d93ae860e0420fe',1,'Tgstation.Server.Client.InstanceManagerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a20ec30223872220ef996f4219888f3cc',1,'Tgstation.Server.Client.ServerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a1d983fe53f4fef69d2ba676884d4ce8c',1,'Tgstation.Server.Client.UsersClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a89b74d94010decea93799b872e43a9b5',1,'Tgstation.Server.Client.ApiClient.ApiClient()']]], - ['apiclient_2ecs_148',['ApiClient.cs',['../_api_client_8cs.html',1,'']]], - ['apiclientfactory_149',['ApiClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html',1,'Tgstation.Server.Client.ApiClientFactory'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a1ce05c0c437fca7e62dd764346be53a0',1,'Tgstation.Server.Client.ServerClientFactory.ApiClientFactory()']]], - ['apiclientfactory_2ecs_150',['ApiClientFactory.cs',['../_api_client_factory_8cs.html',1,'']]], - ['apiconflictexception_151',['ApiConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html',1,'Tgstation.Server.Client.ApiConflictException'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a4b188d951fcd6bab69b98cdc60b72d8d',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ab4f3940b662b24b906bf15d94a0c64b9',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ac779b4eb27f674d0c804955a8bb50b4b',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a76b2d08f49a952c5693d785c379328e2',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message, Exception innerException)']]], - ['apiconflictexception_2ecs_152',['ApiConflictException.cs',['../_api_conflict_exception_8cs.html',1,'']]], - ['apicontroller_153',['ApiController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html',1,'Tgstation.Server.Host.Controllers.ApiController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a0f1d630ca60523c4684dce08a41b5aa8',1,'Tgstation.Server.Host.Controllers.ApiController.ApiController()']]], - ['apicontroller_2ecs_154',['ApiController.cs',['../_api_controller_8cs.html',1,'']]], - ['apiexception_155',['ApiException',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html',1,'Tgstation.Server.Client.ApiException'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#ad9234ddf1e8d85fc0deaf02a22539cb1',1,'Tgstation.Server.Client.ApiException.ApiException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a17155a36f4798421f6ae9c44add39a08',1,'Tgstation.Server.Client.ApiException.ApiException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a58f71c3c7a18641b8144f772068b976d',1,'Tgstation.Server.Client.ApiException.ApiException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a9dfbd90587b56d3db3e497db8b7a5ae1',1,'Tgstation.Server.Client.ApiException.ApiException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a36773be2804412a37326218e0005fa25',1,'Tgstation.Server.Client.ApiException.ApiException(string message, Exception innerException)']]], - ['apiexception_2ecs_156',['ApiException.cs',['../_api_exception_8cs.html',1,'']]], - ['apiheaders_157',['ApiHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html',1,'Tgstation.Server.Api.ApiHeaders'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a1934074118a6f4f9044b9da630c91a8e',1,'Tgstation.Server.Host.Controllers.ApiController.ApiHeaders()'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aee584e59a0c6535f1d3c60d620036253',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string token)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#ac6a606d30d1bd1cf066cd8f5d917df18',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string username, string password)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aa03245a124379bec7f0eb3fc672a4e43',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(RequestHeaders requestHeaders)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4a2a83ba38b9383b52360be0d3d8467e',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string? token, string? username, string? password)']]], - ['apiheaders_2ecs_158',['ApiHeaders.cs',['../_api_headers_8cs.html',1,'']]], - ['apimismatch_159',['ApiMismatch',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a034045c1b65adb43b709ea2f4e573951',1,'Tgstation::Server::Api::Models']]], - ['apiport_160',['ApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#abc34147a4a8a95c6578124b69c284a0b',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['apivalidateonly_161',['ApiValidateOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#aab2ba8e8c26c816abd9149e21c0d8e0c',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['apivalidationport_162',['ApiValidationPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a4b421130ab4c6b6836f8dfbf4f8df02e',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['apivalidationsecuritylevel_163',['ApiValidationSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#abfa04639a2bfa207aef060ca84a732da',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['apivalidationstatus_164',['apiValidationStatus',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a064fcf3631f763077ec127af368b0421',1,'Tgstation.Server.Host.Components.Session.SessionController.apiValidationStatus()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ab1fea6de9af52a5bc2457c53c6880dd2',1,'Tgstation.Server.Host.Components.Session.ISessionController.ApiValidationStatus()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a51d3dc3c09b2e42349df709de106bcdd',1,'Tgstation.Server.Host.Components.Session.SessionController.ApiValidationStatus()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3',1,'Tgstation.Server.Host.Components.Session.ApiValidationStatus()']]], - ['apivalidationstatus_2ecs_165',['ApiValidationStatus.cs',['../_api_validation_status_8cs.html',1,'']]], - ['apiversion_166',['ApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4769bf50b06d55b116a34cd1ffa04809',1,'Tgstation.Server.Api.ApiHeaders.ApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a7b5e0bbe634b1c4eccc4b1acd08723f0',1,'Tgstation.Server.Api.Models.ServerInformation.ApiVersion()']]], - ['apiversionheader_167',['ApiVersionHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a99649cb8fbf286c635b109e8373b415e',1,'Tgstation::Server::Api::ApiHeaders']]], - ['application_168',['Application',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html',1,'Tgstation.Server.Host.Core.Application'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#abc6f8677db1baf9744162670d4a02a6c',1,'Tgstation.Server.Host.Core.Application.Application()']]], - ['application_2ecs_169',['Application.cs',['../_application_8cs.html',1,'']]], - ['applicationbuilderextensions_170',['ApplicationBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['applicationbuilderextensions_2ecs_171',['ApplicationBuilderExtensions.cs',['../_application_builder_extensions_8cs.html',1,'']]], - ['applicationlifetime_172',['applicationLifetime',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ac7f7f7b49a557d032e3c42d5a9ff50c8',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['apply_173',['Apply',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a984ca98811591400b90fb6b13383e318',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Apply()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a050adcf275d869f1db4760d553fadb6e',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiOperation operation, OperationFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#ab65b4c6e4dbb553247a5d7524bd161a1',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a4773a3d72f5dfce0b7f88a53e6abf4d0',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiSchema schema, SchemaFilterContext context)']]], - ['applyupdate_174',['ApplyUpdate',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a08e0b784b8a22398a183e759446bf5f3',1,'Tgstation.Server.Host.Core.IServerControl.ApplyUpdate()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a38345c5b5fc217b03e0142dc8513e0cd',1,'Tgstation.Server.Host.Server.ApplyUpdate()']]], - ['architecture_2edox_175',['Architecture.dox',['../_architecture_8dox.html',1,'']]], - ['assemblyinfo_2ecs_176',['AssemblyInfo.cs',['../_tgstation_8_server_8_client_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html',1,'(Global Namespace)']]], - ['assemblyinformationprovider_177',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html',1,'Tgstation.Server.Host.System.AssemblyInformationProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a0925181fde55747dca42c360486eb949',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a2804521ce43e4dae665f0dfe31afa8c6',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a73f7fae07fc8d7efc90b6464dc2eca79',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#af165dfbe55239bcb1d705bddbed7c01f',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ac44fead7dfc02bdd99aea10b729e82ed',1,'Tgstation.Server.Host.Components.InstanceFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa335c25ccb65f93242424c79396a29dc',1,'Tgstation.Server.Host.Components.InstanceManager.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8dbd5a414f211bbb1b0c63c5666568b8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a4e26166b0342015cc789ec8f897e3f65',1,'Tgstation.Server.Host.Controllers.AdministrationController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a36878504836ee1bd7b7a57f7e3d31192',1,'Tgstation.Server.Host.Controllers.HomeController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a6ba17c2ceda75c9d153d15893712446f',1,'Tgstation.Server.Host.Core.GitHubClientFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a387f7728fad0a77333cbb190d18b400d',1,'Tgstation.Server.Host.ServerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a5851a0d869fb5b874b39106af947c661',1,'Tgstation.Server.Host.Setup.SetupWizard.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a160a8959deda71c27f974a9c0321dd27',1,'Tgstation.Server.Host.Setup.SetupApplication.AssemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a5fd81262bcc6aeecc0608b630f96ced4',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.AssemblyInformationProvider()']]], - ['assemblyinformationprovider_2ecs_178',['AssemblyInformationProvider.cs',['../_assembly_information_provider_8cs.html',1,'']]], - ['assemblyname_179',['AssemblyName',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#acc064dcbf2348cfcf44d06acff499977',1,'Tgstation::Server::Api::ApiHeaders']]], - ['asyncdelayer_180',['AsyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html',1,'Tgstation.Server.Host.Core.AsyncDelayer'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a50f199a025fe456b6bb63c9eaa18a07a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aa5bf6331a8aa3e9587376c9574910e86',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a154b7cf302e0d4b39d338846a851b898',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a07009731bbb9ae0df5a4c315189b5ccb',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad6f992fed638980594fd5a6c45b8946b',1,'Tgstation.Server.Host.Components.InstanceManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a9ae1ecab8e3826302aa8d692c0d659d1',1,'Tgstation.Server.Host.Security.IdentityCache.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#ad5a557224dd5d8eac2a46dec133509fb',1,'Tgstation.Server.Host.Security.TokenFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae12ec09822e867ea3dd0f99e7357f329',1,'Tgstation.Server.Host.Setup.SetupWizard.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a0a1974764838ef42c9d2faa8dd8580b9',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abbdc59de3b3556a08bd111264527f369',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AsyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a6cba03dd228358338743984da7c2da6a',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.AsyncDelayer()']]], - ['asyncdelayer_2ecs_181',['AsyncDelayer.cs',['../_async_delayer_8cs.html',1,'']]], - ['attach_182',['Attach',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a3222695f8bba56c62ced6340ebf14619',1,'Tgstation.Server.Host.Database.DatabaseCollection.Attach()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a05e77420e74de1e7739eadcd7c9c8070',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Attach()']]], - ['attachexithandler_183',['AttachExitHandler',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5b7c65480cf6cb9573ea1eca15f49add',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['attachexithandlerbeforelaunch_184',['AttachExitHandlerBeforeLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5f9469bcfa64fb349af62686e31c8a1e',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['attribute_185',['Attribute',['../class_attribute.html',1,'']]], - ['authenticationcontext_186',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html',1,'Tgstation.Server.Host.Security.AuthenticationContext'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#af37f0d0021bc861bea5444108a4de87d',1,'Tgstation.Server.Host.Controllers.ApiController.AuthenticationContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a238c36a23b55ce8e76b471e35600a7e3',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a997a651219197de91ceb799db4a340d2',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext(ISystemIdentity systemIdentity, User user, InstanceUser instanceUser)']]], - ['authenticationcontext_2ecs_187',['AuthenticationContext.cs',['../_authentication_context_8cs.html',1,'']]], - ['authenticationcontextfactory_188',['AuthenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a65b9d8be87a72903d74d266180612800',1,'Tgstation.Server.Host.Security.ClaimsInjector.authenticationContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6c113f16defdec6ead7cc8507c4d6c95',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.AuthenticationContextFactory()']]], - ['authenticationcontextfactory_2ecs_189',['AuthenticationContextFactory.cs',['../_authentication_context_factory_8cs.html',1,'']]], - ['author_190',['Author',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a649bf71827e0aeed08a49c3baada64ca',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], - ['authorization_191',['Authorization',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa9cd8a2455b1839ff98ef70c05b9b5983',1,'Tgstation::Server::Api']]], - ['authorizeattribute_192',['AuthorizeAttribute',['../class_authorize_attribute.html',1,'']]], - ['autodetect_193',['Autodetect',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1aa0f56afccfad0701bc1076f838655233',1,'Tgstation::Server::Host::Configuration']]], - ['autostart_194',['AutoStart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html#ad042a8ceccbcbed55dfabbdebd45b162',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonSettings.AutoStart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a410f168d84f80c138450fb42f222ba01',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.autoStart()']]], - ['autoupdateinterval_195',['AutoUpdateInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#aebe907c68112eae3f1ac2dfdf384ec5b',1,'Tgstation::Server::Api::Models::Instance']]], - ['autoupdateskeeptestmerges_196',['AutoUpdatesKeepTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad376f28c643709a12b1a95196f4fe38f',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['autoupdatessynchronize_197',['AutoUpdatesSynchronize',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a771f7bdc30a0f666c1eaba7210dfb690',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['available_198',['Available',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a7fede11791f3ad6ab39f29cb5ce0075c',1,'Tgstation.Server.Host.IO.Console.Available()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ab35fa75560527910780645de7dc54ca8',1,'Tgstation.Server.Host.IO.IConsole.Available()']]] + ['accept_106',['Accept',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efac4408d335012a56ff58937d78050efad',1,'Tgstation::Server::Api']]], + ['accessdenied_107',['AccessDenied',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#acb78a02b4881844e9412384563d9d78d',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], + ['accessidentifier_108',['AccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html#af84241c8eda4d8f7deddb9c5b7eb79a5',1,'Tgstation::Server::Host::Components::Interop::DMApiParameters']]], + ['accesstoken_109',['AccessToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acc5868ef8bebd88a8caa34c4f8f1fd86',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['accessuser_110',['AccessUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a99781fa636aa32efab9dea036e49de4e',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['activate_111',['Activate',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a9e14a1757415a90da51678d31c04a534',1,'Tgstation.Server.Host.Jobs.IJobManager.Activate()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a4b54a1259af63eab6dc7636d9cd05b79',1,'Tgstation.Server.Host.Jobs.JobManager.Activate()']]], + ['activationtcs_112',['activationTcs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aeb78e37489526b7e189bb43d526f88b2',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['active_113',['Active',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a16dba99b6423de5f247062c36178defe',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Active()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a98b88ea1bc4bcf37c41a2f4c966afaa0',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Active()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a3d3ac659fdfea9e5dec63881e6d320b7',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.active()']]], + ['activechatbots_114',['activeChatBots',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a3ca52a2da0df3c6f05614dc8e87a4ec0',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['activecompilejob_115',['ActiveCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a1ceac031ef985adfd469c07b5fef7c6b',1,'Tgstation.Server.Api.Models.DreamDaemon.ActiveCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a23f9971c8bc84a87cfaf08744eaaee0d',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5a4b8311c8cbd7cb851d1ade3bc27e05',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveCompileJob()']]], + ['activejob_116',['ActiveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#aa3c333554a7d7b7f731723afcf2160a3',1,'Tgstation::Server::Api::Models::Repository']]], + ['activelaunchparameters_117',['ActiveLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a19270c2054e4431802fdf5a59f9b3518',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a9affc2eeae2903d1bdb0fa81a6550fc4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveLaunchParameters()']]], + ['activelaunchparametersupdated_118',['ActiveLaunchParametersUpdated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a5787c2f334905254452c2c362bf5874b',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['activeparametersupdated_119',['ActiveParametersUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#afee401fd5e0d23482b77498b6ec23a03',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['activeservercrashed_120',['ActiveServerCrashed',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab92e148d2dd1c50669d594966a5ec6df',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['activeserverrebooted_121',['ActiveServerRebooted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab97165994c837a20e96ed22267cb1a86',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['activeswappable_122',['ActiveSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a0864d506e58d2f6a0f5f3e4d912e572a',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['activetestmerges_123',['ActiveTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#ad87669f877669c68429d4c0b7826adf2',1,'Tgstation.Server.Api.Models.RevisionInformation.ActiveTestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#af99d05ba09723bd09ef54434a3384daf',1,'Tgstation.Server.Host.Models.RevisionInformation.ActiveTestMerges()']]], + ['activeversion_124',['ActiveVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3e62e619b7e50c3b9c990952d7a426be',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#a4bbf7c36cfdbbbdc5a87813d0d6959f6',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ActiveVersion()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a33ebe5cafb9a3e5cfa0b6a0bf9f6070f',1,'Tgstation.Server.Client.Components.ByondClient.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a98f0743e5c383c7d301a4b436d298c72',1,'Tgstation.Server.Client.Components.IByondClient.ActiveVersion()']]], + ['activeversionfilename_125',['ActiveVersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a55d24d297ec0618cf0ecdd6fc0bd5a66',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['actualinstance_126',['actualInstance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a10bd2a064b5383bb3b636462ac849f81',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], + ['add_127',['Add',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a1ec8f79896fdd2504db07240249397ba',1,'Tgstation.Server.Host.Database.DatabaseCollection.Add()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#abd9cab598d35f6af8c789a1f01bba081',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Add()']]], + ['adddefaultresponses_128',['AddDefaultResponses',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a8d6a0a7ccf301a64e12a9e7120ed6a4d',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], + ['adddreamdaemontofirewall_129',['AddDreamDaemonToFirewall',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a6e7516f6939712dc72c480a31b87a3d8',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['additionaldata_130',['AdditionalData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a6ebff98cc7118725387663fd3b85cde3',1,'Tgstation::Server::Api::Models::ErrorMessage']]], + ['additionalserverdata_131',['AdditionalServerData',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a15ba2ccaacd995deb459ac67b1ebd787',1,'Tgstation::Server::Client::ApiException']]], + ['addrange_132',['AddRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#afd205cf9b330ea48bc6e98eab1bad278',1,'Tgstation.Server.Host.Database.DatabaseCollection.AddRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ae3a21d5d69a8d8e906d31dc17be66cf6',1,'Tgstation.Server.Host.Database.IDatabaseCollection.AddRange()']]], + ['addreference_133',['AddReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a0b2156a1c28968cf0dd77e2ef3718ee2',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['addrequestlogger_134',['AddRequestLogger',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a139db37d2f5069e2940421a0cd12fd93',1,'Tgstation.Server.Client.ApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a55853418698889c9f90804d1e9067b51',1,'Tgstation.Server.Client.IApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa06d2eb21c87b01b2d195e3125cb7ccf',1,'Tgstation.Server.Client.IServerClient.AddRequestLogger()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a5b082a51331accc1d118b549c422169a',1,'Tgstation.Server.Client.ServerClient.AddRequestLogger()']]], + ['address_135',['address',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a5b89ca154b65b12e53b6dca3ceeb0243',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.address()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a802f4bc116fb4c464dd60cf8b054b974',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Address()']]], + ['addtestmerge_136',['AddTestMerge',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a05fcb2c19ab0f43a15264431a20790ec',1,'Tgstation.Server.Host.Components.Repository.IRepository.AddTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ab400805727fc1130c18a878f131edce1',1,'Tgstation.Server.Host.Components.Repository.Repository.AddTestMerge()']]], + ['addwatchdog_3c_20tsystemwatchdogfactory_20_3e_137',['AddWatchdog< TSystemWatchdogFactory >',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a3c750651b93228ec3e2776977545cec2',1,'Tgstation::Server::Host::Core::Application']]], + ['administration_138',['Administration',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html',1,'Tgstation.Server.Api.Models.Administration'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a1bd414117e790a954bd7bfb83c7d4fc9',1,'Tgstation.Server.Api.Routes.Administration()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a170097fe653238823c6a3c5a07c4ec94',1,'Tgstation.Server.Client.IServerClient.Administration()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#af81da913067b74f5e8098c6106fda1af',1,'Tgstation.Server.Client.ServerClient.Administration()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7258e7251413465e0a3eb58094430bde',1,'Tgstation.Server.Api.Rights.Administration()']]], + ['administration_2ecs_139',['Administration.cs',['../_administration_8cs.html',1,'']]], + ['administrationclient_140',['AdministrationClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html',1,'Tgstation.Server.Client.AdministrationClient'],['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa5d48433766cd2f29ee60007767f5387',1,'Tgstation.Server.Client.AdministrationClient.AdministrationClient()']]], + ['administrationclient_2ecs_141',['AdministrationClient.cs',['../_administration_client_8cs.html',1,'']]], + ['administrationcontroller_142',['AdministrationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html',1,'Tgstation.Server.Host.Controllers.AdministrationController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a977452509dbf4fd1cca139a0a968cf1c',1,'Tgstation.Server.Host.Controllers.AdministrationController.AdministrationController()']]], + ['administrationcontroller_2ecs_143',['AdministrationController.cs',['../_administration_controller_8cs.html',1,'']]], + ['administrationrights_144',['AdministrationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ad28e489fcb8df51b4ba2f5cdf5dd5d22',1,'Tgstation.Server.Api.Models.Internal.User.AdministrationRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21',1,'Tgstation.Server.Api.Rights.AdministrationRights()']]], + ['administrationrights_2ecs_145',['AdministrationRights.cs',['../_administration_rights_8cs.html',1,'']]], + ['adminname_146',['AdminName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a9a48baf4f5ea3e824d8dc489d3aa38f6',1,'Tgstation::Server::Api::Models::User']]], + ['adminonly_147',['AdminOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a42073a7395ce9de9b0de9d36e4d6f388',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a32556e6bc56cad31d993e4be70e7ca60',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.AdminOnly()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#a0872d9ed0ba21f3decc6d5303001fc8e',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ad69632c6b423bea790abde206d926425',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a63dc4a93cb647e14f40a613101d7335e',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a17094a94c993b8bbb5fdda8b7a470707',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a801fd1e205cb8e006fefcbf8af8e3b30',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.AdminOnly()']]], + ['allowanyorigin_148',['AllowAnyOrigin',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a5c0b28cdbd801a02bce701901a060818',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], + ['allowedorigins_149',['AllowedOrigins',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#afe978b9a640bef63953d313e3a483092',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], + ['allowunprivilegedcreate_150',['AllowUnprivilegedCreate',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556aa5039b48592e4eb0e0bcc4bebf94bdf8',1,'Tgstation::Server::Host::NativeMethods']]], + ['allowwebclient_151',['AllowWebClient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5f96244396a57f351043723b254803bc',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['allrights_3c_20tright_20_3e_152',['AllRights< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0f8605b0068c15bb5e80fae8f858e0db',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['alphaisactive_153',['AlphaIsActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae69887bebd2d65ed9157984bd4f53b7d',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.AlphaIsActive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#abbbd1824bcf972a1eb312c12780fc0bc',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.AlphaIsActive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39f77bb87d63b1a1a50aac89ad909f29',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AlphaIsActive()']]], + ['always_154',['Always',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221a68eec46437c384d8dad18d5464ebc35c',1,'Tgstation::Server::Api::Models']]], + ['api_155',['Api',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa72664dc0959f3b0c04891f8c7046a9f3',1,'Tgstation.Server.Api.Api()'],['../api.html',1,'(Global Namespace)']]], + ['api_2edox_156',['API.dox',['../_a_p_i_8dox.html',1,'']]], + ['apiclient_157',['ApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html',1,'Tgstation.Server.Client.ApiClient'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a89b74d94010decea93799b872e43a9b5',1,'Tgstation.Server.Client.ApiClient.ApiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa8fcfafea45fc308cd03fc312b49bbc9',1,'Tgstation.Server.Client.AdministrationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a295eaf549628214344fb27e81fba5541',1,'Tgstation.Server.Client.Components.ByondClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a6d24e075bdc11fb958a8b4621475b662',1,'Tgstation.Server.Client.Components.ChatBotsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a42e1a0711dec8d78fc370b30b1aacf80',1,'Tgstation.Server.Client.Components.ConfigurationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a877a9f75012ed5a6f8673e6ab152b7b8',1,'Tgstation.Server.Client.Components.DreamDaemonClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a15b39a0722ab7ba469ea002df87190a7',1,'Tgstation.Server.Client.Components.DreamMakerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#afe9a85e5c7dfa76fcd2ffdeecc388b34',1,'Tgstation.Server.Client.Components.InstanceUserClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#acd85788ba2647284a601f7cca2e3d8cb',1,'Tgstation.Server.Client.Components.JobsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a34759d9d0d89eab5def2d32cc90b7736',1,'Tgstation.Server.Client.Components.RepositoryClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a717fb098fea90adf6d93ae860e0420fe',1,'Tgstation.Server.Client.InstanceManagerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a20ec30223872220ef996f4219888f3cc',1,'Tgstation.Server.Client.ServerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a1d983fe53f4fef69d2ba676884d4ce8c',1,'Tgstation.Server.Client.UsersClient.apiClient()']]], + ['apiclient_2ecs_158',['ApiClient.cs',['../_api_client_8cs.html',1,'']]], + ['apiclientfactory_159',['ApiClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html',1,'Tgstation.Server.Client.ApiClientFactory'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a1ce05c0c437fca7e62dd764346be53a0',1,'Tgstation.Server.Client.ServerClientFactory.ApiClientFactory()']]], + ['apiclientfactory_2ecs_160',['ApiClientFactory.cs',['../_api_client_factory_8cs.html',1,'']]], + ['apiconflictexception_161',['ApiConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html',1,'Tgstation.Server.Client.ApiConflictException'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a4b188d951fcd6bab69b98cdc60b72d8d',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ab4f3940b662b24b906bf15d94a0c64b9',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ac779b4eb27f674d0c804955a8bb50b4b',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a76b2d08f49a952c5693d785c379328e2',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message, Exception innerException)']]], + ['apiconflictexception_2ecs_162',['ApiConflictException.cs',['../_api_conflict_exception_8cs.html',1,'']]], + ['apicontroller_163',['ApiController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html',1,'Tgstation.Server.Host.Controllers.ApiController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a0f1d630ca60523c4684dce08a41b5aa8',1,'Tgstation.Server.Host.Controllers.ApiController.ApiController()']]], + ['apicontroller_2ecs_164',['ApiController.cs',['../_api_controller_8cs.html',1,'']]], + ['apiexception_165',['ApiException',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html',1,'Tgstation.Server.Client.ApiException'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#ad9234ddf1e8d85fc0deaf02a22539cb1',1,'Tgstation.Server.Client.ApiException.ApiException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a17155a36f4798421f6ae9c44add39a08',1,'Tgstation.Server.Client.ApiException.ApiException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a58f71c3c7a18641b8144f772068b976d',1,'Tgstation.Server.Client.ApiException.ApiException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a9dfbd90587b56d3db3e497db8b7a5ae1',1,'Tgstation.Server.Client.ApiException.ApiException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a36773be2804412a37326218e0005fa25',1,'Tgstation.Server.Client.ApiException.ApiException(string message, Exception innerException)']]], + ['apiexception_2ecs_166',['ApiException.cs',['../_api_exception_8cs.html',1,'']]], + ['apiheaders_167',['ApiHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html',1,'Tgstation.Server.Api.ApiHeaders'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a1934074118a6f4f9044b9da630c91a8e',1,'Tgstation.Server.Host.Controllers.ApiController.ApiHeaders()'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aee584e59a0c6535f1d3c60d620036253',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string token)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#ac6a606d30d1bd1cf066cd8f5d917df18',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string username, string password)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aa03245a124379bec7f0eb3fc672a4e43',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(RequestHeaders requestHeaders)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4a2a83ba38b9383b52360be0d3d8467e',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string? token, string? username, string? password)']]], + ['apiheaders_2ecs_168',['ApiHeaders.cs',['../_api_headers_8cs.html',1,'']]], + ['apimismatch_169',['ApiMismatch',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a034045c1b65adb43b709ea2f4e573951',1,'Tgstation::Server::Api::Models']]], + ['apiport_170',['ApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#abc34147a4a8a95c6578124b69c284a0b',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['apivalidateonly_171',['ApiValidateOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#aab2ba8e8c26c816abd9149e21c0d8e0c',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['apivalidationport_172',['ApiValidationPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a4b421130ab4c6b6836f8dfbf4f8df02e',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['apivalidationsecuritylevel_173',['ApiValidationSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#abfa04639a2bfa207aef060ca84a732da',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['apivalidationstatus_174',['ApiValidationStatus',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ab1fea6de9af52a5bc2457c53c6880dd2',1,'Tgstation.Server.Host.Components.Session.ISessionController.ApiValidationStatus()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a51d3dc3c09b2e42349df709de106bcdd',1,'Tgstation.Server.Host.Components.Session.SessionController.ApiValidationStatus()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a064fcf3631f763077ec127af368b0421',1,'Tgstation.Server.Host.Components.Session.SessionController.apiValidationStatus()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3',1,'Tgstation.Server.Host.Components.Session.ApiValidationStatus()']]], + ['apivalidationstatus_2ecs_175',['ApiValidationStatus.cs',['../_api_validation_status_8cs.html',1,'']]], + ['apiversion_176',['ApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4769bf50b06d55b116a34cd1ffa04809',1,'Tgstation.Server.Api.ApiHeaders.ApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a7b5e0bbe634b1c4eccc4b1acd08723f0',1,'Tgstation.Server.Api.Models.ServerInformation.ApiVersion()']]], + ['apiversionheader_177',['ApiVersionHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a99649cb8fbf286c635b109e8373b415e',1,'Tgstation::Server::Api::ApiHeaders']]], + ['application_178',['Application',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html',1,'Tgstation.Server.Host.Core.Application'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#abc6f8677db1baf9744162670d4a02a6c',1,'Tgstation.Server.Host.Core.Application.Application()']]], + ['application_2ecs_179',['Application.cs',['../_application_8cs.html',1,'']]], + ['applicationbuilderextensions_180',['ApplicationBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['applicationbuilderextensions_2ecs_181',['ApplicationBuilderExtensions.cs',['../_application_builder_extensions_8cs.html',1,'']]], + ['applicationlifetime_182',['applicationLifetime',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ac7f7f7b49a557d032e3c42d5a9ff50c8',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['apply_183',['Apply',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a984ca98811591400b90fb6b13383e318',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Apply()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a050adcf275d869f1db4760d553fadb6e',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiOperation operation, OperationFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#ab65b4c6e4dbb553247a5d7524bd161a1',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a4773a3d72f5dfce0b7f88a53e6abf4d0',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiSchema schema, SchemaFilterContext context)']]], + ['applydeployment_184',['ApplyDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a5aa949ec78f0769f380efb03634c9f86',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.ApplyDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a21fcd146642b9e85afa1e7870b43ffbb',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.ApplyDeployment()']]], + ['applyupdate_185',['ApplyUpdate',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a08e0b784b8a22398a183e759446bf5f3',1,'Tgstation.Server.Host.Core.IServerControl.ApplyUpdate()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a38345c5b5fc217b03e0142dc8513e0cd',1,'Tgstation.Server.Host.Server.ApplyUpdate()']]], + ['architecture_2edox_186',['Architecture.dox',['../_architecture_8dox.html',1,'']]], + ['assemblyinfo_2ecs_187',['AssemblyInfo.cs',['../_tgstation_8_server_8_client_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html',1,'(Global Namespace)']]], + ['assemblyinformationprovider_188',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html',1,'Tgstation.Server.Host.System.AssemblyInformationProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a160a8959deda71c27f974a9c0321dd27',1,'Tgstation.Server.Host.Setup.SetupApplication.AssemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a5fd81262bcc6aeecc0608b630f96ced4',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.AssemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a0925181fde55747dca42c360486eb949',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a2804521ce43e4dae665f0dfe31afa8c6',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a73f7fae07fc8d7efc90b6464dc2eca79',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#af165dfbe55239bcb1d705bddbed7c01f',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ac44fead7dfc02bdd99aea10b729e82ed',1,'Tgstation.Server.Host.Components.InstanceFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa335c25ccb65f93242424c79396a29dc',1,'Tgstation.Server.Host.Components.InstanceManager.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8dbd5a414f211bbb1b0c63c5666568b8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a4e26166b0342015cc789ec8f897e3f65',1,'Tgstation.Server.Host.Controllers.AdministrationController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a36878504836ee1bd7b7a57f7e3d31192',1,'Tgstation.Server.Host.Controllers.HomeController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a6ba17c2ceda75c9d153d15893712446f',1,'Tgstation.Server.Host.Core.GitHubClientFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a387f7728fad0a77333cbb190d18b400d',1,'Tgstation.Server.Host.ServerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a5851a0d869fb5b874b39106af947c661',1,'Tgstation.Server.Host.Setup.SetupWizard.assemblyInformationProvider()']]], + ['assemblyinformationprovider_2ecs_189',['AssemblyInformationProvider.cs',['../_assembly_information_provider_8cs.html',1,'']]], + ['assemblyname_190',['AssemblyName',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#acc064dcbf2348cfcf44d06acff499977',1,'Tgstation.Server.Api.ApiHeaders.AssemblyName()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a243bb96f99b715968e25fca18cb9f682',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.AssemblyName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a681c879b4ff73db055cd6fd39cb590b7',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.AssemblyName()']]], + ['asyncdelayer_191',['AsyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html',1,'Tgstation.Server.Host.Core.AsyncDelayer'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a50f199a025fe456b6bb63c9eaa18a07a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aa5bf6331a8aa3e9587376c9574910e86',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a154b7cf302e0d4b39d338846a851b898',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a07009731bbb9ae0df5a4c315189b5ccb',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad6f992fed638980594fd5a6c45b8946b',1,'Tgstation.Server.Host.Components.InstanceManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a9ae1ecab8e3826302aa8d692c0d659d1',1,'Tgstation.Server.Host.Security.IdentityCache.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#ad5a557224dd5d8eac2a46dec133509fb',1,'Tgstation.Server.Host.Security.TokenFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae12ec09822e867ea3dd0f99e7357f329',1,'Tgstation.Server.Host.Setup.SetupWizard.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a0a1974764838ef42c9d2faa8dd8580b9',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abbdc59de3b3556a08bd111264527f369',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AsyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a6cba03dd228358338743984da7c2da6a',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.AsyncDelayer()']]], + ['asyncdelayer_2ecs_192',['AsyncDelayer.cs',['../_async_delayer_8cs.html',1,'']]], + ['attach_193',['Attach',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a3222695f8bba56c62ced6340ebf14619',1,'Tgstation.Server.Host.Database.DatabaseCollection.Attach()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a05e77420e74de1e7739eadcd7c9c8070',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Attach()']]], + ['attachexithandler_194',['AttachExitHandler',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5b7c65480cf6cb9573ea1eca15f49add',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['attachexithandlerbeforelaunch_195',['AttachExitHandlerBeforeLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5f9469bcfa64fb349af62686e31c8a1e',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['attribute_196',['Attribute',['../class_attribute.html',1,'']]], + ['authenticationcontext_197',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html',1,'Tgstation.Server.Host.Security.AuthenticationContext'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#af37f0d0021bc861bea5444108a4de87d',1,'Tgstation.Server.Host.Controllers.ApiController.AuthenticationContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a238c36a23b55ce8e76b471e35600a7e3',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a997a651219197de91ceb799db4a340d2',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext(ISystemIdentity systemIdentity, User user, InstanceUser instanceUser)']]], + ['authenticationcontext_2ecs_198',['AuthenticationContext.cs',['../_authentication_context_8cs.html',1,'']]], + ['authenticationcontextfactory_199',['AuthenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a65b9d8be87a72903d74d266180612800',1,'Tgstation.Server.Host.Security.ClaimsInjector.authenticationContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6c113f16defdec6ead7cc8507c4d6c95',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.AuthenticationContextFactory()']]], + ['authenticationcontextfactory_2ecs_200',['AuthenticationContextFactory.cs',['../_authentication_context_factory_8cs.html',1,'']]], + ['author_201',['Author',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a649bf71827e0aeed08a49c3baada64ca',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], + ['authorization_202',['Authorization',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa9cd8a2455b1839ff98ef70c05b9b5983',1,'Tgstation::Server::Api']]], + ['authorizeattribute_203',['AuthorizeAttribute',['../class_authorize_attribute.html',1,'']]], + ['autodetect_204',['Autodetect',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1aa0f56afccfad0701bc1076f838655233',1,'Tgstation::Server::Host::Configuration']]], + ['autostart_205',['AutoStart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html#ad042a8ceccbcbed55dfabbdebd45b162',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonSettings.AutoStart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a410f168d84f80c138450fb42f222ba01',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.autoStart()']]], + ['autoupdateinterval_206',['AutoUpdateInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#aebe907c68112eae3f1ac2dfdf384ec5b',1,'Tgstation::Server::Api::Models::Instance']]], + ['autoupdateskeeptestmerges_207',['AutoUpdatesKeepTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad376f28c643709a12b1a95196f4fe38f',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['autoupdatessynchronize_208',['AutoUpdatesSynchronize',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a771f7bdc30a0f666c1eaba7210dfb690',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['available_209',['Available',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a7fede11791f3ad6ab39f29cb5ce0075c',1,'Tgstation.Server.Host.IO.Console.Available()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ab35fa75560527910780645de7dc54ca8',1,'Tgstation.Server.Host.IO.IConsole.Available()']]] ]; diff --git a/search/all_10.html b/search/all_10.html index b9106743b3..1e41e2820d 100644 --- a/search/all_10.html +++ b/search/all_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_10.js b/search/all_10.js index 17017f1bc6..65adc17b80 100644 --- a/search/all_10.js +++ b/search/all_10.js @@ -1,101 +1,102 @@ var searchData= [ - ['paramaccessidentifier_1378',['ParamAccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#aa076c322d7bee2b5d7da67093a9dabff',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['paramapiversion_1379',['ParamApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#ab930f933c33983f0c21c6dd614b896ec',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['parameters_1380',['Parameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#a5d3f8f2bd6cfb079bf693a1fc3339a65',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], - ['params_1381',['Params',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a50a65dc64b139a5eb1a46d47753f0bf9',1,'Tgstation::Server::Host::Components::Interop::Topic::ChatCommand']]], - ['paramserverport_1382',['ParamServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a8dcd2fa9f5a2900252b878d8ad560796',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['password_1383',['Password',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#afedffb739a04c51b5669d24635dd3603',1,'Tgstation.Server.Api.ApiHeaders.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a638c83a7d2e9db3598992e40b018e22b',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html#a1bd65e40d9b440d99b26caae734697f8',1,'Tgstation.Server.Api.Models.UserUpdate.Password()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0af57fc7dec5c5f69ae6ba15756031a7',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.password()']]], - ['passwordhash_1384',['PasswordHash',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#ab5648b7f95630ff37ad8b0ddd72c1f54',1,'Tgstation::Server::Host::Models::User']]], - ['passwordhasher_1385',['passwordHasher',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#ad519d6aa46f39a52f9a7b50e0f181fd9',1,'Tgstation::Server::Host::Security::CryptographySuite']]], - ['passwordsecurityschemeid_1386',['PasswordSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#aea41db6a784ee697f5507a6e3ee5990b',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], - ['passwordtype_1387',['PasswordType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7291f32770eaa19de8067a41a1f15509',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.PasswordType()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6d496510a7558d62c26d917a51226264',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.passwordType()']]], - ['patch_1388',['Patch',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a74b6a4ca1f94c325e9fbc29296f9d674',1,'Tgstation.Server.Client.ApiClient.Patch()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae5ddeabc517efcf180f7286ead8158f5',1,'Tgstation.Server.Client.IApiClient.Patch()']]], - ['patch_3c_20tresult_20_3e_1389',['Patch< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a2c706947515724ff353a3b1422815ff8',1,'Tgstation.Server.Client.ApiClient.Patch< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a28294924cb1336289469fbfa5de2f61f',1,'Tgstation.Server.Client.IApiClient.Patch< TResult >()']]], - ['path_1390',['Path',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a19126e46ab252c271f06077ab214385c',1,'Tgstation.Server.Api.Models.ConfigurationFile.Path()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a833e5307625344be5429bcccca5b4318',1,'Tgstation.Server.Api.Models.Instance.Path()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a4ee4d18b244ceb1e969256a6de69ee74',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Path()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a49dad396bc16dcecc22c246e1706966a',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Path()']]], - ['pathcontainsparentaccess_1391',['PathContainsParentAccess',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#aa2dfcb05f73420f251547ae0108b3222',1,'Tgstation.Server.Host.IO.DefaultIOManager.PathContainsParentAccess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af05931d02f5f5d95b87a56c0cc60d855',1,'Tgstation.Server.Host.IO.IIOManager.PathContainsParentAccess()']]], - ['pathtouserbyondfolder_1392',['PathToUserByondFolder',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a679ae28275514213de77b1f1a2fc94ff',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.PathToUserByondFolder()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a239c00a7b10d38aab58b77dc6c503c09',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5d0fd8482fc3a61bbfd4256790221c1',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a33cd48c2466cb881a29eb910717f24ef',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.PathToUserByondFolder()']]], - ['pendingswappable_1393',['pendingSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a1e9fdb7045235885318ab5bc309bdec3',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['pgallownulldmapi_1394',['PGAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['pgcreate_1395',['PGCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['pgremoveexperimentalwatchdog_1396',['PGRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['pgtopictimeout_1397',['PGTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['platformidentifier_1398',['PlatformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html',1,'Tgstation.Server.Host.System.PlatformIdentifier'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#ae3c16b681516ee65f1270f13ea435086',1,'Tgstation.Server.Host.Setup.IPostSetupServices.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a8c3e2e92797805caa52543a95c435a8a',1,'Tgstation.Server.Host.Setup.PostSetupServices.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ab29c252e971636fca5893880d01f9595',1,'Tgstation.Server.Host.System.PlatformIdentifier.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a3c8f7e67bf286c73dd25994db7ed31a5',1,'Tgstation.Server.Host.Components.InstanceFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3ac5f067400fe019d8375fffc0e83dee',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9103478c93c69deb31f3549ab04dcc84',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aab5c882433d208418174394df71cfab4',1,'Tgstation.Server.Host.Controllers.AdministrationController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ac62c0b1b0e346409b20c3054d4a8354a',1,'Tgstation.Server.Host.Controllers.InstanceController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a9b30ce06ad99c07d9405020656cc3a1d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa225e153a659c2ebdde2e69dc9c46458',1,'Tgstation.Server.Host.Setup.SetupWizard.platformIdentifier()']]], - ['platformidentifier_2ecs_1399',['PlatformIdentifier.cs',['../_platform_identifier_8cs.html',1,'']]], - ['populateapi_1400',['PopulateApi',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a169541f29e0361eaba0bf8ba85624f10',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], - ['port_1401',['Port',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a00af90c86ba9ced8f7b718cea098892b',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Port()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a099e5c3fd62567ff0be2526a94943822',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Port()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#afcf987dfdf8f483388bfd832582c6a8b',1,'Tgstation.Server.Host.Models.ReattachInformationBase.Port()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0a16e9a0617d8e75740478a5d68a4420',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.port()']]], - ['portassignmenttcs_1402',['portAssignmentTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#add75954615d8857ffa74ac387d2941c8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['portbindtest_1403',['PortBindTest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#ad09ef01b75b51e2c4509bbe1e26265a3',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['portclosedforreboot_1404',['portClosedForReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aad62f26263e191e8dd7e658f227128b8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['portupdate_1405',['PortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da07c70f002c020dbbf271b086039983ee',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['posixbyondinstaller_1406',['PosixByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5b90fdbd196609a846fb761671b7346',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.PosixByondInstaller()']]], - ['posixbyondinstaller_2ecs_1407',['PosixByondInstaller.cs',['../_posix_byond_installer_8cs.html',1,'']]], - ['posixnetworkpromptreaper_1408',['PosixNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], - ['posixnetworkpromptreaper_2ecs_1409',['PosixNetworkPromptReaper.cs',['../_posix_network_prompt_reaper_8cs.html',1,'']]], - ['posixpostwritehandler_1410',['PosixPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a25f458ab180e8c101a465aff3b1c70d8',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.PosixPostWriteHandler()']]], - ['posixpostwritehandler_2ecs_1411',['PosixPostWriteHandler.cs',['../_posix_post_write_handler_8cs.html',1,'']]], - ['posixprocessfeatures_1412',['PosixProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html',1,'Tgstation.Server.Host.System.PosixProcessFeatures'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a5c76e566e66544a36a2bab1650903201',1,'Tgstation.Server.Host.System.PosixProcessFeatures.PosixProcessFeatures()']]], - ['posixprocessfeatures_2ecs_1413',['PosixProcessFeatures.cs',['../_posix_process_features_8cs.html',1,'']]], - ['posixsymlinkfactory_1414',['PosixSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], - ['posixsymlinkfactory_2ecs_1415',['PosixSymlinkFactory.cs',['../_posix_symlink_factory_8cs.html',1,'']]], - ['posixsystemidentity_1416',['PosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html',1,'Tgstation::Server::Host::Security']]], - ['posixsystemidentity_2ecs_1417',['PosixSystemIdentity.cs',['../_posix_system_identity_8cs.html',1,'']]], - ['posixsystemidentityfactory_1418',['PosixSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], - ['posixsystemidentityfactory_2ecs_1419',['PosixSystemIdentityFactory.cs',['../_posix_system_identity_factory_8cs.html',1,'']]], - ['posixwatchdog_1420',['PosixWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a3ff39a96ed66843bcb93efaf90629e82',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.PosixWatchdog()']]], - ['posixwatchdog_2ecs_1421',['PosixWatchdog.cs',['../_posix_watchdog_8cs.html',1,'']]], - ['posixwatchdogfactory_1422',['PosixWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#a2fb5ecdeefbbd75536c60de92b128136',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory.PosixWatchdogFactory()']]], - ['posixwatchdogfactory_2ecs_1423',['PosixWatchdogFactory.cs',['../_posix_watchdog_factory_8cs.html',1,'']]], - ['postdeployfailure_1424',['PostDeployFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aeefdaf630484c27f44b218cacd77c325',1,'Tgstation::Server::Api::Models']]], - ['postdeploymentcomments_1425',['PostDeploymentComments',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a7f309d059cbae88ab6941cf4b8f8e3f6',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['postgressql_1426',['PostgresSql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca322a60732eb9fd493923ee7e5db231b0',1,'Tgstation::Server::Host::Configuration']]], - ['postgressqldatabasecontext_1427',['PostgresSqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a095ca8d3b284f60a8d0ded862559d5e9',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.PostgresSqlDatabaseContext()']]], - ['postgressqldatabasecontext_2ecs_1428',['PostgresSqlDatabaseContext.cs',['../_postgres_sql_database_context_8cs.html',1,'']]], - ['postgressqldatabasecontextmodelsnapshot_1429',['PostgresSqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['postgressqldatabasecontextmodelsnapshot_2ecs_1430',['PostgresSqlDatabaseContextModelSnapshot.cs',['../_postgres_sql_database_context_model_snapshot_8cs.html',1,'']]], - ['postgressqldesigntimedbcontextfactory_1431',['PostgresSqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['postgressqldesigntimedbcontextfactory_2ecs_1432',['PostgresSqlDesignTimeDbContextFactory.cs',['../_postgres_sql_design_time_db_context_factory_8cs.html',1,'']]], - ['postsetupservices_1433',['PostSetupServices',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html',1,'Tgstation.Server.Host.Setup.PostSetupServices'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#ae51e94325327c0b9bc6b30a2f3b59d89',1,'Tgstation.Server.Host.Setup.PostSetupServices.PostSetupServices()']]], - ['postsetupservices_2ecs_1434',['PostSetupServices.cs',['../_post_setup_services_8cs.html',1,'']]], - ['posttestmergecomment_1435',['PostTestMergeComment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acdaf4f19af7d330bcbf35c3cb240b50c',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['postwritehandler_1436',['postWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#abaa57b4cd2fdf1ea15b08b81ccd88023',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aca83a69059579020791c6d62721c08fd',1,'Tgstation.Server.Host.Components.InstanceFactory.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9070bfae5692e48611c410eeef52c7af',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.postWriteHandler()']]], - ['prepserverforlaunch_1437',['PrepServerForLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a9d89e8d95f629745bccad09d1fe5cf72',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.PrepServerForLaunch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#abb0bc53000b1d8c7555e765c9c30ce5d',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.PrepServerForLaunch()']]], - ['pressanykeyasync_1438',['PressAnyKeyAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad10bdc2971cb4068b3fe0d46aa7cb167',1,'Tgstation.Server.Host.IO.Console.PressAnyKeyAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ad674c458bbe343698fb0da3494bf3e37',1,'Tgstation.Server.Host.IO.IConsole.PressAnyKeyAsync()']]], - ['primaryrevisioninformation_1439',['PrimaryRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a4fb69a83c0ff12c00dc7db7905003709',1,'Tgstation::Server::Host::Models::TestMerge']]], - ['primaryrevisioninformationid_1440',['PrimaryRevisionInformationId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a1f5f380223b363e413f2f8b9ba29a4b2',1,'Tgstation::Server::Host::Models::TestMerge']]], - ['primarytestmerge_1441',['PrimaryTestMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#a5883f14371465c56231dfd50b96e8e0c',1,'Tgstation.Server.Api.Models.RevisionInformation.PrimaryTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#adbe03f25ff741698ab92816bf7b511c5',1,'Tgstation.Server.Host.Models.RevisionInformation.PrimaryTestMerge()']]], - ['prime_1442',['Prime',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91dabe7938e9a87618a98a7b6b47e12aa44b',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['primetcs_1443',['primeTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a524400c2981d28ac310a509e2c6d9732',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['process_1444',['Process',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html',1,'Tgstation.Server.Host.System.Process'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a1dd8fca5d57be939d8d04d4723788639',1,'Tgstation.Server.Host.Controllers.BridgeController.Process()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab03872788d0872e02ce5521a113eb9a9',1,'Tgstation.Server.Host.System.Process.Process()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#af72f0ef89d2933aacb840b4371a5d55c',1,'Tgstation.Server.Host.Components.Session.SessionController.process()']]], - ['process_2ecs_1445',['Process.cs',['../_process_8cs.html',1,'']]], - ['processbridgerequest_1446',['ProcessBridgeRequest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abd9eb0f8c590b9983279300be002d40e',1,'Tgstation.Server.Host.Components.InstanceManager.ProcessBridgeRequest()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html#aedd0ce59a5bb9d3692f73e92715798c3',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeDispatcher.ProcessBridgeRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#addf10bdb560585e28933161df7e31fef',1,'Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeRequest()']]], - ['processexecutor_1447',['ProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html',1,'Tgstation.Server.Host.System.ProcessExecutor'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a391667cca8308cb0adb27851434cb3fe',1,'Tgstation.Server.Host.System.ProcessExecutor.ProcessExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a9ddafa8d405709ae20f157c9041b4b01',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8d40fb1d02610364e59b9feedb4e75d9',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a5fdcd121985cce7d20f2d61e0ea5eca4',1,'Tgstation.Server.Host.Components.InstanceFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a1e5abb3512c946d17d762285046b6e56',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a1e099a9da77ecb396147ac6c4e85f4f0',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a0eb31611253abc0c887ec46f1e9b8611',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.processExecutor()']]], - ['processexecutor_2ecs_1448',['ProcessExecutor.cs',['../_process_executor_8cs.html',1,'']]], - ['processfeatures_1449',['processFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b740e7d72723a6e5fce40acf040c9',1,'Tgstation.Server.Host.System.Process.processFeatures()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a53a69845e62419a4db84ef86445d1eba',1,'Tgstation.Server.Host.System.ProcessExecutor.processFeatures()']]], - ['processid_1450',['ProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a6f8d698913ca0c40775eaa9a1ec8a787',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], - ['processmessage_1451',['ProcessMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13d3a724fb03c4546b7af6162336809c',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['productheadervalue_1452',['productHeaderValue',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a5db19a315f04b37200db2761f678661b',1,'Tgstation::Server::Client::ServerClientFactory']]], - ['program_1453',['Program',['../class_tgstation_1_1_server_1_1_host_1_1_console_1_1_program.html',1,'Tgstation.Server.Host.Console.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html',1,'Tgstation.Server.Host.Service.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_program.html',1,'Tgstation.Server.Host.Program']]], - ['program_2ecs_1454',['Program.cs',['../_tgstation_8_server_8_host_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_program_8cs.html',1,'(Global Namespace)']]], - ['programshutdowntokensource_1455',['ProgramShutdownTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ae6e3154f8ad5a672194b2956a31a4f39',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.ProgramShutdownTokenSource()']]], - ['programshutdowntokensource_2ecs_1456',['ProgramShutdownTokenSource.cs',['../_program_shutdown_token_source_8cs.html',1,'']]], - ['progress_1457',['Progress',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a2c9ae1e6331880d2f0f198c16f574e4f',1,'Tgstation.Server.Api.Models.Job.Progress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a2fd90e399dd18e309edc6e5ac57e51ac',1,'Tgstation.Server.Host.Jobs.JobHandler.Progress()']]], - ['progresstask_1458',['ProgressTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#af770863bfb53db309853603081906b38',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['projectname_1459',['ProjectName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#af01fda66da42a1569974fb5fc4c6b28a',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['promptdatabasetype_1460',['PromptDatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a523da4e381dbb3c7240fe93b54a40200',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['promptforhostingport_1461',['PromptForHostingPort',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a0f4102d1095435755cb344476fdfa422',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['promptyesno_1462',['PromptYesNo',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2b5172f9969a8c21d0f5c98bf362f610',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['propagatedexception_1463',['propagatedException',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6541983f401f2c25c474573a2d28235c',1,'Tgstation::Server::Host::Server']]], - ['provider_1464',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#aa1c996d380be8d91b5042b6e1286b443',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Provider()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a710f3756c50252da5daf3e4659feebd6',1,'Tgstation.Server.Host.Database.DatabaseCollection.Provider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ad53cc84796c5c7ef5d27b41367ac9ec5',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Provider()']]], - ['provider_2ecs_1465',['Provider.cs',['../_provider_8cs.html',1,'']]], - ['providerchannelid_1466',['ProviderChannelId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#af9b20c51cf6dad7a37b048111026abcf',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], - ['providerfactory_1467',['ProviderFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a2311cda575e4fc3fa7b41569da67cbc3',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.ProviderFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13f4e387e7b5419193b74e1ae3cd0fb5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.providerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aed9aa464cbd392d024e4247355aa0cb8',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.providerFactory()']]], - ['providerfactory_2ecs_1468',['ProviderFactory.cs',['../_provider_factory_8cs.html',1,'']]], - ['providerid_1469',['ProviderId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a647f007fe6e42d97d736747f6069c584',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], - ['providers_1470',['providers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a38995278392e0456fe18f7605959099a',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['pullrequestrevision_1471',['PullRequestRevision',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a78ca66f1f622a1fa4de1b0d593c0af73',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], - ['pullrequestscommand_1472',['PullRequestsCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a96ba3e78b38424740cda93576b897bf6',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.PullRequestsCommand()']]], - ['pullrequestscommand_2ecs_1473',['PullRequestsCommand.cs',['../_pull_requests_command_8cs.html',1,'']]], - ['pushheadtotemporarybranch_1474',['PushHeadToTemporaryBranch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a96553d378f9b7d9cfc4eb169f12bdba7',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['pushtestmergecommits_1475',['PushTestMergeCommits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a80ce424c357f9823d79245f509403807',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]] + ['paramaccessidentifier_1422',['ParamAccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#aa076c322d7bee2b5d7da67093a9dabff',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['paramapiversion_1423',['ParamApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#ab930f933c33983f0c21c6dd614b896ec',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['parameters_1424',['Parameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#a5d3f8f2bd6cfb079bf693a1fc3339a65',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], + ['params_1425',['Params',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a50a65dc64b139a5eb1a46d47753f0bf9',1,'Tgstation::Server::Host::Components::Interop::Topic::ChatCommand']]], + ['paramserverport_1426',['ParamServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a8dcd2fa9f5a2900252b878d8ad560796',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['password_1427',['password',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0af57fc7dec5c5f69ae6ba15756031a7',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.password()'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#afedffb739a04c51b5669d24635dd3603',1,'Tgstation.Server.Api.ApiHeaders.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a638c83a7d2e9db3598992e40b018e22b',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html#a1bd65e40d9b440d99b26caae734697f8',1,'Tgstation.Server.Api.Models.UserUpdate.Password()']]], + ['passwordhash_1428',['PasswordHash',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#ab5648b7f95630ff37ad8b0ddd72c1f54',1,'Tgstation::Server::Host::Models::User']]], + ['passwordhasher_1429',['passwordHasher',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#ad519d6aa46f39a52f9a7b50e0f181fd9',1,'Tgstation::Server::Host::Security::CryptographySuite']]], + ['passwordsecurityschemeid_1430',['PasswordSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#aea41db6a784ee697f5507a6e3ee5990b',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], + ['passwordtype_1431',['passwordType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6d496510a7558d62c26d917a51226264',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.passwordType()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7291f32770eaa19de8067a41a1f15509',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.PasswordType()']]], + ['patch_1432',['Patch',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a74b6a4ca1f94c325e9fbc29296f9d674',1,'Tgstation.Server.Client.ApiClient.Patch()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae5ddeabc517efcf180f7286ead8158f5',1,'Tgstation.Server.Client.IApiClient.Patch()']]], + ['patch_3c_20tresult_20_3e_1433',['Patch< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a2c706947515724ff353a3b1422815ff8',1,'Tgstation.Server.Client.ApiClient.Patch< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a28294924cb1336289469fbfa5de2f61f',1,'Tgstation.Server.Client.IApiClient.Patch< TResult >()']]], + ['path_1434',['Path',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a19126e46ab252c271f06077ab214385c',1,'Tgstation.Server.Api.Models.ConfigurationFile.Path()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a833e5307625344be5429bcccca5b4318',1,'Tgstation.Server.Api.Models.Instance.Path()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a4ee4d18b244ceb1e969256a6de69ee74',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Path()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a49dad396bc16dcecc22c246e1706966a',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Path()']]], + ['pathcontainsparentaccess_1435',['PathContainsParentAccess',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#aa2dfcb05f73420f251547ae0108b3222',1,'Tgstation.Server.Host.IO.DefaultIOManager.PathContainsParentAccess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af05931d02f5f5d95b87a56c0cc60d855',1,'Tgstation.Server.Host.IO.IIOManager.PathContainsParentAccess()']]], + ['pathtouserbyondfolder_1436',['PathToUserByondFolder',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a679ae28275514213de77b1f1a2fc94ff',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.PathToUserByondFolder()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a239c00a7b10d38aab58b77dc6c503c09',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5d0fd8482fc3a61bbfd4256790221c1',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a33cd48c2466cb881a29eb910717f24ef',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.PathToUserByondFolder()']]], + ['pendingswappable_1437',['pendingSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a1e9fdb7045235885318ab5bc309bdec3',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['pgadddeploymentcolumns_1438',['PGAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgallownulldmapi_1439',['PGAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgcreate_1440',['PGCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgremoveexperimentalwatchdog_1441',['PGRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgtopictimeout_1442',['PGTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['platformidentifier_1443',['PlatformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html',1,'Tgstation.Server.Host.System.PlatformIdentifier'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a3c8f7e67bf286c73dd25994db7ed31a5',1,'Tgstation.Server.Host.Components.InstanceFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3ac5f067400fe019d8375fffc0e83dee',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9103478c93c69deb31f3549ab04dcc84',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aab5c882433d208418174394df71cfab4',1,'Tgstation.Server.Host.Controllers.AdministrationController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ac62c0b1b0e346409b20c3054d4a8354a',1,'Tgstation.Server.Host.Controllers.InstanceController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a9b30ce06ad99c07d9405020656cc3a1d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa225e153a659c2ebdde2e69dc9c46458',1,'Tgstation.Server.Host.Setup.SetupWizard.platformIdentifier()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#ae3c16b681516ee65f1270f13ea435086',1,'Tgstation.Server.Host.Setup.IPostSetupServices.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a8c3e2e92797805caa52543a95c435a8a',1,'Tgstation.Server.Host.Setup.PostSetupServices.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ab29c252e971636fca5893880d01f9595',1,'Tgstation.Server.Host.System.PlatformIdentifier.PlatformIdentifier()']]], + ['platformidentifier_2ecs_1444',['PlatformIdentifier.cs',['../_platform_identifier_8cs.html',1,'']]], + ['populateapi_1445',['PopulateApi',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a169541f29e0361eaba0bf8ba85624f10',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], + ['port_1446',['Port',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a00af90c86ba9ced8f7b718cea098892b',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Port()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a099e5c3fd62567ff0be2526a94943822',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Port()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#afcf987dfdf8f483388bfd832582c6a8b',1,'Tgstation.Server.Host.Models.ReattachInformationBase.Port()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0a16e9a0617d8e75740478a5d68a4420',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.port()']]], + ['portassignmenttcs_1447',['portAssignmentTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#add75954615d8857ffa74ac387d2941c8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['portbindtest_1448',['PortBindTest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#ad09ef01b75b51e2c4509bbe1e26265a3',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['portclosedforreboot_1449',['portClosedForReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aad62f26263e191e8dd7e658f227128b8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['portupdate_1450',['PortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da07c70f002c020dbbf271b086039983ee',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['posixbyondinstaller_1451',['PosixByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5b90fdbd196609a846fb761671b7346',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.PosixByondInstaller()']]], + ['posixbyondinstaller_2ecs_1452',['PosixByondInstaller.cs',['../_posix_byond_installer_8cs.html',1,'']]], + ['posixnetworkpromptreaper_1453',['PosixNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], + ['posixnetworkpromptreaper_2ecs_1454',['PosixNetworkPromptReaper.cs',['../_posix_network_prompt_reaper_8cs.html',1,'']]], + ['posixpostwritehandler_1455',['PosixPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a25f458ab180e8c101a465aff3b1c70d8',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.PosixPostWriteHandler()']]], + ['posixpostwritehandler_2ecs_1456',['PosixPostWriteHandler.cs',['../_posix_post_write_handler_8cs.html',1,'']]], + ['posixprocessfeatures_1457',['PosixProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html',1,'Tgstation.Server.Host.System.PosixProcessFeatures'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a5c76e566e66544a36a2bab1650903201',1,'Tgstation.Server.Host.System.PosixProcessFeatures.PosixProcessFeatures()']]], + ['posixprocessfeatures_2ecs_1458',['PosixProcessFeatures.cs',['../_posix_process_features_8cs.html',1,'']]], + ['posixsymlinkfactory_1459',['PosixSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], + ['posixsymlinkfactory_2ecs_1460',['PosixSymlinkFactory.cs',['../_posix_symlink_factory_8cs.html',1,'']]], + ['posixsystemidentity_1461',['PosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html',1,'Tgstation::Server::Host::Security']]], + ['posixsystemidentity_2ecs_1462',['PosixSystemIdentity.cs',['../_posix_system_identity_8cs.html',1,'']]], + ['posixsystemidentityfactory_1463',['PosixSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], + ['posixsystemidentityfactory_2ecs_1464',['PosixSystemIdentityFactory.cs',['../_posix_system_identity_factory_8cs.html',1,'']]], + ['posixwatchdog_1465',['PosixWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#abfb1902505d671187445b1dc4ffbb324',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.PosixWatchdog()']]], + ['posixwatchdog_2ecs_1466',['PosixWatchdog.cs',['../_posix_watchdog_8cs.html',1,'']]], + ['posixwatchdogfactory_1467',['PosixWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#a2fb5ecdeefbbd75536c60de92b128136',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory.PosixWatchdogFactory()']]], + ['posixwatchdogfactory_2ecs_1468',['PosixWatchdogFactory.cs',['../_posix_watchdog_factory_8cs.html',1,'']]], + ['postdeployfailure_1469',['PostDeployFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aeefdaf630484c27f44b218cacd77c325',1,'Tgstation::Server::Api::Models']]], + ['postdeploymentcomments_1470',['PostDeploymentComments',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a6694947398e5e8ed314a7b0891aa9003',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['postgressql_1471',['PostgresSql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca322a60732eb9fd493923ee7e5db231b0',1,'Tgstation::Server::Host::Configuration']]], + ['postgressqldatabasecontext_1472',['PostgresSqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a095ca8d3b284f60a8d0ded862559d5e9',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.PostgresSqlDatabaseContext()']]], + ['postgressqldatabasecontext_2ecs_1473',['PostgresSqlDatabaseContext.cs',['../_postgres_sql_database_context_8cs.html',1,'']]], + ['postgressqldatabasecontextmodelsnapshot_1474',['PostgresSqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['postgressqldatabasecontextmodelsnapshot_2ecs_1475',['PostgresSqlDatabaseContextModelSnapshot.cs',['../_postgres_sql_database_context_model_snapshot_8cs.html',1,'']]], + ['postgressqldesigntimedbcontextfactory_1476',['PostgresSqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['postgressqldesigntimedbcontextfactory_2ecs_1477',['PostgresSqlDesignTimeDbContextFactory.cs',['../_postgres_sql_design_time_db_context_factory_8cs.html',1,'']]], + ['postsetupservices_1478',['PostSetupServices',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html',1,'Tgstation.Server.Host.Setup.PostSetupServices'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#ae51e94325327c0b9bc6b30a2f3b59d89',1,'Tgstation.Server.Host.Setup.PostSetupServices.PostSetupServices()']]], + ['postsetupservices_2ecs_1479',['PostSetupServices.cs',['../_post_setup_services_8cs.html',1,'']]], + ['posttestmergecomment_1480',['PostTestMergeComment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acdaf4f19af7d330bcbf35c3cb240b50c',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['postwritehandler_1481',['postWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#abaa57b4cd2fdf1ea15b08b81ccd88023',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aca83a69059579020791c6d62721c08fd',1,'Tgstation.Server.Host.Components.InstanceFactory.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9070bfae5692e48611c410eeef52c7af',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.postWriteHandler()']]], + ['prepserverforlaunch_1482',['PrepServerForLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a9d89e8d95f629745bccad09d1fe5cf72',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.PrepServerForLaunch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#abb0bc53000b1d8c7555e765c9c30ce5d',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.PrepServerForLaunch()']]], + ['pressanykeyasync_1483',['PressAnyKeyAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad10bdc2971cb4068b3fe0d46aa7cb167',1,'Tgstation.Server.Host.IO.Console.PressAnyKeyAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ad674c458bbe343698fb0da3494bf3e37',1,'Tgstation.Server.Host.IO.IConsole.PressAnyKeyAsync()']]], + ['primaryrevisioninformation_1484',['PrimaryRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a4fb69a83c0ff12c00dc7db7905003709',1,'Tgstation::Server::Host::Models::TestMerge']]], + ['primaryrevisioninformationid_1485',['PrimaryRevisionInformationId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a1f5f380223b363e413f2f8b9ba29a4b2',1,'Tgstation::Server::Host::Models::TestMerge']]], + ['primarytestmerge_1486',['PrimaryTestMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#a5883f14371465c56231dfd50b96e8e0c',1,'Tgstation.Server.Api.Models.RevisionInformation.PrimaryTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#adbe03f25ff741698ab92816bf7b511c5',1,'Tgstation.Server.Host.Models.RevisionInformation.PrimaryTestMerge()']]], + ['prime_1487',['Prime',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91dabe7938e9a87618a98a7b6b47e12aa44b',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['primetcs_1488',['primeTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a524400c2981d28ac310a509e2c6d9732',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['process_1489',['Process',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html',1,'Tgstation.Server.Host.System.Process'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#af72f0ef89d2933aacb840b4371a5d55c',1,'Tgstation.Server.Host.Components.Session.SessionController.process()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a1dd8fca5d57be939d8d04d4723788639',1,'Tgstation.Server.Host.Controllers.BridgeController.Process()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab03872788d0872e02ce5521a113eb9a9',1,'Tgstation.Server.Host.System.Process.Process()']]], + ['process_2ecs_1490',['Process.cs',['../_process_8cs.html',1,'']]], + ['processbridgerequest_1491',['ProcessBridgeRequest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abd9eb0f8c590b9983279300be002d40e',1,'Tgstation.Server.Host.Components.InstanceManager.ProcessBridgeRequest()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html#aedd0ce59a5bb9d3692f73e92715798c3',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeDispatcher.ProcessBridgeRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#addf10bdb560585e28933161df7e31fef',1,'Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeRequest()']]], + ['processexecutor_1492',['ProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html',1,'Tgstation.Server.Host.System.ProcessExecutor'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a391667cca8308cb0adb27851434cb3fe',1,'Tgstation.Server.Host.System.ProcessExecutor.ProcessExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a9ddafa8d405709ae20f157c9041b4b01',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8d40fb1d02610364e59b9feedb4e75d9',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a5fdcd121985cce7d20f2d61e0ea5eca4',1,'Tgstation.Server.Host.Components.InstanceFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a1e5abb3512c946d17d762285046b6e56',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a1e099a9da77ecb396147ac6c4e85f4f0',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a0eb31611253abc0c887ec46f1e9b8611',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.processExecutor()']]], + ['processexecutor_2ecs_1493',['ProcessExecutor.cs',['../_process_executor_8cs.html',1,'']]], + ['processfeatures_1494',['processFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b740e7d72723a6e5fce40acf040c9',1,'Tgstation.Server.Host.System.Process.processFeatures()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a53a69845e62419a4db84ef86445d1eba',1,'Tgstation.Server.Host.System.ProcessExecutor.processFeatures()']]], + ['processid_1495',['ProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a6f8d698913ca0c40775eaa9a1ec8a787',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], + ['processmessage_1496',['ProcessMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13d3a724fb03c4546b7af6162336809c',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['productheadervalue_1497',['productHeaderValue',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a5db19a315f04b37200db2761f678661b',1,'Tgstation::Server::Client::ServerClientFactory']]], + ['program_1498',['Program',['../class_tgstation_1_1_server_1_1_host_1_1_program.html',1,'Tgstation.Server.Host.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html',1,'Tgstation.Server.Host.Service.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_console_1_1_program.html',1,'Tgstation.Server.Host.Console.Program']]], + ['program_2ecs_1499',['Program.cs',['../_tgstation_8_server_8_host_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_program_8cs.html',1,'(Global Namespace)']]], + ['programshutdowntokensource_1500',['ProgramShutdownTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ae6e3154f8ad5a672194b2956a31a4f39',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.ProgramShutdownTokenSource()']]], + ['programshutdowntokensource_2ecs_1501',['ProgramShutdownTokenSource.cs',['../_program_shutdown_token_source_8cs.html',1,'']]], + ['progress_1502',['Progress',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a2c9ae1e6331880d2f0f198c16f574e4f',1,'Tgstation.Server.Api.Models.Job.Progress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a2fd90e399dd18e309edc6e5ac57e51ac',1,'Tgstation.Server.Host.Jobs.JobHandler.Progress()']]], + ['progresstask_1503',['ProgressTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#af770863bfb53db309853603081906b38',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['projectname_1504',['ProjectName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#af01fda66da42a1569974fb5fc4c6b28a',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['promptdatabasetype_1505',['PromptDatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a523da4e381dbb3c7240fe93b54a40200',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['promptforhostingport_1506',['PromptForHostingPort',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a0f4102d1095435755cb344476fdfa422',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['promptyesno_1507',['PromptYesNo',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2b5172f9969a8c21d0f5c98bf362f610',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['propagatedexception_1508',['propagatedException',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6541983f401f2c25c474573a2d28235c',1,'Tgstation::Server::Host::Server']]], + ['provider_1509',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#aa1c996d380be8d91b5042b6e1286b443',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Provider()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a710f3756c50252da5daf3e4659feebd6',1,'Tgstation.Server.Host.Database.DatabaseCollection.Provider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ad53cc84796c5c7ef5d27b41367ac9ec5',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Provider()']]], + ['provider_2ecs_1510',['Provider.cs',['../_provider_8cs.html',1,'']]], + ['providerchannelid_1511',['ProviderChannelId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#af9b20c51cf6dad7a37b048111026abcf',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], + ['providerfactory_1512',['ProviderFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13f4e387e7b5419193b74e1ae3cd0fb5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.providerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aed9aa464cbd392d024e4247355aa0cb8',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.providerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a2311cda575e4fc3fa7b41569da67cbc3',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.ProviderFactory()']]], + ['providerfactory_2ecs_1513',['ProviderFactory.cs',['../_provider_factory_8cs.html',1,'']]], + ['providerid_1514',['ProviderId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a647f007fe6e42d97d736747f6069c584',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], + ['providers_1515',['providers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a38995278392e0456fe18f7605959099a',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['pullrequestrevision_1516',['PullRequestRevision',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a78ca66f1f622a1fa4de1b0d593c0af73',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], + ['pullrequestscommand_1517',['PullRequestsCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a96ba3e78b38424740cda93576b897bf6',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.PullRequestsCommand()']]], + ['pullrequestscommand_2ecs_1518',['PullRequestsCommand.cs',['../_pull_requests_command_8cs.html',1,'']]], + ['pushheadtotemporarybranch_1519',['PushHeadToTemporaryBranch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a96553d378f9b7d9cfc4eb169f12bdba7',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['pushtestmergecommits_1520',['PushTestMergeCommits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a80ce424c357f9823d79245f509403807',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]] ]; diff --git a/search/all_11.html b/search/all_11.html index 459c97797d..e1a3710dc5 100644 --- a/search/all_11.html +++ b/search/all_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_11.js b/search/all_11.js index 97f062cbb8..e7a05d8852 100644 --- a/search/all_11.js +++ b/search/all_11.js @@ -1,4 +1,4 @@ var searchData= [ - ['querychannelidmap_1476',['queryChannelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa1d881a293f002c54c639ed5ed6f251d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]] + ['querychannelidmap_1521',['queryChannelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa1d881a293f002c54c639ed5ed6f251d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]] ]; diff --git a/search/all_12.html b/search/all_12.html index 290ee76ee2..3707262170 100644 --- a/search/all_12.html +++ b/search/all_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_12.js b/search/all_12.js index 7dd8296d77..af00123136 100644 --- a/search/all_12.js +++ b/search/all_12.js @@ -1,180 +1,181 @@ var searchData= [ - ['ratelimit_1477',['RateLimit',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac16c0fe44009a93f09d73f702f9844e9',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['ratelimitexception_1478',['RateLimitException',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html',1,'Tgstation.Server.Client.RateLimitException'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a2bbc9a674f25015db577af0b641af918',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a1bd82db7496764293896d95a761a5b1c',1,'Tgstation.Server.Client.RateLimitException.RateLimitException()'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#ab30825486f294c98083fb35043f5da0a',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(string message, Exception innerException)']]], - ['ratelimitexception_2ecs_1479',['RateLimitException.cs',['../_rate_limit_exception_8cs.html',1,'']]], - ['rawcheckout_1480',['RawCheckout',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ace81561f45095dabdd6969b281a2be08',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['rawdata_1481',['RawData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['rawdata_2ecs_1482',['RawData.cs',['../_raw_data_8cs.html',1,'']]], - ['rawuseragent_1483',['RawUserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a22828aaeba69d042e69d5add1e451e0d',1,'Tgstation::Server::Api::ApiHeaders']]], - ['read_1484',['Read',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a90fccaf2e24a3793a1c3892365415d63',1,'Tgstation.Server.Client.AdministrationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#adb77f8fd7a46572e3c1d6bd90e3e300c',1,'Tgstation.Server.Client.Components.ConfigurationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afcc1957f652e164e4f2e9e05ca84bc9d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aa2f286f3f548960f2f9f88f17eb31538',1,'Tgstation.Server.Client.Components.DreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a8f860a7b9851f7bcffa232fcf82eb109',1,'Tgstation.Server.Client.Components.IConfigurationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a1e6a43558dcadc261304053b63476323',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#ac0b3a15957db0648ca8425469e1983b0',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aae3394792a75d2690ff8038cb4e8007f',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ad1b39d718a1f3e635cf7ff8e24499d66',1,'Tgstation.Server.Client.Components.InstanceUserClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a5ec2d45a88691381a86f02d6a941f912',1,'Tgstation.Server.Client.Components.IRepositoryClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a37e9b08107bacf7d431b64ef3051fdc3',1,'Tgstation.Server.Client.Components.RepositoryClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a2e63dc96c5b580f348e76f014924c85f',1,'Tgstation.Server.Client.IAdministrationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#adfc947bf76c50385d043a46732cb1f75',1,'Tgstation.Server.Client.IUsersClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a7b9ce7489b2a8b3e7c8453580cfe95ff',1,'Tgstation.Server.Client.UsersClient.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ad62e7c4dde34d7c7d1039bcbf03c5b72',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Read()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a32086334958bd9009ec8eda200b9a200',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a10c3be25fd9ac418bcab6bb9541bbd69',1,'Tgstation.Server.Host.Controllers.AdministrationController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#aa62cf4ea9a81c3772cc64fade69c095d',1,'Tgstation.Server.Host.Controllers.ByondController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a233a666f5638e5bca70e51a2d38a4ba7',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a85e225aa92c30ff7e771c540a9672ba3',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#adb7e1f6c26a2e83339ae501c4ae955a3',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a9a93d9ca244bb4f65df3dde6c00ace7d',1,'Tgstation.Server.Host.Controllers.JobController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a0263b7f7bef9a5b23cdc52c3735af3c5',1,'Tgstation.Server.Host.Controllers.RepositoryController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ad82f699ed9786892700f4c9526eb06ad',1,'Tgstation.Server.Host.Controllers.UserController.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()']]], - ['read_3c_20tresult_20_3e_1485',['Read< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a1808561c1ec1ddac56ee78648788214c',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a90dffec712d3fea1328dd2b8cb4ce5b7',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae8bd028857ed8443176c7ac25edd18bd',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a95d05b8d2e00d2da463ec7d7e6e4e2ae',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], - ['readactive_1486',['ReadActive',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a3326023a4750bdbe33075fdad47d2a8d',1,'Tgstation::Server::Api::Rights']]], - ['readallbytes_1487',['ReadAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8b156fb1670e0f2f74bccdf040d2661c',1,'Tgstation.Server.Host.IO.DefaultIOManager.ReadAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6c0856abd25ea8e2096702aae37f2b0c',1,'Tgstation.Server.Host.IO.IIOManager.ReadAllBytes()']]], - ['readconnectionstring_1488',['ReadConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a1696551e4b826946427650d66b0a0c18',1,'Tgstation::Server::Api::Rights']]], - ['readfile_1489',['ReadFile',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a19577dc573076fd58ac1d55d682d5606',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.ReadFile()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ae7fb6512f77a65454cf2309a1c4eccdf',1,'Tgstation.Server.Host.IO.SynchronousIOManager.ReadFile()']]], - ['readimpl_1490',['ReadImpl',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a57e14f977d6bc474d831cf3b0f3f6332',1,'Tgstation::Server::Host::Controllers::DreamDaemonController']]], - ['readjson_1491',['ReadJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a9622c7856d8e0d90cb6b9a3b3f7ac14d',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.ReadJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#ae5dd36f7c8be5d7f6d19866d6ba1a49a',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.ReadJson()']]], - ['readlineasync_1492',['ReadLineAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad64d553f84d31d737bd00595fe6a122f',1,'Tgstation.Server.Host.IO.Console.ReadLineAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a5bdc0f5d449d520355dccb0f01cc0694',1,'Tgstation.Server.Host.IO.IConsole.ReadLineAsync()']]], - ['readme_2emd_1493',['README.md',['../_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v3210_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v4_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_api_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_client_app_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_events_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_session_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_watchdog_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_configuration_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_controllers_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_database_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_i_o_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_jobs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_security_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_setup_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_system_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)']]], - ['readmetadata_1494',['ReadMetadata',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6ac3e4ef171de3175ef0763a390eea05',1,'Tgstation::Server::Api::Rights']]], - ['readrevision_1495',['ReadRevision',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae49f7f612746455ed28b92600f4d973c',1,'Tgstation::Server::Api::Rights']]], - ['readusers_1496',['ReadUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()']]], - ['ready_1497',['Ready',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a4ad311358f74779a6c1f2fcba4a30578',1,'Tgstation.Server.Host.Components.IInstanceManager.Ready()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a0d54ae3e93cf9a9af10411c733e77f44',1,'Tgstation.Server.Host.Components.InstanceManager.Ready()']]], - ['readytcs_1498',['readyTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a544dea7c9d4691aa67d8bafb2f39922c',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['realid_1499',['RealId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a983af752bfee4125d2a94370dc128c48',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.RealId()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae11079589a9c5466c125247cba0e3ec4',1,'Tgstation.Server.Host.Components.Chat.ChatUser.RealId()']]], - ['reattach_1500',['Reattach',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#ac583487a447259a5698bda86205cf593',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.Reattach()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a43661606c528da37b2aea840fe5766ef',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach()']]], - ['reattachfailure_1501',['ReattachFailure',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad136304a1e1074559ccb4310b5b1044d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['reattachinformation_1502',['ReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html',1,'Tgstation.Server.Host.Models.ReattachInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html',1,'Tgstation.Server.Host.Components.Session.ReattachInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab648c1f38b73209f86ce8b0c7274822e',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.ReattachInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a2f27422dea8fc27fb0c7f1964f455319',1,'Tgstation.Server.Host.Components.Session.SessionController.reattachInformation()']]], - ['reattachinformation_2ecs_1503',['ReattachInformation.cs',['../_components_2_session_2_reattach_information_8cs.html',1,'(Global Namespace)'],['../_models_2_reattach_information_8cs.html',1,'(Global Namespace)']]], - ['reattachinformationbase_1504',['ReattachInformationBase',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html',1,'Tgstation.Server.Host.Models.ReattachInformationBase'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a662295d2f9dd1746560777809a91eec0',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#adbb46135d2724b48f149ded000511f49',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase(ReattachInformationBase copy)']]], - ['reattachinformationbase_2ecs_1505',['ReattachInformationBase.cs',['../_reattach_information_base_8cs.html',1,'']]], - ['reattachinformations_1506',['ReattachInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a013e9ece5b0c1f83eb7eb891a8e09489',1,'Tgstation.Server.Host.Database.DatabaseContext.ReattachInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a81754ce679705d27e6510c291c26b77c',1,'Tgstation.Server.Host.Database.DatabaseContext.ReattachInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aa06e331aeed4c0680e33e0aa2bcf81cf',1,'Tgstation.Server.Host.Database.IDatabaseContext.ReattachInformations()']]], - ['reattachinformationscollection_1507',['reattachInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac17092c829e679b90650ae05338b4914',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['reattachtopiccts_1508',['reattachTopicCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a585c2703d8cea3397a20f06a290ae48f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['reboot_1509',['Reboot',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da1de72c4fc6d69a741fff1cbb7cdb9e90',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['rebootstate_1510',['RebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a71b97ab7d82ac6304133d90895332e45',1,'Tgstation.Server.Host.Components.Session.ISessionController.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a06199c8ec541da0905faa9f966ff6890',1,'Tgstation.Server.Host.Components.Session.SessionController.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a162156e619faf7f253fce4c39b35559b',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.RebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0145fd1816a703bcb80fd8e107034f4c',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5bc3f8e6c5569555d358578e612a1920',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#aec874c3505b96efeeaf100ce4b7e6eea',1,'Tgstation.Server.Host.Models.ReattachInformationBase.RebootState()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2',1,'Tgstation.Server.Host.Components.Session.RebootState()']]], - ['rebootstate_2ecs_1511',['RebootState.cs',['../_reboot_state_8cs.html',1,'']]], - ['reboottcs_1512',['rebootTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a28176c23942e421c95dc57f8b966d142',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['recheckdelayms_1513',['RecheckDelayMs',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab953db51ba254644353cb7cb4613a35b',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['reconnectcts_1514',['reconnectCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a9f6a1589b22e35e4e494ea4df0bf2446',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['reconnectioninterval_1515',['ReconnectionInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a036a54aabe0dcecabb794483396c8bb9',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['reconnectionloop_1516',['ReconnectionLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac6502da810ca16f52bed5505c7807746',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['reconnecttask_1517',['reconnectTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#abcd5569a84d1d67a6b891b7bf7f5c6df',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['reconnecttasklock_1518',['reconnectTaskLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac3f1219e16c1c8e9e32a07697d3affde',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['recursesubmodules_1519',['RecurseSubmodules',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a469ceeea1ef0a2ff1cf26df182cbcf6c',1,'Tgstation::Server::Api::Models::Repository']]], - ['reference_1520',['Reference',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a0a99aa36e3e44f020c91e847932e706f',1,'Tgstation.Server.Api.Models.Repository.Reference()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a36f1520633eca12a57b6ed52c60c5257',1,'Tgstation.Server.Host.Components.Repository.IRepository.Reference()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a019e9f75f0129457c1f6f2e44e9736d0',1,'Tgstation.Server.Host.Components.Repository.Repository.Reference()']]], - ['referencecount_1521',['referenceCount',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a7984b813e64ace0d665e50cd5689c31b',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['referencecountlock_1522',['referenceCountLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1224c3b67cd2217d80511c55ef622a86',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['refreshtoken_1523',['RefreshToken',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#abd283e3f14a6be71a3d4a8dedd12123e',1,'Tgstation::Server::Client::ApiClient']]], - ['registercommandhandler_1524',['RegisterCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae1b556bac2bf1a08d0eef0fd76297dc4',1,'Tgstation.Server.Host.Components.Chat.ChatManager.RegisterCommandHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1e1ce49aa3e843a1e037060a544e125e',1,'Tgstation.Server.Host.Components.Chat.IChatManager.RegisterCommandHandler()']]], - ['registeredprocesses_1525',['registeredProcesses',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afffde309e8027f1373df6c95393c643a',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['registerforrestart_1526',['RegisterForRestart',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a35728d66030addfd5551351b8c6db942',1,'Tgstation.Server.Host.Core.IServerControl.RegisterForRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a0664caef3896a16c9f668177c68002d3',1,'Tgstation.Server.Host.Server.RegisterForRestart()']]], - ['registerhandler_1527',['RegisterHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a785c474a5d39316af850239b0c7e107b',1,'Tgstation.Server.Host.Components.InstanceManager.RegisterHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html#aa36d6072e7a96ece183b77544c9bfe4b',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeRegistrar.RegisterHandler()']]], - ['registeroperation_1528',['RegisterOperation',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a21be789f798adf9985f2432d3499b4cd',1,'Tgstation.Server.Host.Jobs.IJobManager.RegisterOperation()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a333fa6cef18c623a6521f96ea69d5667',1,'Tgstation.Server.Host.Jobs.JobManager.RegisterOperation()']]], - ['registerprocess_1529',['RegisterProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html#a3493714e50b54482ee2739479cf02d56',1,'Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html#ab90af2305373f1490bfee879371aa594',1,'Tgstation.Server.Host.System.PosixNetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a1c2af94dcdeec0b60e5df15c5fa14d8d',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.RegisterProcess()']]], - ['release_1530',['Release',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6f04efbacbb022cb5c95a899b3a00cb0',1,'Tgstation.Server.Host.Components.Session.ISessionController.Release()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a5265a5dbb5e09483ba2d84bb0dd39d12',1,'Tgstation.Server.Host.Components.Session.SessionController.Release()']]], - ['released_1531',['released',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a63130d91727f1706f6f7c25ca55ee29f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['releasedreattachinformation_1532',['releasedReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a897f0e0963fd7f468151b2d748c0db32',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['releaseservers_1533',['releaseServers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a256c7fd5a04870388411185b46ff6fb8',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['relocate_1534',['Relocate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa8642eb657c3ab24f0a52b2ef8115d3f',1,'Tgstation::Server::Api::Rights']]], - ['remapprovider_1535',['RemapProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa8388f0bf72714eba49fd88540c8a397',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['remotetemporarybranchname_1536',['RemoteTemporaryBranchName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4ad624c2294a1cc28f47d251ed3a17f8',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['remove_1537',['Remove',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a8244ef4b74e973c7acc1a39a2bd7a4ca',1,'Tgstation.Server.Host.Database.DatabaseCollection.Remove()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ad270ec18822a7a90d8fca9a75c23851a',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Remove()']]], - ['removemergedpullrequests_1538',['RemoveMergedPullRequests',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aed1debb892c0e54911e3ef6b9296d62e',1,'Tgstation::Server::Host::Components::Instance']]], - ['removeprovider_1539',['RemoveProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa7ea797fb470d81d829992c1eaff6a34',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['removerange_1540',['RemoveRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a66a0ea60621331e3b5d5e4840e25e811',1,'Tgstation.Server.Host.Database.DatabaseCollection.RemoveRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a854a2e25231abb1e54bcff6fc6a8900c',1,'Tgstation.Server.Host.Database.IDatabaseCollection.RemoveRange()']]], - ['rename_1541',['Rename',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a904a8304056d77e4547744781b7ceb50',1,'Tgstation::Server::Api::Rights']]], - ['replacedmbprovider_1542',['ReplaceDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad9ac3e335150ec25eeb656ac7e310403',1,'Tgstation.Server.Host.Components.Session.ISessionController.ReplaceDmbProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab100112c49c5d17623a5f8d0d0be0b7c',1,'Tgstation.Server.Host.Components.Session.SessionController.ReplaceDmbProvider()']]], - ['repobusy_1543',['RepoBusy',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5977ae7b6edc818e0412f6c7846f2401',1,'Tgstation::Server::Api::Models']]], - ['repocannotauthenticate_1544',['RepoCannotAuthenticate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aebbb3dd24e1c4ada3a50e92e2dec4dfb',1,'Tgstation::Server::Api::Models']]], - ['repocantchangeorigin_1545',['RepoCantChangeOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8175ed8fec68e26692e684b17db8548c',1,'Tgstation::Server::Api::Models']]], - ['repocheckout_1546',['RepoCheckout',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab0586bbc30b26132d29bbc4a69bd0da2',1,'Tgstation::Server::Host::Components::Events']]], - ['repocloning_1547',['RepoCloning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9755914d72338e6ce57fb16e560209c0',1,'Tgstation::Server::Api::Models']]], - ['repocredentialsrequired_1548',['RepoCredentialsRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a94b932f9d2602bee2e67aed4ba38d0a6',1,'Tgstation::Server::Api::Models']]], - ['repoduplicatetestmerge_1549',['RepoDuplicateTestMerge',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a561351a05b0b60c943b21f38f23bd553',1,'Tgstation::Server::Api::Models']]], - ['repoexists_1550',['RepoExists',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a800c56a2841cf737b9c883507f4884f4',1,'Tgstation::Server::Api::Models']]], - ['repofetch_1551',['RepoFetch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab482b626f1064d696e63b2c62430cdf8',1,'Tgstation::Server::Host::Components::Events']]], - ['repomergeconflict_1552',['RepoMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Api.Models.RepoMergeConflict()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Host.Components.Events.RepoMergeConflict()']]], - ['repomergepullrequest_1553',['RepoMergePullRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7afc010e2f845e7e0e6b7507a47c17363b',1,'Tgstation::Server::Host::Components::Events']]], - ['repomismatchshaandreference_1554',['RepoMismatchShaAndReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a50003a969ded946db692896a4a5ec1c4',1,'Tgstation::Server::Api::Models']]], - ['repomismatchshaandupdate_1555',['RepoMismatchShaAndUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab97fe4295c7ba65db3c6ef4eb3c9c2bb',1,'Tgstation::Server::Api::Models']]], - ['repomismatchuserandaccesstoken_1556',['RepoMismatchUserAndAccessToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aafc428eb4bcd3a2488e41337c34ee233',1,'Tgstation::Server::Api::Models']]], - ['repomissing_1557',['RepoMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a147a10a81d501e59037c13e6c168f56c',1,'Tgstation::Server::Api::Models']]], - ['repomissingorigin_1558',['RepoMissingOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf3899d083ff7fb486eafce336a25148',1,'Tgstation::Server::Api::Models']]], - ['repopresynchronize_1559',['RepoPreSynchronize',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a28b74db9a0a4619b28a21c0573fbc0d8',1,'Tgstation::Server::Host::Components::Events']]], - ['reporeferencenottracking_1560',['RepoReferenceNotTracking',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6eaf9129eb60ec6c4ec0dff641b533ad',1,'Tgstation::Server::Api::Models']]], - ['reporeferencerequired_1561',['RepoReferenceRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf8ed188c1807a49b9ea5cdb5ceb12c9',1,'Tgstation::Server::Api::Models']]], - ['reporesetorigin_1562',['RepoResetOrigin',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a2d081595fabf6ba0facdc9d1fb7921e6',1,'Tgstation::Server::Host::Components::Events']]], - ['repository_1563',['Repository',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html',1,'Tgstation.Server.Api.Models.Repository'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html',1,'Tgstation.Server.Host.Components.Repository.Repository'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a738817663facf9293a084ab4c5a155ef',1,'Tgstation.Server.Api.Routes.Repository()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#adf8d664f59d973f69aa15c22fba93735',1,'Tgstation.Server.Client.Components.IInstanceClient.Repository()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a507ef7665b72f494e56b997e19835367',1,'Tgstation.Server.Client.Components.InstanceClient.Repository()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a1c314570d2e4f3c0a6dfb7e8aa6c68a0',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa68b503106bfa0f9558c08cc8d79ec1d',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository ?? throw new ArgumentNullException(nameof(repository)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2118970749039c0d44a9eb4698d97e1',1,'Tgstation.Server.Host.Components.Repository.Repository.Repository()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a33fcf2b3ec4686d9cd06051c726d0ba2',1,'Tgstation.Server.Api.Rights.Repository()']]], - ['repository_2ecs_1564',['Repository.cs',['../_tgstation_8_server_8_api_2_models_2_repository_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html',1,'(Global Namespace)']]], - ['repositoryclient_1565',['RepositoryClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html',1,'Tgstation.Server.Client.Components.RepositoryClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa7ff208124be2377aa50b40f63aad06c',1,'Tgstation.Server.Client.Components.RepositoryClient.RepositoryClient()']]], - ['repositoryclient_2ecs_1566',['RepositoryClient.cs',['../_repository_client_8cs.html',1,'']]], - ['repositorycommands_1567',['repositoryCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9c02f76180a5f7555c683994e9f4529e',1,'Tgstation::Server::Host::Components::InstanceFactory']]], - ['repositorycontroller_1568',['RepositoryController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html',1,'Tgstation.Server.Host.Controllers.RepositoryController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ac88456f7aa7bbb54f37c6a468c102bed',1,'Tgstation.Server.Host.Controllers.RepositoryController.RepositoryController()']]], - ['repositorycontroller_2ecs_1569',['RepositoryController.cs',['../_repository_controller_8cs.html',1,'']]], - ['repositoryfactory_1570',['repositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a7a33f13d048aedc87473fd5d2c31c11e',1,'Tgstation.Server.Host.Components.InstanceFactory.repositoryFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a4f6156dc0a120ec2176d644f134b1129',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.repositoryFactory()']]], - ['repositorylogger_1571',['repositoryLogger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a215c5b936673287ad252f01b1b87f9bf',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], - ['repositorymanager_1572',['RepositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac6eb0ebb09860c076b09529a92963592',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#af5857133d7544a45ce4b4e75210830b2',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#acdac2dc61b95355e78f8a1b008b7f7b4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0cfc680dd4fa5908a6ae164d14530f39',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.repositoryManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a51d56fca894257dc7c6747a152f9f1fc',1,'Tgstation.Server.Host.Components.IInstanceCore.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a0ba6b6f63f50a267051c77c15e6c6fcf',1,'Tgstation.Server.Host.Components.Instance.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a72fb8ae414adf4911da28098261cb0ba',1,'Tgstation.Server.Host.Components.InstanceWrapper.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8154779167cfb865f6d047f903acb37d',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.RepositoryManager()']]], - ['repositorymanager_2ecs_1573',['RepositoryManager.cs',['../_repository_manager_8cs.html',1,'']]], - ['repositoryrights_1574',['RepositoryRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a369d2b654bf3c91d4d78e3c758a27757',1,'Tgstation.Server.Api.Models.InstanceUser.RepositoryRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39',1,'Tgstation.Server.Api.Rights.RepositoryRights()']]], - ['repositoryrights_2ecs_1575',['RepositoryRights.cs',['../_repository_rights_8cs.html',1,'']]], - ['repositorysettings_1576',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html',1,'Tgstation.Server.Host.Models.RepositorySettings'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html',1,'Tgstation.Server.Api.Models.Internal.RepositorySettings'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8ef9e7febec260676f8f605e85072e82',1,'Tgstation.Server.Host.Database.DatabaseContext.RepositorySettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a87a0742c91d81f194a5c075862b3a1cd',1,'Tgstation.Server.Host.Database.DatabaseContext.RepositorySettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ad7cf0bea5adc322eea2cf52b41eb0945',1,'Tgstation.Server.Host.Database.IDatabaseContext.RepositorySettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a389d4c0693f617133a4a8db430c65ab4',1,'Tgstation.Server.Host.Models.Instance.RepositorySettings()']]], - ['repositorysettings_2ecs_1577',['RepositorySettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html',1,'(Global Namespace)']]], - ['repositorysettingscollection_1578',['repositorySettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a64da1a0898e301c7c64c720588927793',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['reposwappedshaorreference_1579',['RepoSwappedShaOrReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abe142fe273ff3a9ab873a266266e937f',1,'Tgstation::Server::Api::Models']]], - ['repotestmergeconflict_1580',['RepoTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a603c0a3f0177b41effb42dd4a932021b',1,'Tgstation::Server::Api::Models']]], - ['repotestmergeinvalidremote_1581',['RepoTestMergeInvalidRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac456aa0688e3c635d73c72b021de12bf',1,'Tgstation::Server::Api::Models']]], - ['repounsupportedtestmergeremote_1582',['RepoUnsupportedTestMergeRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9446652139c040e0af3351104d1ec913',1,'Tgstation::Server::Api::Models']]], - ['repowhitespacecommitteremail_1583',['RepoWhitespaceCommitterEmail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8b7cce03b4c7425e09ac4534a51b95b0',1,'Tgstation::Server::Api::Models']]], - ['repowhitespacecommittername_1584',['RepoWhitespaceCommitterName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5aac4df009b9b8c791899cd52c320593',1,'Tgstation::Server::Api::Models']]], - ['requestloggers_1585',['requestLoggers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a8c0c69d8203c1af593869613dfb1f8cc',1,'Tgstation::Server::Client::ApiClient']]], - ['requestsprocessed_1586',['requestsProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0d4ca33235052b49fd927c9df33ae7f3',1,'Tgstation::Server::Host::Controllers::BridgeController']]], - ['requesttimeoutexception_1587',['RequestTimeoutException',['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html',1,'Tgstation.Server.Client.RequestTimeoutException'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#adc20278896b65c6ae42aa61012a6576f',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a85873681c9fb67bfd55b8751ba791e5b',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a80635931d781eaab27edcae371a77e7c',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message, Exception innerException)']]], - ['requesttimeoutexception_2ecs_1588',['RequestTimeoutException.cs',['../_request_timeout_exception_8cs.html',1,'']]], - ['requiredmapivalidation_1589',['RequireDMApiValidation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a8b433a152af5918ccddf48f2c87fb6b5',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['requireheaders_1590',['requireHeaders',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a91c58c31f7a3cc51fff3cfc3b236756d',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['requireinstance_1591',['requireInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#afe4f020656eb2d02def6ff389fd33bcb',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['requiresposixsystemidentity_1592',['RequiresPosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a22bf49e8a9635f804b5cdcb6632ddc34',1,'Tgstation.Server.Host.Controllers.ApiController.RequiresPosixSystemIdentity()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aab217c3aea820156b624733a34ab3c48',1,'Tgstation.Server.Api.Models.RequiresPosixSystemIdentity()']]], - ['requiressafe_1593',['RequiresSafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3aa664657b234543e1fc6702e00b784325',1,'Tgstation::Server::Host::Components::Session']]], - ['requirestrusted_1594',['RequiresTrusted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2cb40d93bedc4fe88f33d0fd49c87563',1,'Tgstation::Server::Host::Components::Session']]], - ['requiresultrasafe_1595',['RequiresUltrasafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a6125188ea908d44694f8cdff0eef43f4',1,'Tgstation::Server::Host::Components::Session']]], - ['resetadminpassword_1596',['ResetAdminPassword',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a90f97812f033dd9cc418ea1fcffe3ce0',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ResetAdminPassword()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#af844d41153f8a43c071bb6ec67445a1b',1,'Tgstation.Server.Host.Database.DatabaseSeeder.ResetAdminPassword()']]], - ['resetrebootstate_1597',['ResetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a5baede79a2c896fb6537ca28354837cb',1,'Tgstation.Server.Host.Components.Session.ISessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3bf4bd799f6cdbe8c992f37798b44cf9',1,'Tgstation.Server.Host.Components.Session.SessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a3b874bb53e907a576a4b88122083c6c3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.ResetRebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a2859725d1805d6655be14566f9edcf00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aaf696fd100732f5b9eb8900e81895bf0',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ResetRebootState()']]], - ['resettoorigin_1598',['ResetToOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab03d183168abf3cc19f57bc47e25c5d6',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1b591fe0be8dbc5636d96d8e9992ddbe',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToOrigin()']]], - ['resettosha_1599',['ResetToSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa955f0aaefce1850e40eda99419fdd79',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a760cc043dfc2bc394b52d9d6717d7843',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToSha()']]], - ['resolvepath_1600',['ResolvePath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a34087ebccffcf9f51173e01fe4a50be4',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a287eaf4e73a4d64e50f1dab24c3b0d3e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath(string path)'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a18a442b5dff16f5e7a730ec354e81d78',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aef508a4c82215e95c29aa23255fdb01c',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath(string path)'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a50b2302533637090939afbb9dee042ee',1,'Tgstation.Server.Host.IO.ResolvingIOManager.ResolvePath()']]], - ['resolvingiomanager_1601',['ResolvingIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html',1,'Tgstation.Server.Host.IO.ResolvingIOManager'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a4e9c20b01d6d66f04eb106365f9d7a1a',1,'Tgstation.Server.Host.IO.ResolvingIOManager.ResolvingIOManager()']]], - ['resolvingiomanager_2ecs_1602',['ResolvingIOManager.cs',['../_resolving_i_o_manager_8cs.html',1,'']]], - ['resourceneverpresent_1603',['ResourceNeverPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf653fb5de0c10b302e6a44d01265fe8',1,'Tgstation::Server::Api::Models']]], - ['resourcenotpresent_1604',['ResourceNotPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac0333e5b9060e7ec5e504858490db907',1,'Tgstation::Server::Api::Models']]], - ['responsemessage_1605',['ResponseMessage',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#ae03dd599c2f6a102dc08a5f308534c14',1,'Tgstation::Server::Client::ClientException']]], - ['restart_1606',['Restart',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a695a17f5dc134c529d21146c1273c58b',1,'Tgstation.Server.Client.AdministrationClient.Restart()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab7598c890869f71b94e6051acbc6790d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#adb6252aed5c2e88bc48923b1936921fd',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a9730058c232e1f8d1917137f3445d8a3',1,'Tgstation.Server.Client.IAdministrationClient.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0e80e3751764c584151e51f4395efbf5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39d65944835fca058d4a4be46eaf81bd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#adfae63e2f33e2293f43abff9cd65c246',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a13dcbb02bca9b289a8bccd07a848b4b9',1,'Tgstation.Server.Host.Core.IServerControl.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2114beab119e090ece99d97ef0ca9c6',1,'Tgstation.Server.Host.Server.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a35a6218bf7398f527c9179cddff6c8e3',1,'Tgstation.Server.Host.Server.Restart(Version newVersion, Exception exception, bool requireWatchdog)'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Api.Rights.Restart()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Session.Restart()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Watchdog.Restart()']]], - ['restarthandlers_1607',['restartHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6fd99785ffec475ce3d3835c1206505f',1,'Tgstation::Server::Host::Server']]], - ['restarthost_1608',['RestartHost',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a4ebebe34711c9ddafa1eff5faa9a377e',1,'Tgstation::Server::Api::Rights']]], - ['restartlock_1609',['restartLock',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#abf1047eeb7fc9f915460a1bacc58666e',1,'Tgstation::Server::Host::Server']]], - ['restartregistration_1610',['RestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html',1,'Tgstation.Server.Host.Core.RestartRegistration'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a4391d21de43d098a833168620dc24dc4',1,'Tgstation.Server.Host.Core.RestartRegistration.RestartRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac3dec357800cfc9a526c82d61fe99803',1,'Tgstation.Server.Host.Components.Chat.ChatManager.restartRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aefe25fd33c4a6dfb4ea27b583a2286ea',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.restartRegistration()']]], - ['restartregistration_2ecs_1611',['RestartRegistration.cs',['../_restart_registration_8cs.html',1,'']]], - ['restartrequested_1612',['RestartRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#ac87902a08c496cd40add682a2ec6c616',1,'Tgstation.Server.Host.IServer.RestartRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#add86891cdb4011d078e94671466ef14e',1,'Tgstation.Server.Host.Server.RestartRequested()']]], - ['restarttimeout_1613',['RestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#af54d71d8d62e9a4facf3fa58b26ec1a5',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['restoring_1614',['Restoring',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683ad6a7dfc0a40da7ac6674d7c9888fa5e8',1,'Tgstation::Server::Api::Models']]], - ['resume_1615',['Resume',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca14b07bc405fa3d1c61a9007762876d',1,'Tgstation.Server.Host.Components.Session.SessionController.Resume()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a676e4a90946a0ccfbd06bfd231215a87',1,'Tgstation.Server.Host.System.IProcessBase.Resume()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac71f30aab7fc20ad92dc9b1ce8971b55',1,'Tgstation.Server.Host.System.Process.Resume()']]], - ['resumeprocess_1616',['ResumeProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad7b3670db0f89899889687e13a33f7c6',1,'Tgstation.Server.Host.System.IProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a49c4196d80413533d81efa2915bfaeb1',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a0a3d91e35d40c3f6c6bdf126aec6d112',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.ResumeProcess()']]], - ['resumethread_1617',['ResumeThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a318c159e4464a5d63dd81260b45d95bc',1,'Tgstation::Server::Host::NativeMethods']]], - ['retryafter_1618',['RetryAfter',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a3a57db9e2ca420da24a144286faf57b0',1,'Tgstation::Server::Client::RateLimitException']]], - ['revinfocompilejobdeletebehavior_1619',['RevInfoCompileJobDeleteBehavior',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a362548adc55667bb4b4b868b6a93e194',1,'Tgstation.Server.Host.Database.DatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a53410634a9ad9c22227a739a956e95d0',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#af2e5a946215845b0fcecffeb2270b1c3',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.RevInfoCompileJobDeleteBehavior()']]], - ['revinfotestmerge_1620',['RevInfoTestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html',1,'Tgstation::Server::Host::Models']]], - ['revinfotestmerge_2ecs_1621',['RevInfoTestMerge.cs',['../_rev_info_test_merge_8cs.html',1,'']]], - ['revinfotestmerges_1622',['RevInfoTestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad98366224f0902e710e86c2834bbc55f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['revision_1623',['Revision',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a7809d348cb5248ec9ae4bb189fda706b',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.Revision()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a916aa6662307599b495fb7ddcdb43766',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation.Revision()']]], - ['revisioncommand_1624',['RevisionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a69b5a156fd8b4e7c8f9396d967d435e2',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.RevisionCommand()']]], - ['revisioncommand_2ecs_1625',['RevisionCommand.cs',['../_revision_command_8cs.html',1,'']]], - ['revisioninformation_1626',['RevisionInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Host.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.Internal.RevisionInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#afbce76258f1516465571e4d91bddc52a',1,'Tgstation.Server.Api.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#abbaee1939efe1c98e5fd0656295f0ce9',1,'Tgstation.Server.Api.Models.Repository.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a30c14e7fc4c770ff11cd0f10be4fb4dd',1,'Tgstation.Server.Host.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a84e7e578fe5c0d7c09dc22f9085d7367',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.RevisionInformation()']]], - ['revisioninformation_2ecs_1627',['RevisionInformation.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html',1,'(Global Namespace)']]], - ['revisioninformations_1628',['RevisionInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#af0868b43356117d8cf252ae50c218b38',1,'Tgstation.Server.Host.Database.DatabaseContext.RevisionInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad249b9f42f44994b679cff760af48f98',1,'Tgstation.Server.Host.Database.DatabaseContext.RevisionInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a5633532d3f76127562905242d6a14e91',1,'Tgstation.Server.Host.Database.IDatabaseContext.RevisionInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6bc0b01df1f7ff3ba2abb74dd9d273b9',1,'Tgstation.Server.Host.Models.Instance.RevisionInformations()']]], - ['revisioninformationscollection_1629',['revisionInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aab44643db86309797a66d33fc4377017',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['revisoninformations_1630',['RevisonInformations',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac627e2326a3e3bc6673705b3e0e41f52',1,'Tgstation::Server::Host::Models::TestMerge']]], - ['rightshelper_1631',['RightsHelper',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html',1,'Tgstation::Server::Api::Rights']]], - ['rightshelper_2ecs_1632',['RightsHelper.cs',['../_rights_helper_8cs.html',1,'']]], - ['rightstype_1633',['RightsType',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a3b34b2621f1cbd39484e248ab1eda6ed',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.RightsType()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20',1,'Tgstation.Server.Api.Rights.RightsType()']]], - ['rightstype_2ecs_1634',['RightsType.cs',['../_rights_type_8cs.html',1,'']]], - ['righttotype_1635',['RightToType',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#ab694cd1b9b98a6be7d79f236a71b386c',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['rolename_1636',['RoleName',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#acbf514eba48e29a2dc177eb5ae34edd7',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['rolenames_3c_20tright_20_3e_1637',['RoleNames< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a08d444c5eb8868e931b37f11f9071f92',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['root_1638',['Root',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa336e9d55df01b49f6d217b48563900a',1,'Tgstation::Server::Api::Routes']]], - ['routes_1639',['Routes',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html',1,'Tgstation::Server::Api']]], - ['routes_2ecs_1640',['Routes.cs',['../_routes_8cs.html',1,'']]], - ['run_1641',['Run',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#a2b5c3521d783dd9eee7a3e4f2e03fc9f',1,'Tgstation.Server.Host.IServer.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a594aca268623a743fafd4acfed784e3f',1,'Tgstation.Server.Host.Server.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a5915daef37817261e058fd1d9251bd0a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Run()']]], - ['runasync_1642',['RunAsync',['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html#abe13ec45a7d7ba7db422ea661156b697',1,'Tgstation.Server.Host.Watchdog.IWatchdog.RunAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a3f2e5da2e83854873a9d8f986aff8f17',1,'Tgstation.Server.Host.Watchdog.Watchdog.RunAsync()']]], - ['runcompilejob_1643',['RunCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a90c81ec6a44a188164e5ae50e6430a7d',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['rundreammaker_1644',['RunDreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2c7d7d0048942b67b6c275cd4a643296',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['runimpersonated_1645',['RunImpersonated',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a9b525a56c704424ce14e78edcb7d003e',1,'Tgstation.Server.Host.Security.ISystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#ad8b0bb1cd74b0bc433afeb4dcc322594',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aaa070f717bb19b6d85f0253d7820bc75',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.RunImpersonated()']]], - ['runjob_1646',['RunJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ab886226b72e336cfe28a37233ed807dc',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['runrequest_3c_20tresult_20_3e_1647',['RunRequest< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a53176ca924a3696c940cef412df72f04',1,'Tgstation::Server::Client::ApiClient']]], - ['runtask_1648',['runTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afb100cbab0aa9560e4831bee360f9c0f',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['runtimeinformation_1649',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a8b6ace0334f5100fb3fa41e5a2755bda',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.RuntimeInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0fd772ae059a153465f76bda841292ef',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.RuntimeInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a48edb7d65b3125dc47d2222b140bc188',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.RuntimeInformation()']]], - ['runtimeinformation_2ecs_1650',['RuntimeInformation.cs',['../_runtime_information_8cs.html',1,'']]], - ['runtimeinformationlock_1651',['runtimeInformationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab8d5fd229d05abf161538c6d7fc72b93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], - ['runwatchdog_1652',['RunWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a5ce97a95847cecf3650ae60f0f62d836',1,'Tgstation::Server::Host::Service::ServerService']]], - ['runwizard_1653',['RunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#af95450fea6b5b6d723d91198b7b41d8e',1,'Tgstation::Server::Host::Setup::SetupWizard']]] + ['ratelimit_1522',['RateLimit',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac16c0fe44009a93f09d73f702f9844e9',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['ratelimitexception_1523',['RateLimitException',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html',1,'Tgstation.Server.Client.RateLimitException'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a2bbc9a674f25015db577af0b641af918',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a1bd82db7496764293896d95a761a5b1c',1,'Tgstation.Server.Client.RateLimitException.RateLimitException()'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#ab30825486f294c98083fb35043f5da0a',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(string message, Exception innerException)']]], + ['ratelimitexception_2ecs_1524',['RateLimitException.cs',['../_rate_limit_exception_8cs.html',1,'']]], + ['rawcheckout_1525',['RawCheckout',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ace81561f45095dabdd6969b281a2be08',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['rawdata_1526',['RawData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['rawdata_2ecs_1527',['RawData.cs',['../_raw_data_8cs.html',1,'']]], + ['rawuseragent_1528',['RawUserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a22828aaeba69d042e69d5add1e451e0d',1,'Tgstation::Server::Api::ApiHeaders']]], + ['read_1529',['Read',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a90fccaf2e24a3793a1c3892365415d63',1,'Tgstation.Server.Client.AdministrationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#adb77f8fd7a46572e3c1d6bd90e3e300c',1,'Tgstation.Server.Client.Components.ConfigurationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afcc1957f652e164e4f2e9e05ca84bc9d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aa2f286f3f548960f2f9f88f17eb31538',1,'Tgstation.Server.Client.Components.DreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a8f860a7b9851f7bcffa232fcf82eb109',1,'Tgstation.Server.Client.Components.IConfigurationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a1e6a43558dcadc261304053b63476323',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#ac0b3a15957db0648ca8425469e1983b0',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aae3394792a75d2690ff8038cb4e8007f',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ad1b39d718a1f3e635cf7ff8e24499d66',1,'Tgstation.Server.Client.Components.InstanceUserClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a5ec2d45a88691381a86f02d6a941f912',1,'Tgstation.Server.Client.Components.IRepositoryClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a37e9b08107bacf7d431b64ef3051fdc3',1,'Tgstation.Server.Client.Components.RepositoryClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a2e63dc96c5b580f348e76f014924c85f',1,'Tgstation.Server.Client.IAdministrationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#adfc947bf76c50385d043a46732cb1f75',1,'Tgstation.Server.Client.IUsersClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a7b9ce7489b2a8b3e7c8453580cfe95ff',1,'Tgstation.Server.Client.UsersClient.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ad62e7c4dde34d7c7d1039bcbf03c5b72',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Read()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a32086334958bd9009ec8eda200b9a200',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a10c3be25fd9ac418bcab6bb9541bbd69',1,'Tgstation.Server.Host.Controllers.AdministrationController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#aa62cf4ea9a81c3772cc64fade69c095d',1,'Tgstation.Server.Host.Controllers.ByondController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a233a666f5638e5bca70e51a2d38a4ba7',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a85e225aa92c30ff7e771c540a9672ba3',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#adb7e1f6c26a2e83339ae501c4ae955a3',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a9a93d9ca244bb4f65df3dde6c00ace7d',1,'Tgstation.Server.Host.Controllers.JobController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a0263b7f7bef9a5b23cdc52c3735af3c5',1,'Tgstation.Server.Host.Controllers.RepositoryController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ad82f699ed9786892700f4c9526eb06ad',1,'Tgstation.Server.Host.Controllers.UserController.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()']]], + ['read_3c_20tresult_20_3e_1530',['Read< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a1808561c1ec1ddac56ee78648788214c',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a90dffec712d3fea1328dd2b8cb4ce5b7',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae8bd028857ed8443176c7ac25edd18bd',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a95d05b8d2e00d2da463ec7d7e6e4e2ae',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], + ['readactive_1531',['ReadActive',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a3326023a4750bdbe33075fdad47d2a8d',1,'Tgstation::Server::Api::Rights']]], + ['readallbytes_1532',['ReadAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8b156fb1670e0f2f74bccdf040d2661c',1,'Tgstation.Server.Host.IO.DefaultIOManager.ReadAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6c0856abd25ea8e2096702aae37f2b0c',1,'Tgstation.Server.Host.IO.IIOManager.ReadAllBytes()']]], + ['readconnectionstring_1533',['ReadConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a1696551e4b826946427650d66b0a0c18',1,'Tgstation::Server::Api::Rights']]], + ['readfile_1534',['ReadFile',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a19577dc573076fd58ac1d55d682d5606',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.ReadFile()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ae7fb6512f77a65454cf2309a1c4eccdf',1,'Tgstation.Server.Host.IO.SynchronousIOManager.ReadFile()']]], + ['readimpl_1535',['ReadImpl',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a57e14f977d6bc474d831cf3b0f3f6332',1,'Tgstation::Server::Host::Controllers::DreamDaemonController']]], + ['readjson_1536',['ReadJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a9622c7856d8e0d90cb6b9a3b3f7ac14d',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.ReadJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#ae5dd36f7c8be5d7f6d19866d6ba1a49a',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.ReadJson()']]], + ['readlineasync_1537',['ReadLineAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad64d553f84d31d737bd00595fe6a122f',1,'Tgstation.Server.Host.IO.Console.ReadLineAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a5bdc0f5d449d520355dccb0f01cc0694',1,'Tgstation.Server.Host.IO.IConsole.ReadLineAsync()']]], + ['readme_2emd_1538',['README.md',['../_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v3210_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v4_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_api_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_client_app_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_events_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_session_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_watchdog_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_configuration_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_controllers_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_database_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_i_o_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_jobs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_security_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_setup_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_system_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)']]], + ['readmetadata_1539',['ReadMetadata',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6ac3e4ef171de3175ef0763a390eea05',1,'Tgstation::Server::Api::Rights']]], + ['readrevision_1540',['ReadRevision',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae49f7f612746455ed28b92600f4d973c',1,'Tgstation::Server::Api::Rights']]], + ['readusers_1541',['ReadUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()']]], + ['ready_1542',['Ready',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a4ad311358f74779a6c1f2fcba4a30578',1,'Tgstation.Server.Host.Components.IInstanceManager.Ready()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a0d54ae3e93cf9a9af10411c733e77f44',1,'Tgstation.Server.Host.Components.InstanceManager.Ready()']]], + ['readytcs_1543',['readyTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a544dea7c9d4691aa67d8bafb2f39922c',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['realid_1544',['RealId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a983af752bfee4125d2a94370dc128c48',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.RealId()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae11079589a9c5466c125247cba0e3ec4',1,'Tgstation.Server.Host.Components.Chat.ChatUser.RealId()']]], + ['reattach_1545',['Reattach',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#ac583487a447259a5698bda86205cf593',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.Reattach()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a43661606c528da37b2aea840fe5766ef',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach()']]], + ['reattachfailure_1546',['ReattachFailure',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad136304a1e1074559ccb4310b5b1044d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['reattachinformation_1547',['ReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html',1,'Tgstation.Server.Host.Models.ReattachInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html',1,'Tgstation.Server.Host.Components.Session.ReattachInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab648c1f38b73209f86ce8b0c7274822e',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.ReattachInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a2f27422dea8fc27fb0c7f1964f455319',1,'Tgstation.Server.Host.Components.Session.SessionController.reattachInformation()']]], + ['reattachinformation_2ecs_1548',['ReattachInformation.cs',['../_components_2_session_2_reattach_information_8cs.html',1,'(Global Namespace)'],['../_models_2_reattach_information_8cs.html',1,'(Global Namespace)']]], + ['reattachinformationbase_1549',['ReattachInformationBase',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html',1,'Tgstation.Server.Host.Models.ReattachInformationBase'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a662295d2f9dd1746560777809a91eec0',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#adbb46135d2724b48f149ded000511f49',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase(ReattachInformationBase copy)']]], + ['reattachinformationbase_2ecs_1550',['ReattachInformationBase.cs',['../_reattach_information_base_8cs.html',1,'']]], + ['reattachinformations_1551',['ReattachInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a013e9ece5b0c1f83eb7eb891a8e09489',1,'Tgstation.Server.Host.Database.DatabaseContext.ReattachInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a81754ce679705d27e6510c291c26b77c',1,'Tgstation.Server.Host.Database.DatabaseContext.ReattachInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aa06e331aeed4c0680e33e0aa2bcf81cf',1,'Tgstation.Server.Host.Database.IDatabaseContext.ReattachInformations()']]], + ['reattachinformationscollection_1552',['reattachInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac17092c829e679b90650ae05338b4914',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['reattachtopiccts_1553',['reattachTopicCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a585c2703d8cea3397a20f06a290ae48f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['reboot_1554',['Reboot',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da1de72c4fc6d69a741fff1cbb7cdb9e90',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['rebootstate_1555',['RebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a71b97ab7d82ac6304133d90895332e45',1,'Tgstation.Server.Host.Components.Session.ISessionController.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a06199c8ec541da0905faa9f966ff6890',1,'Tgstation.Server.Host.Components.Session.SessionController.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a162156e619faf7f253fce4c39b35559b',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.RebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0145fd1816a703bcb80fd8e107034f4c',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5bc3f8e6c5569555d358578e612a1920',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#aec874c3505b96efeeaf100ce4b7e6eea',1,'Tgstation.Server.Host.Models.ReattachInformationBase.RebootState()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2',1,'Tgstation.Server.Host.Components.Session.RebootState()']]], + ['rebootstate_2ecs_1556',['RebootState.cs',['../_reboot_state_8cs.html',1,'']]], + ['reboottcs_1557',['rebootTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a28176c23942e421c95dc57f8b966d142',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['recheckdelayms_1558',['RecheckDelayMs',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab953db51ba254644353cb7cb4613a35b',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['reconnectcts_1559',['reconnectCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a9f6a1589b22e35e4e494ea4df0bf2446',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['reconnectioninterval_1560',['ReconnectionInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a036a54aabe0dcecabb794483396c8bb9',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['reconnectionloop_1561',['ReconnectionLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac6502da810ca16f52bed5505c7807746',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['reconnecttask_1562',['reconnectTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#abcd5569a84d1d67a6b891b7bf7f5c6df',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['reconnecttasklock_1563',['reconnectTaskLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac3f1219e16c1c8e9e32a07697d3affde',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['recursesubmodules_1564',['RecurseSubmodules',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a469ceeea1ef0a2ff1cf26df182cbcf6c',1,'Tgstation::Server::Api::Models::Repository']]], + ['reference_1565',['Reference',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a0a99aa36e3e44f020c91e847932e706f',1,'Tgstation.Server.Api.Models.Repository.Reference()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a36f1520633eca12a57b6ed52c60c5257',1,'Tgstation.Server.Host.Components.Repository.IRepository.Reference()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a019e9f75f0129457c1f6f2e44e9736d0',1,'Tgstation.Server.Host.Components.Repository.Repository.Reference()']]], + ['referencecount_1566',['referenceCount',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a7984b813e64ace0d665e50cd5689c31b',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['referencecountlock_1567',['referenceCountLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1224c3b67cd2217d80511c55ef622a86',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['refreshtoken_1568',['RefreshToken',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#abd283e3f14a6be71a3d4a8dedd12123e',1,'Tgstation::Server::Client::ApiClient']]], + ['registercommandhandler_1569',['RegisterCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae1b556bac2bf1a08d0eef0fd76297dc4',1,'Tgstation.Server.Host.Components.Chat.ChatManager.RegisterCommandHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1e1ce49aa3e843a1e037060a544e125e',1,'Tgstation.Server.Host.Components.Chat.IChatManager.RegisterCommandHandler()']]], + ['registeredprocesses_1570',['registeredProcesses',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afffde309e8027f1373df6c95393c643a',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['registerforrestart_1571',['RegisterForRestart',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a35728d66030addfd5551351b8c6db942',1,'Tgstation.Server.Host.Core.IServerControl.RegisterForRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a0664caef3896a16c9f668177c68002d3',1,'Tgstation.Server.Host.Server.RegisterForRestart()']]], + ['registerhandler_1572',['RegisterHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a785c474a5d39316af850239b0c7e107b',1,'Tgstation.Server.Host.Components.InstanceManager.RegisterHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html#aa36d6072e7a96ece183b77544c9bfe4b',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeRegistrar.RegisterHandler()']]], + ['registeroperation_1573',['RegisterOperation',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a21be789f798adf9985f2432d3499b4cd',1,'Tgstation.Server.Host.Jobs.IJobManager.RegisterOperation()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a333fa6cef18c623a6521f96ea69d5667',1,'Tgstation.Server.Host.Jobs.JobManager.RegisterOperation()']]], + ['registerprocess_1574',['RegisterProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html#a3493714e50b54482ee2739479cf02d56',1,'Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html#ab90af2305373f1490bfee879371aa594',1,'Tgstation.Server.Host.System.PosixNetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a1c2af94dcdeec0b60e5df15c5fa14d8d',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.RegisterProcess()']]], + ['release_1575',['Release',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6f04efbacbb022cb5c95a899b3a00cb0',1,'Tgstation.Server.Host.Components.Session.ISessionController.Release()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a5265a5dbb5e09483ba2d84bb0dd39d12',1,'Tgstation.Server.Host.Components.Session.SessionController.Release()']]], + ['released_1576',['released',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a63130d91727f1706f6f7c25ca55ee29f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['releasedreattachinformation_1577',['releasedReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a897f0e0963fd7f468151b2d748c0db32',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['releaseservers_1578',['releaseServers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a256c7fd5a04870388411185b46ff6fb8',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['relocate_1579',['Relocate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa8642eb657c3ab24f0a52b2ef8115d3f',1,'Tgstation::Server::Api::Rights']]], + ['remapprovider_1580',['RemapProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa8388f0bf72714eba49fd88540c8a397',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['remotetemporarybranchname_1581',['RemoteTemporaryBranchName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4ad624c2294a1cc28f47d251ed3a17f8',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['remove_1582',['Remove',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a8244ef4b74e973c7acc1a39a2bd7a4ca',1,'Tgstation.Server.Host.Database.DatabaseCollection.Remove()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ad270ec18822a7a90d8fca9a75c23851a',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Remove()']]], + ['removemergedpullrequests_1583',['RemoveMergedPullRequests',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aed1debb892c0e54911e3ef6b9296d62e',1,'Tgstation::Server::Host::Components::Instance']]], + ['removeprovider_1584',['RemoveProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa7ea797fb470d81d829992c1eaff6a34',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['removerange_1585',['RemoveRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a66a0ea60621331e3b5d5e4840e25e811',1,'Tgstation.Server.Host.Database.DatabaseCollection.RemoveRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a854a2e25231abb1e54bcff6fc6a8900c',1,'Tgstation.Server.Host.Database.IDatabaseCollection.RemoveRange()']]], + ['rename_1586',['Rename',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a904a8304056d77e4547744781b7ceb50',1,'Tgstation::Server::Api::Rights']]], + ['replacedmbprovider_1587',['ReplaceDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad9ac3e335150ec25eeb656ac7e310403',1,'Tgstation.Server.Host.Components.Session.ISessionController.ReplaceDmbProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab100112c49c5d17623a5f8d0d0be0b7c',1,'Tgstation.Server.Host.Components.Session.SessionController.ReplaceDmbProvider()']]], + ['repobusy_1588',['RepoBusy',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5977ae7b6edc818e0412f6c7846f2401',1,'Tgstation::Server::Api::Models']]], + ['repocannotauthenticate_1589',['RepoCannotAuthenticate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aebbb3dd24e1c4ada3a50e92e2dec4dfb',1,'Tgstation::Server::Api::Models']]], + ['repocantchangeorigin_1590',['RepoCantChangeOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8175ed8fec68e26692e684b17db8548c',1,'Tgstation::Server::Api::Models']]], + ['repocheckout_1591',['RepoCheckout',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab0586bbc30b26132d29bbc4a69bd0da2',1,'Tgstation::Server::Host::Components::Events']]], + ['repocloning_1592',['RepoCloning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9755914d72338e6ce57fb16e560209c0',1,'Tgstation::Server::Api::Models']]], + ['repocredentialsrequired_1593',['RepoCredentialsRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a94b932f9d2602bee2e67aed4ba38d0a6',1,'Tgstation::Server::Api::Models']]], + ['repoduplicatetestmerge_1594',['RepoDuplicateTestMerge',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a561351a05b0b60c943b21f38f23bd553',1,'Tgstation::Server::Api::Models']]], + ['repoexists_1595',['RepoExists',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a800c56a2841cf737b9c883507f4884f4',1,'Tgstation::Server::Api::Models']]], + ['repofetch_1596',['RepoFetch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab482b626f1064d696e63b2c62430cdf8',1,'Tgstation::Server::Host::Components::Events']]], + ['repomergeconflict_1597',['RepoMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Api.Models.RepoMergeConflict()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Host.Components.Events.RepoMergeConflict()']]], + ['repomergepullrequest_1598',['RepoMergePullRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7afc010e2f845e7e0e6b7507a47c17363b',1,'Tgstation::Server::Host::Components::Events']]], + ['repomismatchshaandreference_1599',['RepoMismatchShaAndReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a50003a969ded946db692896a4a5ec1c4',1,'Tgstation::Server::Api::Models']]], + ['repomismatchshaandupdate_1600',['RepoMismatchShaAndUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab97fe4295c7ba65db3c6ef4eb3c9c2bb',1,'Tgstation::Server::Api::Models']]], + ['repomismatchuserandaccesstoken_1601',['RepoMismatchUserAndAccessToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aafc428eb4bcd3a2488e41337c34ee233',1,'Tgstation::Server::Api::Models']]], + ['repomissing_1602',['RepoMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a147a10a81d501e59037c13e6c168f56c',1,'Tgstation::Server::Api::Models']]], + ['repomissingorigin_1603',['RepoMissingOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf3899d083ff7fb486eafce336a25148',1,'Tgstation::Server::Api::Models']]], + ['repopresynchronize_1604',['RepoPreSynchronize',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a28b74db9a0a4619b28a21c0573fbc0d8',1,'Tgstation::Server::Host::Components::Events']]], + ['reporeferencenottracking_1605',['RepoReferenceNotTracking',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6eaf9129eb60ec6c4ec0dff641b533ad',1,'Tgstation::Server::Api::Models']]], + ['reporeferencerequired_1606',['RepoReferenceRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf8ed188c1807a49b9ea5cdb5ceb12c9',1,'Tgstation::Server::Api::Models']]], + ['reporesetorigin_1607',['RepoResetOrigin',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a2d081595fabf6ba0facdc9d1fb7921e6',1,'Tgstation::Server::Host::Components::Events']]], + ['repository_1608',['Repository',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html',1,'Tgstation.Server.Api.Models.Repository'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html',1,'Tgstation.Server.Host.Components.Repository.Repository'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a738817663facf9293a084ab4c5a155ef',1,'Tgstation.Server.Api.Routes.Repository()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#adf8d664f59d973f69aa15c22fba93735',1,'Tgstation.Server.Client.Components.IInstanceClient.Repository()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a507ef7665b72f494e56b997e19835367',1,'Tgstation.Server.Client.Components.InstanceClient.Repository()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a1c314570d2e4f3c0a6dfb7e8aa6c68a0',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa68b503106bfa0f9558c08cc8d79ec1d',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository ?? throw new ArgumentNullException(nameof(repository)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2118970749039c0d44a9eb4698d97e1',1,'Tgstation.Server.Host.Components.Repository.Repository.Repository()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a33fcf2b3ec4686d9cd06051c726d0ba2',1,'Tgstation.Server.Api.Rights.Repository()']]], + ['repository_2ecs_1609',['Repository.cs',['../_tgstation_8_server_8_api_2_models_2_repository_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html',1,'(Global Namespace)']]], + ['repositoryautoupdatejob_1610',['RepositoryAutoUpdateJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4baa7e745d0000ea968b6fb38570d6a6',1,'Tgstation::Server::Host::Components::Instance']]], + ['repositoryclient_1611',['RepositoryClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html',1,'Tgstation.Server.Client.Components.RepositoryClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa7ff208124be2377aa50b40f63aad06c',1,'Tgstation.Server.Client.Components.RepositoryClient.RepositoryClient()']]], + ['repositoryclient_2ecs_1612',['RepositoryClient.cs',['../_repository_client_8cs.html',1,'']]], + ['repositorycommands_1613',['repositoryCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9c02f76180a5f7555c683994e9f4529e',1,'Tgstation::Server::Host::Components::InstanceFactory']]], + ['repositorycontroller_1614',['RepositoryController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html',1,'Tgstation.Server.Host.Controllers.RepositoryController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ac88456f7aa7bbb54f37c6a468c102bed',1,'Tgstation.Server.Host.Controllers.RepositoryController.RepositoryController()']]], + ['repositorycontroller_2ecs_1615',['RepositoryController.cs',['../_repository_controller_8cs.html',1,'']]], + ['repositoryfactory_1616',['repositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a7a33f13d048aedc87473fd5d2c31c11e',1,'Tgstation.Server.Host.Components.InstanceFactory.repositoryFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a4f6156dc0a120ec2176d644f134b1129',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.repositoryFactory()']]], + ['repositorylogger_1617',['repositoryLogger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a215c5b936673287ad252f01b1b87f9bf',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], + ['repositorymanager_1618',['RepositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac6eb0ebb09860c076b09529a92963592',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#af5857133d7544a45ce4b4e75210830b2',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#acdac2dc61b95355e78f8a1b008b7f7b4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0cfc680dd4fa5908a6ae164d14530f39',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.repositoryManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a51d56fca894257dc7c6747a152f9f1fc',1,'Tgstation.Server.Host.Components.IInstanceCore.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a0ba6b6f63f50a267051c77c15e6c6fcf',1,'Tgstation.Server.Host.Components.Instance.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a72fb8ae414adf4911da28098261cb0ba',1,'Tgstation.Server.Host.Components.InstanceWrapper.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8154779167cfb865f6d047f903acb37d',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.RepositoryManager()']]], + ['repositorymanager_2ecs_1619',['RepositoryManager.cs',['../_repository_manager_8cs.html',1,'']]], + ['repositoryrights_1620',['RepositoryRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a369d2b654bf3c91d4d78e3c758a27757',1,'Tgstation.Server.Api.Models.InstanceUser.RepositoryRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39',1,'Tgstation.Server.Api.Rights.RepositoryRights()']]], + ['repositoryrights_2ecs_1621',['RepositoryRights.cs',['../_repository_rights_8cs.html',1,'']]], + ['repositorysettings_1622',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html',1,'Tgstation.Server.Host.Models.RepositorySettings'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html',1,'Tgstation.Server.Api.Models.Internal.RepositorySettings'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8ef9e7febec260676f8f605e85072e82',1,'Tgstation.Server.Host.Database.DatabaseContext.RepositorySettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a87a0742c91d81f194a5c075862b3a1cd',1,'Tgstation.Server.Host.Database.DatabaseContext.RepositorySettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ad7cf0bea5adc322eea2cf52b41eb0945',1,'Tgstation.Server.Host.Database.IDatabaseContext.RepositorySettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a389d4c0693f617133a4a8db430c65ab4',1,'Tgstation.Server.Host.Models.Instance.RepositorySettings()']]], + ['repositorysettings_2ecs_1623',['RepositorySettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html',1,'(Global Namespace)']]], + ['repositorysettingscollection_1624',['repositorySettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a64da1a0898e301c7c64c720588927793',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['reposwappedshaorreference_1625',['RepoSwappedShaOrReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abe142fe273ff3a9ab873a266266e937f',1,'Tgstation::Server::Api::Models']]], + ['repotestmergeconflict_1626',['RepoTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a603c0a3f0177b41effb42dd4a932021b',1,'Tgstation::Server::Api::Models']]], + ['repotestmergeinvalidremote_1627',['RepoTestMergeInvalidRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac456aa0688e3c635d73c72b021de12bf',1,'Tgstation::Server::Api::Models']]], + ['repounsupportedtestmergeremote_1628',['RepoUnsupportedTestMergeRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9446652139c040e0af3351104d1ec913',1,'Tgstation::Server::Api::Models']]], + ['repowhitespacecommitteremail_1629',['RepoWhitespaceCommitterEmail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8b7cce03b4c7425e09ac4534a51b95b0',1,'Tgstation::Server::Api::Models']]], + ['repowhitespacecommittername_1630',['RepoWhitespaceCommitterName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5aac4df009b9b8c791899cd52c320593',1,'Tgstation::Server::Api::Models']]], + ['requestloggers_1631',['requestLoggers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a8c0c69d8203c1af593869613dfb1f8cc',1,'Tgstation::Server::Client::ApiClient']]], + ['requestsprocessed_1632',['requestsProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0d4ca33235052b49fd927c9df33ae7f3',1,'Tgstation::Server::Host::Controllers::BridgeController']]], + ['requesttimeoutexception_1633',['RequestTimeoutException',['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html',1,'Tgstation.Server.Client.RequestTimeoutException'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#adc20278896b65c6ae42aa61012a6576f',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a85873681c9fb67bfd55b8751ba791e5b',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a80635931d781eaab27edcae371a77e7c',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message, Exception innerException)']]], + ['requesttimeoutexception_2ecs_1634',['RequestTimeoutException.cs',['../_request_timeout_exception_8cs.html',1,'']]], + ['requiredmapivalidation_1635',['RequireDMApiValidation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a8b433a152af5918ccddf48f2c87fb6b5',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['requireheaders_1636',['requireHeaders',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a91c58c31f7a3cc51fff3cfc3b236756d',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['requireinstance_1637',['requireInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#afe4f020656eb2d02def6ff389fd33bcb',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['requiresposixsystemidentity_1638',['RequiresPosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a22bf49e8a9635f804b5cdcb6632ddc34',1,'Tgstation.Server.Host.Controllers.ApiController.RequiresPosixSystemIdentity()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aab217c3aea820156b624733a34ab3c48',1,'Tgstation.Server.Api.Models.RequiresPosixSystemIdentity()']]], + ['requiressafe_1639',['RequiresSafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3aa664657b234543e1fc6702e00b784325',1,'Tgstation::Server::Host::Components::Session']]], + ['requirestrusted_1640',['RequiresTrusted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2cb40d93bedc4fe88f33d0fd49c87563',1,'Tgstation::Server::Host::Components::Session']]], + ['requiresultrasafe_1641',['RequiresUltrasafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a6125188ea908d44694f8cdff0eef43f4',1,'Tgstation::Server::Host::Components::Session']]], + ['resetadminpassword_1642',['ResetAdminPassword',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a90f97812f033dd9cc418ea1fcffe3ce0',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ResetAdminPassword()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#af844d41153f8a43c071bb6ec67445a1b',1,'Tgstation.Server.Host.Database.DatabaseSeeder.ResetAdminPassword()']]], + ['resetrebootstate_1643',['ResetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a5baede79a2c896fb6537ca28354837cb',1,'Tgstation.Server.Host.Components.Session.ISessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3bf4bd799f6cdbe8c992f37798b44cf9',1,'Tgstation.Server.Host.Components.Session.SessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a3b874bb53e907a576a4b88122083c6c3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.ResetRebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a2859725d1805d6655be14566f9edcf00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aaf696fd100732f5b9eb8900e81895bf0',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ResetRebootState()']]], + ['resettoorigin_1644',['ResetToOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab03d183168abf3cc19f57bc47e25c5d6',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1b591fe0be8dbc5636d96d8e9992ddbe',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToOrigin()']]], + ['resettosha_1645',['ResetToSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa955f0aaefce1850e40eda99419fdd79',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a760cc043dfc2bc394b52d9d6717d7843',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToSha()']]], + ['resolvepath_1646',['ResolvePath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a34087ebccffcf9f51173e01fe4a50be4',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a287eaf4e73a4d64e50f1dab24c3b0d3e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath(string path)'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a18a442b5dff16f5e7a730ec354e81d78',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aef508a4c82215e95c29aa23255fdb01c',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath(string path)'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a50b2302533637090939afbb9dee042ee',1,'Tgstation.Server.Host.IO.ResolvingIOManager.ResolvePath()']]], + ['resolvingiomanager_1647',['ResolvingIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html',1,'Tgstation.Server.Host.IO.ResolvingIOManager'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a4e9c20b01d6d66f04eb106365f9d7a1a',1,'Tgstation.Server.Host.IO.ResolvingIOManager.ResolvingIOManager()']]], + ['resolvingiomanager_2ecs_1648',['ResolvingIOManager.cs',['../_resolving_i_o_manager_8cs.html',1,'']]], + ['resourceneverpresent_1649',['ResourceNeverPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf653fb5de0c10b302e6a44d01265fe8',1,'Tgstation::Server::Api::Models']]], + ['resourcenotpresent_1650',['ResourceNotPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac0333e5b9060e7ec5e504858490db907',1,'Tgstation::Server::Api::Models']]], + ['responsemessage_1651',['ResponseMessage',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#ae03dd599c2f6a102dc08a5f308534c14',1,'Tgstation::Server::Client::ClientException']]], + ['restart_1652',['Restart',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a695a17f5dc134c529d21146c1273c58b',1,'Tgstation.Server.Client.AdministrationClient.Restart()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab7598c890869f71b94e6051acbc6790d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#adb6252aed5c2e88bc48923b1936921fd',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a9730058c232e1f8d1917137f3445d8a3',1,'Tgstation.Server.Client.IAdministrationClient.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0e80e3751764c584151e51f4395efbf5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39d65944835fca058d4a4be46eaf81bd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#adfae63e2f33e2293f43abff9cd65c246',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a13dcbb02bca9b289a8bccd07a848b4b9',1,'Tgstation.Server.Host.Core.IServerControl.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2114beab119e090ece99d97ef0ca9c6',1,'Tgstation.Server.Host.Server.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a35a6218bf7398f527c9179cddff6c8e3',1,'Tgstation.Server.Host.Server.Restart(Version newVersion, Exception exception, bool requireWatchdog)'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Watchdog.Restart()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Session.Restart()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Api.Rights.Restart()']]], + ['restarthandlers_1653',['restartHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6fd99785ffec475ce3d3835c1206505f',1,'Tgstation::Server::Host::Server']]], + ['restarthost_1654',['RestartHost',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a4ebebe34711c9ddafa1eff5faa9a377e',1,'Tgstation::Server::Api::Rights']]], + ['restartlock_1655',['restartLock',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#abf1047eeb7fc9f915460a1bacc58666e',1,'Tgstation::Server::Host::Server']]], + ['restartregistration_1656',['RestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html',1,'Tgstation.Server.Host.Core.RestartRegistration'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a4391d21de43d098a833168620dc24dc4',1,'Tgstation.Server.Host.Core.RestartRegistration.RestartRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac3dec357800cfc9a526c82d61fe99803',1,'Tgstation.Server.Host.Components.Chat.ChatManager.restartRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aefe25fd33c4a6dfb4ea27b583a2286ea',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.restartRegistration()']]], + ['restartregistration_2ecs_1657',['RestartRegistration.cs',['../_restart_registration_8cs.html',1,'']]], + ['restartrequested_1658',['RestartRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#ac87902a08c496cd40add682a2ec6c616',1,'Tgstation.Server.Host.IServer.RestartRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#add86891cdb4011d078e94671466ef14e',1,'Tgstation.Server.Host.Server.RestartRequested()']]], + ['restarttimeout_1659',['RestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#af54d71d8d62e9a4facf3fa58b26ec1a5',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['restoring_1660',['Restoring',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683ad6a7dfc0a40da7ac6674d7c9888fa5e8',1,'Tgstation::Server::Api::Models']]], + ['resume_1661',['Resume',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca14b07bc405fa3d1c61a9007762876d',1,'Tgstation.Server.Host.Components.Session.SessionController.Resume()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a676e4a90946a0ccfbd06bfd231215a87',1,'Tgstation.Server.Host.System.IProcessBase.Resume()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac71f30aab7fc20ad92dc9b1ce8971b55',1,'Tgstation.Server.Host.System.Process.Resume()']]], + ['resumeprocess_1662',['ResumeProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad7b3670db0f89899889687e13a33f7c6',1,'Tgstation.Server.Host.System.IProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a49c4196d80413533d81efa2915bfaeb1',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a0a3d91e35d40c3f6c6bdf126aec6d112',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.ResumeProcess()']]], + ['resumethread_1663',['ResumeThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a318c159e4464a5d63dd81260b45d95bc',1,'Tgstation::Server::Host::NativeMethods']]], + ['retryafter_1664',['RetryAfter',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a3a57db9e2ca420da24a144286faf57b0',1,'Tgstation::Server::Client::RateLimitException']]], + ['revinfocompilejobdeletebehavior_1665',['RevInfoCompileJobDeleteBehavior',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a362548adc55667bb4b4b868b6a93e194',1,'Tgstation.Server.Host.Database.DatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a53410634a9ad9c22227a739a956e95d0',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#af2e5a946215845b0fcecffeb2270b1c3',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.RevInfoCompileJobDeleteBehavior()']]], + ['revinfotestmerge_1666',['RevInfoTestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html',1,'Tgstation::Server::Host::Models']]], + ['revinfotestmerge_2ecs_1667',['RevInfoTestMerge.cs',['../_rev_info_test_merge_8cs.html',1,'']]], + ['revinfotestmerges_1668',['RevInfoTestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad98366224f0902e710e86c2834bbc55f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['revision_1669',['Revision',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a7809d348cb5248ec9ae4bb189fda706b',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.Revision()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a916aa6662307599b495fb7ddcdb43766',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation.Revision()']]], + ['revisioncommand_1670',['RevisionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a69b5a156fd8b4e7c8f9396d967d435e2',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.RevisionCommand()']]], + ['revisioncommand_2ecs_1671',['RevisionCommand.cs',['../_revision_command_8cs.html',1,'']]], + ['revisioninformation_1672',['RevisionInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.Internal.RevisionInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Host.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#afbce76258f1516465571e4d91bddc52a',1,'Tgstation.Server.Api.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#abbaee1939efe1c98e5fd0656295f0ce9',1,'Tgstation.Server.Api.Models.Repository.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a30c14e7fc4c770ff11cd0f10be4fb4dd',1,'Tgstation.Server.Host.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a84e7e578fe5c0d7c09dc22f9085d7367',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.RevisionInformation()']]], + ['revisioninformation_2ecs_1673',['RevisionInformation.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html',1,'(Global Namespace)']]], + ['revisioninformations_1674',['RevisionInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#af0868b43356117d8cf252ae50c218b38',1,'Tgstation.Server.Host.Database.DatabaseContext.RevisionInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad249b9f42f44994b679cff760af48f98',1,'Tgstation.Server.Host.Database.DatabaseContext.RevisionInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a5633532d3f76127562905242d6a14e91',1,'Tgstation.Server.Host.Database.IDatabaseContext.RevisionInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6bc0b01df1f7ff3ba2abb74dd9d273b9',1,'Tgstation.Server.Host.Models.Instance.RevisionInformations()']]], + ['revisioninformationscollection_1675',['revisionInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aab44643db86309797a66d33fc4377017',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['revisoninformations_1676',['RevisonInformations',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac627e2326a3e3bc6673705b3e0e41f52',1,'Tgstation::Server::Host::Models::TestMerge']]], + ['rightshelper_1677',['RightsHelper',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html',1,'Tgstation::Server::Api::Rights']]], + ['rightshelper_2ecs_1678',['RightsHelper.cs',['../_rights_helper_8cs.html',1,'']]], + ['rightstype_1679',['RightsType',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a3b34b2621f1cbd39484e248ab1eda6ed',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.RightsType()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20',1,'Tgstation.Server.Api.Rights.RightsType()']]], + ['rightstype_2ecs_1680',['RightsType.cs',['../_rights_type_8cs.html',1,'']]], + ['righttotype_1681',['RightToType',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#ab694cd1b9b98a6be7d79f236a71b386c',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['rolename_1682',['RoleName',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#acbf514eba48e29a2dc177eb5ae34edd7',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['rolenames_3c_20tright_20_3e_1683',['RoleNames< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a08d444c5eb8868e931b37f11f9071f92',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['root_1684',['Root',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa336e9d55df01b49f6d217b48563900a',1,'Tgstation::Server::Api::Routes']]], + ['routes_1685',['Routes',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html',1,'Tgstation::Server::Api']]], + ['routes_2ecs_1686',['Routes.cs',['../_routes_8cs.html',1,'']]], + ['run_1687',['Run',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#a2b5c3521d783dd9eee7a3e4f2e03fc9f',1,'Tgstation.Server.Host.IServer.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a594aca268623a743fafd4acfed784e3f',1,'Tgstation.Server.Host.Server.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a5915daef37817261e058fd1d9251bd0a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Run()']]], + ['runasync_1688',['RunAsync',['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html#abe13ec45a7d7ba7db422ea661156b697',1,'Tgstation.Server.Host.Watchdog.IWatchdog.RunAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a3f2e5da2e83854873a9d8f986aff8f17',1,'Tgstation.Server.Host.Watchdog.Watchdog.RunAsync()']]], + ['runcompilejob_1689',['RunCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a90c81ec6a44a188164e5ae50e6430a7d',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['rundreammaker_1690',['RunDreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2c7d7d0048942b67b6c275cd4a643296',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['runimpersonated_1691',['RunImpersonated',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a9b525a56c704424ce14e78edcb7d003e',1,'Tgstation.Server.Host.Security.ISystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#ad8b0bb1cd74b0bc433afeb4dcc322594',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aaa070f717bb19b6d85f0253d7820bc75',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.RunImpersonated()']]], + ['runjob_1692',['RunJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ab886226b72e336cfe28a37233ed807dc',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['runrequest_3c_20tresult_20_3e_1693',['RunRequest< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a53176ca924a3696c940cef412df72f04',1,'Tgstation::Server::Client::ApiClient']]], + ['runtask_1694',['runTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afb100cbab0aa9560e4831bee360f9c0f',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['runtimeinformation_1695',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a8b6ace0334f5100fb3fa41e5a2755bda',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.RuntimeInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0fd772ae059a153465f76bda841292ef',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.RuntimeInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a62f468bd96fb1967080510a0c0aafe1a',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.RuntimeInformation()']]], + ['runtimeinformation_2ecs_1696',['RuntimeInformation.cs',['../_runtime_information_8cs.html',1,'']]], + ['runtimeinformationlock_1697',['runtimeInformationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab8d5fd229d05abf161538c6d7fc72b93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], + ['runwatchdog_1698',['RunWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a5ce97a95847cecf3650ae60f0f62d836',1,'Tgstation::Server::Host::Service::ServerService']]], + ['runwizard_1699',['RunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#af95450fea6b5b6d723d91198b7b41d8e',1,'Tgstation::Server::Host::Setup::SetupWizard']]] ]; diff --git a/search/all_13.html b/search/all_13.html index f7d46e7af6..56798ff041 100644 --- a/search/all_13.html +++ b/search/all_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_13.js b/search/all_13.js index 87409ecb3f..6b5333da16 100644 --- a/search/all_13.js +++ b/search/all_13.js @@ -1,184 +1,191 @@ var searchData= [ - ['server_20architecture_1654',['Server Architecture',['../architecture.html',1,'']]], - ['security_20policy_1655',['Security Policy',['../md__s_e_c_u_r_i_t_y.html',1,'']]], - ['safe_1656',['Safe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac6eea0560cd6f377e78dff2c85cc9122',1,'Tgstation::Server::Api::Models']]], - ['safehandle_1657',['safeHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b39626a97cb5d3618dfd6d2fcefa2',1,'Tgstation::Server::Host::System::Process']]], - ['sanitizedatabase_1658',['SanitizeDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1ed443f053ba4e1098f0e4099d23b774',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['sanitizegetpath_1659',['SanitizeGetPath',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a427423a8a36ba74df914acb74ffb0483',1,'Tgstation::Server::Api::Routes']]], - ['sasl_1660',['Sasl',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba722a094110489086589ef2ca86d2a516',1,'Tgstation::Server::Api::Models']]], - ['saslauthenticate_1661',['SaslAuthenticate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aeb5896c185ba2ea1b59197dab920febb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['save_1662',['Save',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#ad37308dbcca09a8621c7b1f7c443d6c3',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a4fb87f9615a098b3b6a6e2ae3dfb5558',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac2e88d53bf1b6ac87d175d83ed39da7c',1,'Tgstation.Server.Host.Database.DatabaseContext.Save()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a74e123c6393ad813f997c882a22b228e',1,'Tgstation.Server.Host.Database.IDatabaseContext.Save()']]], - ['saveconfiguration_1663',['SaveConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a411edd6a908eddd48051a38077d021cd',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['schemadowngradeforserverversion_1664',['SchemaDowngradeForServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a00d005a887ba10b9ed9f0e79af829c20',1,'Tgstation.Server.Host.Database.DatabaseContext.SchemaDowngradeForServerVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac34cc442f544f86aec48f1fe7570b8d2',1,'Tgstation.Server.Host.Database.IDatabaseContext.SchemaDowngradeForServerVersion()']]], - ['scopefactory_1665',['scopeFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a82349a843b7d53e907fbdcfd46bf91d2',1,'Tgstation::Server::Host::Database::DatabaseContextFactory']]], - ['scriptfileextension_1666',['ScriptFileExtension',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#a1d6690377df88fa0c142d72a949be17f',1,'Tgstation.Server.Host.System.IPlatformIdentifier.ScriptFileExtension()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ad297b56dc4222debfe147d786e7c3c78',1,'Tgstation.Server.Host.System.PlatformIdentifier.ScriptFileExtension()']]], - ['scriptname_1667',['ScriptName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a83d0ae0bc9554f29df970eaa741561dc',1,'Tgstation::Server::Host::Components::Events::EventScriptAttribute']]], - ['section_1668',['Section',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#adbbc553f0fd0f2eb4a69a8361c5a9c80',1,'Tgstation.Server.Host.Configuration.ControlPanelConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a3c3201b453ffd190158839da139e4a13',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a8450ea7764591aa38857686d8fc70f93',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a04dc43bd8ff33f4a8a791f750f7eb1d9',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#aeed3d84cee92ab5e7488d5c5b52493c7',1,'Tgstation.Server.Host.Configuration.UpdatesConfiguration.Section()']]], - ['securestringlength_1669',['SecureStringLength',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a893d5725e799a79d7a3dd172f098edb8',1,'Tgstation::Server::Host::Security::CryptographySuite']]], - ['security_2emd_1670',['SECURITY.md',['../_s_e_c_u_r_i_t_y_8md.html',1,'']]], - ['securitylevel_1671',['SecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aab2ca846e0aade7de3cfcea099f40fa4',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.SecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a95bc8bd7c56ff9866795ec3823847c9c',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.SecurityLevel()']]], - ['securityword_1672',['SecurityWord',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a25959f5d45d10e44c570751a957a3f43',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['seedadminuser_1673',['SeedAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a58329cfe5297b2569da770f7c05e1fbf',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['seeddatabase_1674',['SeedDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a09fc7208df756283dd6b475cfe013151',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['seedsystemuser_1675',['SeedSystemUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ad65df3157dcd8d5485b4564fa7f92798',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['semaphore_1676',['semaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a192e5a69ce9c2300f588cc65af3a64f2',1,'Tgstation.Server.Host.Components.Byond.ByondManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ae6aa8519a6401fc95218f2de88080605',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a550982dbdc2ce226e878702a520bbe27',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af64bb7e6efa9991a5a3a14993a3277e8',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.semaphore()']]], - ['semaphoreslim_1677',['semaphoreSlim',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ada5764977cc200cc19bb38db0b0fe1e4',1,'Tgstation::Server::Client::ApiClient']]], - ['semaphoreslimcontext_1678',['SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a600d8d0a279d2fe17d1f48c1a1bd17d4',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.SemaphoreSlimContext()']]], - ['semaphoreslimcontext_2ecs_1679',['SemaphoreSlimContext.cs',['../_semaphore_slim_context_8cs.html',1,'']]], - ['semver_1680',['Semver',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html#a1b4171b48717e9fcd5b00dd9613f7a65',1,'Tgstation::Server::Api::VersionExtensions']]], - ['sendasync_1681',['SendAsync',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a3564ac1eca649d3318f91116a3123279',1,'Tgstation.Server.Client.HttpClient.SendAsync()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#a7c73a8c52b38c69ed369036d186192de',1,'Tgstation.Server.Client.IHttpClient.SendAsync()']]], - ['sendcommand_1682',['SendCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad40f0e4194627c357bae9ed3ef135e66',1,'Tgstation.Server.Host.Components.Session.ISessionController.SendCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab45f8ef0b9ff253433d2122f5e3ba455',1,'Tgstation.Server.Host.Components.Session.SessionController.SendCommand()']]], - ['senddeploymentmessage_1683',['SendDeploymentMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac952a5db509eb59655c1f83b1f0530a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendDeploymentMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#aa21f71a08aaebd2b27e1d5d716ac1124',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendDeploymentMessage()']]], - ['sendmessage_1684',['SendMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae07221cd9d0d39ce4a0bb1453a221027',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a75c070c958da3a46d0deee9f243f3624',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac986f3eaca89e94c1a16d3a6392c44dd',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ad0b951bd26aed974f63c3e11971eb009',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a8bfdc6f40539bde1282c4c8c002ce7e0',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a89fe4a51bf3659db42995a39cc607285',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a23bd1ebb88ecd7ec9ae0ae7b867a05e7',1,'Tgstation.Server.Host.NativeMethods.SendMessage()']]], - ['sendmessagecount_1685',['SendMessageCount',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a6c18ae3a8fda9fa9973b0a8a396328f4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['sendupdatemessage_1686',['SendUpdateMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a99ee167ed1b5c1175b176da1ecbc4be7',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendUpdateMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a0b36493529119db3cdfa915c0fa5a11c',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#afd537fd81c6189f08d4fa654107643a9',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a6ef4f05ff34e0e1ec0eb682d959ce6dd',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendUpdateMessage()']]], - ['sendwatchdogmessage_1687',['SendWatchdogMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a3b2636d279f80828111c2bf94288983e',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendWatchdogMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a084ec3f50264304b5aa437e58a09f313',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendWatchdogMessage()']]], - ['serializersettings_1688',['SerializerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a38c0e12f070e67fbdedfce3854c58d42',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['serilogcontexttemplate_1689',['SerilogContextTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a2c8521a096ca983ff3cfe7b6356406d8',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], - ['server_1690',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_server.html',1,'Tgstation.Server.Host.Server'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a8055d121e620784216311342fa30f715',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.Server()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#af345987c7e61e037445810ae96d8da52',1,'Tgstation.Server.Host.Server.Server()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba9aa1b03934893d7134a660af4204f2a9',1,'Tgstation.Server.Api.Models.Server()']]], - ['server_2ecs_1691',['Server.cs',['../_server_8cs.html',1,'']]], - ['serverapiversion_1692',['ServerApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a9308db77bea5178c7fe198cc61348afe',1,'Tgstation.Server.Api.Models.ErrorMessage.ServerApiVersion()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a281531bad45554e8e35c02bd7c43ee38',1,'Tgstation.Server.Client.ApiException.ServerApiVersion()']]], - ['serverclient_1693',['ServerClient',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html',1,'Tgstation.Server.Client.ServerClient'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#aeb7a24a33819012790a38d5fceb2c8bb',1,'Tgstation.Server.Client.ServerClient.ServerClient()']]], - ['serverclient_2ecs_1694',['ServerClient.cs',['../_server_client_8cs.html',1,'']]], - ['serverclientfactory_1695',['ServerClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html',1,'Tgstation.Server.Client.ServerClientFactory'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#ae72794d4ee4b75d442896ef3764d435b',1,'Tgstation.Server.Client.ServerClientFactory.ServerClientFactory()']]], - ['serverclientfactory_2ecs_1696',['ServerClientFactory.cs',['../_server_client_factory_8cs.html',1,'']]], - ['servercontrol_1697',['ServerControl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a83607d97387c92ed33c6640f0cd4ee1a',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.ServerControl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a6b86256a68eff2c15b42badd8159a2f0',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.serverControl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ac2ba10fddea5448f4c8c08f363a0e391',1,'Tgstation.Server.Host.Components.InstanceManager.serverControl()']]], - ['servererrorexception_1698',['ServerErrorException',['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html',1,'Tgstation.Server.Client.ServerErrorException'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a3c0883bc41902cff9f2becfdb64c0d97',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#ab9f532a000df4b5bdcf6a28a975f7018',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a2426a2796880232113cfd743b1010fdb',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(string message, Exception innerException)']]], - ['servererrorexception_2ecs_1699',['ServerErrorException.cs',['../_server_error_exception_8cs.html',1,'']]], - ['serverfactory_1700',['ServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html',1,'Tgstation::Server::Host']]], - ['serverfactory_2ecs_1701',['ServerFactory.cs',['../_server_factory_8cs.html',1,'']]], - ['serverinformation_1702',['ServerInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html',1,'Tgstation.Server.Api.Models.Internal.ServerInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html',1,'Tgstation.Server.Api.Models.ServerInformation']]], - ['serverinformation_2ecs_1703',['ServerInformation.cs',['../_internal_2_server_information_8cs.html',1,'(Global Namespace)'],['../_server_information_8cs.html',1,'(Global Namespace)']]], - ['serverport_1704',['ServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a34f2ed18e36028c8a913c4c542fc9dba',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['serverportproivder_1705',['ServerPortProivder',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html',1,'Tgstation.Server.Host.Core.ServerPortProivder'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#afbd7d7c3ac25fb1c29cfaeea3851672b',1,'Tgstation.Server.Host.Core.ServerPortProivder.ServerPortProivder()']]], - ['serverportproivder_2ecs_1706',['ServerPortProivder.cs',['../_server_port_proivder_8cs.html',1,'']]], - ['serverportprovider_1707',['serverPortProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a978034e4b8017f55b969b65a4949b4b6',1,'Tgstation.Server.Host.Components.InstanceFactory.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad5b7e13dc94565671f962eb9fe62fd82',1,'Tgstation.Server.Host.Components.InstanceManager.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a14b84906ae2ddd580d5735ebf3ba9917',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider()']]], - ['serverportupdate_1708',['ServerPortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a295c0edab602acabdac91a82767b91f2',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['serverrestarted_1709',['ServerRestarted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8ad94a47cc065789bfb02933dc8be84a70',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['serverservice_1710',['ServerService',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html',1,'Tgstation.Server.Host.Service.ServerService'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a3f4d7655e24f18f6929e48f48c79b0a2',1,'Tgstation.Server.Host.Service.ServerService.ServerService()']]], - ['serverservice_2ecs_1711',['ServerService.cs',['../_server_service_8cs.html',1,'']]], - ['serversidemodifications_1712',['ServerSideModifications',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html',1,'Tgstation.Server.Host.Components.StaticFiles.ServerSideModifications'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a80a1a88d3e1f59d285b91563e86e2ef8',1,'Tgstation.Server.Host.Components.StaticFiles.ServerSideModifications.ServerSideModifications()']]], - ['serversidemodifications_2ecs_1713',['ServerSideModifications.cs',['../_server_side_modifications_8cs.html',1,'']]], - ['serverupdateinprogress_1714',['ServerUpdateInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7b3644a07defb6b7df279cc44dc46adb',1,'Tgstation::Server::Api::Models']]], - ['serverupdater_1715',['serverUpdater',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a860fa70ca4b87deb3f9e6f550d57dc72',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['serverversion_1716',['ServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a58c14ed1399e171958dfe450be84c3cf',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.ServerVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a37d2a2cb232af1fcc3a5ea4139a052e9',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ServerVersion()']]], - ['servicebase_1717',['ServiceBase',['../class_service_base.html',1,'']]], - ['servicecollectionextensions_1718',['ServiceCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['servicecollectionextensions_2ecs_1719',['ServiceCollectionExtensions.cs',['../_service_collection_extensions_8cs.html',1,'']]], - ['serviceunavailableexception_1720',['ServiceUnavailableException',['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html',1,'Tgstation.Server.Client.ServiceUnavailableException'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a5a4fcd887f74c9658dd181a3cf7204cb',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a6a729a7fa03b7a6bfebf6df9935b89a5',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a49a6d51cf0a76f247c3ea7bcc42f638f',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message, Exception innerException)']]], - ['serviceunavailableexception_2ecs_1721',['ServiceUnavailableException.cs',['../_service_unavailable_exception_8cs.html',1,'']]], - ['sessioncontroller_1722',['SessionController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html',1,'Tgstation.Server.Host.Components.Session.SessionController'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca4798c3df5c740c0690c6b13db4f0f0',1,'Tgstation.Server.Host.Components.Session.SessionController.SessionController()']]], - ['sessioncontroller_2ecs_1723',['SessionController.cs',['../_session_controller_8cs.html',1,'']]], - ['sessioncontrollerfactory_1724',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8322a848923985ee4e06d792dccb8643',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.sessionControllerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24eb5f0e32cd79487cd9bd80d5257abb',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.SessionControllerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a4fd5439afd33fbdc96ab8170681e6c78',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory()']]], - ['sessioncontrollerfactory_2ecs_1725',['SessionControllerFactory.cs',['../_session_controller_factory_8cs.html',1,'']]], - ['sessionpersistor_1726',['SessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html',1,'Tgstation.Server.Host.Components.Session.SessionPersistor'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a76a88605b050495c652cd06f2947e482',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.sessionPersistor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#abe5082b7b4dc502b717e946a90349bb6',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.SessionPersistor()']]], - ['sessionpersistor_2ecs_1727',['SessionPersistor.cs',['../_session_persistor_8cs.html',1,'']]], - ['setactiveversion_1728',['SetActiveVersion',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a798c9e8b4b224f3a78791f765d69b304',1,'Tgstation.Server.Client.Components.ByondClient.SetActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a76a30723a9370f391d4ca12fb31e5c71',1,'Tgstation.Server.Client.Components.IByondClient.SetActiveVersion()']]], - ['setapivalidationport_1729',['SetApiValidationPort',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da926d34b9044ba920f715e8e2f6a72c62',1,'Tgstation::Server::Api::Rights']]], - ['setapivalidationrequirement_1730',['SetApiValidationRequirement',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dafcfa8539b3ffa73a3ae9c81d1c75427f',1,'Tgstation::Server::Api::Rights']]], - ['setautostart_1731',['SetAutoStart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ac73c1c7e96a1b68753840b8502528ab0',1,'Tgstation::Server::Api::Rights']]], - ['setautoupdate_1732',['SetAutoUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e54e04dba31375a3401f9f300a80d81',1,'Tgstation::Server::Api::Rights']]], - ['setautoupdateinterval_1733',['SetAutoUpdateInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a6023b54cb82a2300ec2b4088562ff5e4',1,'Tgstation.Server.Host.Components.IInstanceCore.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a9c7e2863cce30a01be66c0ce1dd07d9c',1,'Tgstation.Server.Host.Components.Instance.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a334385255e88789d71085f432aa71566',1,'Tgstation.Server.Host.Components.InstanceWrapper.SetAutoUpdateInterval()']]], - ['setchannelsink_1734',['SetChannelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a297f6228dbcf551f76768322b4214863',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.SetChannelSink()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#affd4bf60a56058a56804994741cceff5',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.SetChannelSink()']]], - ['setchatbotlimit_1735',['SetChatBotLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa0526dcf7b059eda11e1e3bc375eb6d0',1,'Tgstation::Server::Api::Rights']]], - ['setconfiguration_1736',['SetConfiguration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e423f35163ade75efce4061c98e1803',1,'Tgstation::Server::Api::Rights']]], - ['setconnectionstringbuilder_1737',['SetConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#ad289a7498cd4082d22ccd610107883ea',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['setdme_1738',['SetDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da14814465c8710a1dd49b3642c172ed36',1,'Tgstation::Server::Api::Rights']]], - ['sethandler_1739',['SetHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a593d81a97b0b00221c098a3c04049800',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], - ['setheartbeatinterval_1740',['SetHeartbeatInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a56edaf677f0c63f6d6b0d6bd90f151cc',1,'Tgstation::Server::Api::Rights']]], - ['sethighpriority_1741',['SetHighPriority',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a682e5041a73a975a85fa38ea6511d2a6',1,'Tgstation.Server.Host.Components.Session.SessionController.SetHighPriority()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a4c32c6fcf031cd1c996b505e6c58e510',1,'Tgstation.Server.Host.System.IProcessBase.SetHighPriority()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a60950c5460a2ac65c8040adbe67f711b',1,'Tgstation.Server.Host.System.Process.SetHighPriority()']]], - ['setid_1742',['SetID',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a0266a146dbc57a7c6168533d7a7b10eb',1,'Tgstation::Server::Api::Routes']]], - ['setonline_1743',['SetOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a49241bae6f08ea45c321cbee8ce70cda',1,'Tgstation::Server::Api::Rights']]], - ['setorigin_1744',['SetOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a4cfe869c65c26d572cd5ab1b98abdb6a',1,'Tgstation::Server::Api::Rights']]], - ['setport_1745',['SetPort',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ae21b1684e07b6cc8facf0812bb255c32',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3183d3610d700b1da9983b67cb1b558a',1,'Tgstation.Server.Host.Components.Session.SessionController.SetPort()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a7b2bea9e62a2137bc0bda533fb22b350',1,'Tgstation.Server.Api.Rights.SetPort()']]], - ['setrebootstate_1746',['SetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6977882b5d7c0c7a1e280197384c7836',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3d2e9a55c08feb9a37492f537efa75bd',1,'Tgstation.Server.Host.Components.Session.SessionController.SetRebootState()']]], - ['setreconnectinterval_1747',['SetReconnectInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a8f13abd1df7147c47d6d1a8e4577b9e6',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SetReconnectInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac4642b423570a979ed7d0ae2b3b73ea3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SetReconnectInterval()']]], - ['setreference_1748',['SetReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a177459d00b7f29a44b87c9a5e1cb1f11',1,'Tgstation::Server::Api::Rights']]], - ['setrequestheaders_1749',['SetRequestHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a5f9f37923fe9811ceb4556af0ebfc8aa',1,'Tgstation::Server::Api::ApiHeaders']]], - ['setruntimeinformation_1750',['SetRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a56616a95d65e523becb086f2042d8a93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], - ['setsecurity_1751',['SetSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ad01c76a7263a2d3af037a139b8563b5a',1,'Tgstation::Server::Api::Rights']]], - ['setsecuritylevel_1752',['SetSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dab49667168f82f3007e86f44c40e6322c',1,'Tgstation::Server::Api::Rights']]], - ['setsha_1753',['SetSha',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39ad8c2d7ddc75692573d20ed5254fcd06a',1,'Tgstation::Server::Api::Rights']]], - ['setstartuptimeout_1754',['SetStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae34541119c09d49ca1ba51be76c98aa1',1,'Tgstation::Server::Api::Rights']]], - ['settopictimeout_1755',['SetTopicTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a598cfc66b07c2c5b69d5cc126492418a',1,'Tgstation::Server::Api::Rights']]], - ['setupapplication_1756',['SetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html',1,'Tgstation.Server.Host.Setup.SetupApplication'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a84d9dcc04d19491908f337980bfc36dc',1,'Tgstation.Server.Host.Setup.SetupApplication.SetupApplication()']]], - ['setupapplication_2ecs_1757',['SetupApplication.cs',['../_setup_application_8cs.html',1,'']]], - ['setuplogging_1758',['SetupLogging',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a1562e1868bb163db228ef906085ed14f',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], - ['setupwizard_1759',['SetupWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html',1,'Tgstation.Server.Host.Setup.SetupWizard'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a6351c594125cd749e35ac937dc482ea1',1,'Tgstation.Server.Host.Setup.SetupWizard.SetupWizard()']]], - ['setupwizard_2ecs_1760',['SetupWizard.cs',['../_setup_wizard_8cs.html',1,'']]], - ['setupwizardmode_1761',['SetupWizardMode',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#ace6cef6156eebad4a760e3d9f58dcb7e',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.SetupWizardMode()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1',1,'Tgstation.Server.Host.Configuration.SetupWizardMode()']]], - ['setupwizardmode_2ecs_1762',['SetupWizardMode.cs',['../_setup_wizard_mode_8cs.html',1,'']]], - ['setuserpassword_1763',['SetUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a0936b97992a82380047925e656b4bdae',1,'Tgstation.Server.Host.Security.CryptographySuite.SetUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#aeab60aa0a0ee2cb5e2ad5dbde1983430',1,'Tgstation.Server.Host.Security.ICryptographySuite.SetUserPassword()']]], - ['setwatchdog_1764',['SetWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a38465548f0041dfcd4cd148c8452f437',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.SetWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a541045879b6d679230dfeb27f9246f9c',1,'Tgstation.Server.Host.Components.Events.EventConsumer.SetWatchdog()']]], - ['setwebclient_1765',['SetWebClient',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aba69275e93f440b20e7bebe7be6f8a7c',1,'Tgstation::Server::Api::Rights']]], - ['shaisparent_1766',['ShaIsParent',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a364b05c74603f9ee3f18cc012014465e',1,'Tgstation.Server.Host.Components.Repository.IRepository.ShaIsParent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a47a1cdcdc3ea945b53a727fed3691c27',1,'Tgstation.Server.Host.Components.Repository.Repository.ShaIsParent()']]], - ['shellscriptextension_1767',['ShellScriptExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a979586ccac8fef0e0a10b9e2f5bfa339',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['showtestmergecommitters_1768',['ShowTestMergeCommitters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad0559033aa2ab7b93c9e63e3b31d2ddd',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['shutdown_1769',['Shutdown',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a42a57cfe50960559e8d8c2c003cb27f5',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Shutdown()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a6dd7bcf744d8804790ece473931f378b',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Shutdown()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Api.Rights.Shutdown()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Host.Components.Session.Shutdown()']]], - ['skip_1770',['Skip',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a72ef2b9b6965d078e3c7f95487a82d1c',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['sladdheartbeat_1771',['SLAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slallownulldmapi_1772',['SLAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slrebuild_1773',['SLRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slremoveexperimentalwatchdog_1774',['SLRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slremovesoftcolumns_1775',['SLRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['sltopictimeout_1776',['SLTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['socketextensions_1777',['SocketExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['socketextensions_2ecs_1778',['SocketExtensions.cs',['../_socket_extensions_8cs.html',1,'']]], - ['softrestart_1779',['SoftRestart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a24b03adbbc3a308d6a6ce6edc9846e17',1,'Tgstation.Server.Api.Models.DreamDaemon.SoftRestart()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a31d920012be69305899466206d2a4823',1,'Tgstation.Server.Api.Rights.SoftRestart()']]], - ['softshutdown_1780',['SoftShutdown',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8388db2f41c2eed9f9783260f7a69bbe',1,'Tgstation.Server.Api.Models.DreamDaemon.SoftShutdown()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae814f60fe597531f5630e0aef1adea94',1,'Tgstation.Server.Api.Rights.SoftShutdown()']]], - ['sqlite_1781',['Sqlite',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca283f4ac146a612fabb50409a640cf21b',1,'Tgstation::Server::Host::Configuration']]], - ['sqlitedatabasecontext_1782',['SqliteDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a08142c9e591f05e0e6424b25f1198688',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.SqliteDatabaseContext()']]], - ['sqlitedatabasecontext_2ecs_1783',['SqliteDatabaseContext.cs',['../_sqlite_database_context_8cs.html',1,'']]], - ['sqlitedatabasecontextmodelsnapshot_1784',['SqliteDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['sqlitedatabasecontextmodelsnapshot_2ecs_1785',['SqliteDatabaseContextModelSnapshot.cs',['../_sqlite_database_context_model_snapshot_8cs.html',1,'']]], - ['sqlitedesigntimedbcontextfactory_1786',['SqliteDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['sqlitedesigntimedbcontextfactory_2ecs_1787',['SqliteDesignTimeDbContextFactory.cs',['../_sqlite_design_time_db_context_factory_8cs.html',1,'']]], - ['sqlserver_1788',['SqlServer',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617cae86e829e4d4c68b30a4fd26aa2bfca72',1,'Tgstation::Server::Host::Configuration']]], - ['sqlserverdatabasecontext_1789',['SqlServerDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#a0d17265d1aab0819b7891c9cc29e5ab9',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext.SqlServerDatabaseContext()']]], - ['sqlserverdatabasecontext_2ecs_1790',['SqlServerDatabaseContext.cs',['../_sql_server_database_context_8cs.html',1,'']]], - ['sqlserverdatabasecontextmodelsnapshot_1791',['SqlServerDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['sqlserverdatabasecontextmodelsnapshot_2ecs_1792',['SqlServerDatabaseContextModelSnapshot.cs',['../_sql_server_database_context_model_snapshot_8cs.html',1,'']]], - ['sqlserverdesigntimedbcontextfactory_1793',['SqlServerDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['sqlserverdesigntimedbcontextfactory_2ecs_1794',['SqlServerDesignTimeDbContextFactory.cs',['../_sql_server_design_time_db_context_factory_8cs.html',1,'']]], - ['stagedcompilejob_1795',['StagedCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8a8a50c1744b2264c242676b4ce3914d',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['standarderrortask_1796',['standardErrorTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4f257f5cb5c9662edf9bcb6b059e1',1,'Tgstation::Server::Host::System::Process']]], - ['standardmodelchecks_1797',['StandardModelChecks',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1079cc001cfaf55fa44aae68d9b106f5',1,'Tgstation::Server::Host::Controllers::ChatController']]], - ['standardoutputtask_1798',['standardOutputTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a80e20c64fa56f3d3f39dad15af37028b',1,'Tgstation::Server::Host::System::Process']]], - ['start_1799',['Start',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a9c62e25db987e4847e6a4a8e04a72b2c',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Start()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a97ceb0b52366f1b4ce685ef8399c44e5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Start()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aba7a308e3f45a2403f388ca1e7d42e52',1,'Tgstation.Server.Host.Jobs.JobHandler.Start()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aa6122a65eaa676f700ae68d393054a37',1,'Tgstation.Server.Api.Rights.Start()']]], - ['startasync_1800',['StartAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a7b6d8a1eef58f0e3265a67ebe9036f13',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae189d33da50a0791f4caf35fa3eb2567',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ae898120e96809cdb6bbd582072bcff71',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a11cc04923d2557eefd57ad2ded9eb7f2',1,'Tgstation.Server.Host.Components.Instance.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aabf10dd79c9488de365bb8de0129b74b',1,'Tgstation.Server.Host.Components.InstanceFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa2bcc92fca46ad404800304ce4bdd781',1,'Tgstation.Server.Host.Components.InstanceManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af05de18337edc2207b60b080de230802',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ae30d4b582b04eb7c3ef3c5d848429bbd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa3ab90c932ef1f25299d046a103bfe7c',1,'Tgstation.Server.Host.Jobs.JobManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae78c3f7bde77d9470e413adba88d2ae4',1,'Tgstation.Server.Host.Setup.SetupWizard.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a4da1abbdff058acc086c60bac413df19',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StartAsync()']]], - ['startedat_1801',['StartedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a0988d9930cae8f698a17c20d3e8cec9a',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['startedby_1802',['StartedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#abb86696a2a25cf3259c16603745de887',1,'Tgstation.Server.Api.Models.Job.StartedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aeb64c30e0787225682030adf2d2af036',1,'Tgstation.Server.Host.Models.Job.StartedBy()']]], - ['startup_1803',['Startup',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a31134a65d5338a2ba017ff3f0b276776',1,'Tgstation.Server.Host.System.IProcess.Startup()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab4a4559a320a7a43607d3a705d86a9e8',1,'Tgstation.Server.Host.System.Process.Startup()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da13e685964c2548aa748f7ea263bad4e5',1,'Tgstation.Server.Host.Components.Interop.Bridge.Startup()']]], - ['startupdmbprovider_1804',['startupDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#afa65470fdf88d190f47de568b3b9791e',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['startuptime_1805',['StartupTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a3a760923a1f56b674537f908b0f74c1b',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], - ['startuptimeout_1806',['StartupTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aa3ac63088b89bf67dd5fdbe67970b03d',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['staticignorefile_1807',['StaticIgnoreFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3c23fe94867b94fa0833f4a789830fd1',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['staticignorepath_1808',['StaticIgnorePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a4a5436d55e83759de84d17871039d752',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['status_1809',['status',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5c8949750c7c079faf8d438fde20c6c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.status()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a374f3676c32da4421a9bbb9bdbb74bcd',1,'Tgstation.Server.Api.Models.DreamDaemon.Status()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a81f00a3e7109a861886d14e6233d8b43',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Status()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5fa8be05b0c448ea097a70e5d8708ffb',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Status()']]], - ['statuscode_1810',['StatusCode',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a978fe89eeaea424d7e034d2c7ab7b76e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#adc93040c7a61d510292e387329d3f00e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode, object errorMessage)']]], - ['stopasync_1811',['StopAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a691493488b449c0589784dc2f91e039b',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#af798c33e00b6fbbf046c8459cfd06eab',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a7500062f2bc5c4ee14b84b548bf55161',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afc1fd9e8dc3bd57b78dbcbc4e7f449b4',1,'Tgstation.Server.Host.Components.Instance.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad758c3c739d563f51b44b8429acadc9',1,'Tgstation.Server.Host.Components.InstanceFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa1a2f2c9fe345546fd5f8ae27fe466b',1,'Tgstation.Server.Host.Components.InstanceManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a33a5cd96e75dae867c113915bd6ebb27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec4f16b34fe08499a4aaff0235ecdc76',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a95381df073387e7bfc526757bb06ae57',1,'Tgstation.Server.Host.Jobs.JobManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a28d5e473c14aa957f87ff37a62284a66',1,'Tgstation.Server.Host.Setup.SetupWizard.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ad6fae1f6711012cda24238db8833bdef',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StopAsync()']]], - ['stopmonitor_1812',['StopMonitor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a565b987a394c375c75b3fe14ca3f75e1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['stoppedat_1813',['StoppedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a2b6b6dbe1243f140d9fb04767ea16c61',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['stopreconnectiontimer_1814',['StopReconnectionTimer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a19cca90f9904a5d3535cd27c3e3fe3fe',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['subdirectory_1815',['subdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a02d7c98f480664056ad8dbe912003ae9',1,'Tgstation::Server::Host::IO::ResolvingIOManager']]], - ['suspend_1816',['Suspend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0dad64e931bd586e45de09d28027cf50',1,'Tgstation.Server.Host.Components.Session.SessionController.Suspend()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a50cf121e04a59decc0262d2eaef0845f',1,'Tgstation.Server.Host.System.IProcessBase.Suspend()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a639ecf20dfbbd73e72f4b181d0b89243',1,'Tgstation.Server.Host.System.Process.Suspend()']]], - ['suspendprocess_1817',['SuspendProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ac6b97694917044ddce0c3ba9c8478246',1,'Tgstation.Server.Host.System.IProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1c0faded339a483cc9e2f513ec7d5cee',1,'Tgstation.Server.Host.System.PosixProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a08d35b105b285a19f77df6c863c5cfeb',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.SuspendProcess()']]], - ['suspendresume_1818',['SuspendResume',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52aa225c7a85340534236811e3cae22e885e',1,'Tgstation::Server::Host::NativeMethods']]], - ['suspendthread_1819',['SuspendThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a21ce8310ad8c05110a45b1f2b6892697',1,'Tgstation::Server::Host::NativeMethods']]], - ['swaggerconfiguration_1820',['SwaggerConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html',1,'Tgstation::Server::Host::Core']]], - ['swaggerconfiguration_2ecs_1821',['SwaggerConfiguration.cs',['../_swagger_configuration_8cs.html',1,'']]], - ['swappabledmbprovider_1822',['SwappableDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ada4c525ee4e74e9ae5017d4f5816d888',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.SwappableDmbProvider()']]], - ['swappabledmbprovider_2ecs_1823',['SwappableDmbProvider.cs',['../_swappable_dmb_provider_8cs.html',1,'']]], - ['sychronize_1824',['Sychronize',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a5f8ea07e50eb3d5d272b956a6e2543b5',1,'Tgstation.Server.Host.Components.Repository.IRepository.Sychronize()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afd7c7599794e9541d6134a30d5d7e683',1,'Tgstation.Server.Host.Components.Repository.Repository.Sychronize()']]], - ['symlinkfactory_1825',['symlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#abe731c7399d16f3e98e3f9b996c348b1',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae9583eef7d68626e70fd30097b6db87c',1,'Tgstation.Server.Host.Components.InstanceFactory.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a52deb2c99db89b8e8dfb4bf1a5fd3f',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a65ab5bf0783d6732eb6b1018f7a1983a',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a3fcbf9a187ea2b1d389a2543b841ccef',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.SymlinkFactory()']]], - ['symlinkstaticfilesto_1826',['SymlinkStaticFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af7ad93cfb1c7c7718a3b1ffe3e12d42d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a255b4504ec55e9a4c006463db8aaa61e',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.SymlinkStaticFilesTo()']]], - ['synchronizationlock_1827',['synchronizationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a1ac2daf67a09f128290588a5181c88ba',1,'Tgstation.Server.Host.Components.Chat.ChatManager.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#ab3b8d2b85773e2d5e5f63aff3e8c27eb',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0bbceae0e217ef75fc3989124017856d',1,'Tgstation.Server.Host.Components.Session.SessionController.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aec64bbed8584f4daad12932098999e1b',1,'Tgstation.Server.Host.Jobs.JobManager.synchronizationLock()']]], - ['synchronizationsemaphore_1828',['synchronizationSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a7e6adcb942a9ff1bb7d11d738b98b6e4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['synchronousiomanager_1829',['SynchronousIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html',1,'Tgstation.Server.Host.IO.SynchronousIOManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a2b14e009e117f22b206bbdf743712809',1,'Tgstation.Server.Host.Components.InstanceFactory.synchronousIOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a29a360d050eedfecf24a5d7a75331f1d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.synchronousIOManager()']]], - ['synchronousiomanager_2ecs_1830',['SynchronousIOManager.cs',['../_synchronous_i_o_manager_8cs.html',1,'']]], - ['systemidentifier_1831',['SystemIdentifier',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#af54beced1148cb5e7e8f114469fd577a',1,'Tgstation::Server::Api::Models::Internal::User']]], - ['systemidentity_1832',['SystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a05ce72960f78e0a11148f44292f3fb7b',1,'Tgstation.Server.Host.Security.AuthenticationContext.SystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a01b4dc318a62fa3b321593418eb1247e',1,'Tgstation.Server.Host.Security.IAuthenticationContext.SystemIdentity()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a86a823a9e7ee94f2497bfae86c1efeed',1,'Tgstation.Server.Host.Security.IdentityCacheObject.SystemIdentity()']]], - ['systemidentityfactory_1833',['systemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a914147c0498a9b2482efe956486646fb',1,'Tgstation.Server.Host.Components.InstanceManager.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a82f9e135570d468d3a0cfbf645e2f0ae',1,'Tgstation.Server.Host.Controllers.HomeController.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#adcb096909c25a05c74f2714128607c05',1,'Tgstation.Server.Host.Controllers.UserController.systemIdentityFactory()']]], - ['systemidentitywrite_1834',['SystemIdentityWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ab027b6d7abbf6c6fa50c64fc51437bce',1,'Tgstation::Server::Api::Models']]] + ['server_20architecture_1700',['Server Architecture',['../architecture.html',1,'']]], + ['security_20policy_1701',['Security Policy',['../md__s_e_c_u_r_i_t_y.html',1,'']]], + ['safe_1702',['Safe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac6eea0560cd6f377e78dff2c85cc9122',1,'Tgstation::Server::Api::Models']]], + ['safehandle_1703',['safeHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b39626a97cb5d3618dfd6d2fcefa2',1,'Tgstation::Server::Host::System::Process']]], + ['sanitizedatabase_1704',['SanitizeDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1ed443f053ba4e1098f0e4099d23b774',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['sanitizegetpath_1705',['SanitizeGetPath',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a427423a8a36ba74df914acb74ffb0483',1,'Tgstation::Server::Api::Routes']]], + ['sasl_1706',['Sasl',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba722a094110489086589ef2ca86d2a516',1,'Tgstation::Server::Api::Models']]], + ['saslauthenticate_1707',['SaslAuthenticate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aeb5896c185ba2ea1b59197dab920febb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['save_1708',['Save',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#ad37308dbcca09a8621c7b1f7c443d6c3',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a4fb87f9615a098b3b6a6e2ae3dfb5558',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac2e88d53bf1b6ac87d175d83ed39da7c',1,'Tgstation.Server.Host.Database.DatabaseContext.Save()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a74e123c6393ad813f997c882a22b228e',1,'Tgstation.Server.Host.Database.IDatabaseContext.Save()']]], + ['saveconfiguration_1709',['SaveConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a411edd6a908eddd48051a38077d021cd',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['schemadowngradeforserverversion_1710',['SchemaDowngradeForServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a00d005a887ba10b9ed9f0e79af829c20',1,'Tgstation.Server.Host.Database.DatabaseContext.SchemaDowngradeForServerVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac34cc442f544f86aec48f1fe7570b8d2',1,'Tgstation.Server.Host.Database.IDatabaseContext.SchemaDowngradeForServerVersion()']]], + ['scopefactory_1711',['scopeFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a82349a843b7d53e907fbdcfd46bf91d2',1,'Tgstation::Server::Host::Database::DatabaseContextFactory']]], + ['scriptfileextension_1712',['ScriptFileExtension',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#a1d6690377df88fa0c142d72a949be17f',1,'Tgstation.Server.Host.System.IPlatformIdentifier.ScriptFileExtension()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ad297b56dc4222debfe147d786e7c3c78',1,'Tgstation.Server.Host.System.PlatformIdentifier.ScriptFileExtension()']]], + ['scriptname_1713',['ScriptName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a83d0ae0bc9554f29df970eaa741561dc',1,'Tgstation::Server::Host::Components::Events::EventScriptAttribute']]], + ['section_1714',['Section',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#adbbc553f0fd0f2eb4a69a8361c5a9c80',1,'Tgstation.Server.Host.Configuration.ControlPanelConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a3c3201b453ffd190158839da139e4a13',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a8450ea7764591aa38857686d8fc70f93',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a04dc43bd8ff33f4a8a791f750f7eb1d9',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a63e264392098db4e986d5dd638fe7fb5',1,'Tgstation.Server.Host.Configuration.SecurityConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#aeed3d84cee92ab5e7488d5c5b52493c7',1,'Tgstation.Server.Host.Configuration.UpdatesConfiguration.Section()']]], + ['securestringlength_1715',['SecureStringLength',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a893d5725e799a79d7a3dd172f098edb8',1,'Tgstation::Server::Host::Security::CryptographySuite']]], + ['security_2emd_1716',['SECURITY.md',['../_s_e_c_u_r_i_t_y_8md.html',1,'']]], + ['securityconfiguration_1717',['SecurityConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html',1,'Tgstation.Server.Host.Configuration.SecurityConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a7a3a2caa72cb52375ab691e09c1d6870',1,'Tgstation.Server.Host.Security.TokenFactory.securityConfiguration()']]], + ['securityconfiguration_2ecs_1718',['SecurityConfiguration.cs',['../_security_configuration_8cs.html',1,'']]], + ['securitylevel_1719',['SecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aab2ca846e0aade7de3cfcea099f40fa4',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.SecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a95bc8bd7c56ff9866795ec3823847c9c',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.SecurityLevel()']]], + ['securityword_1720',['SecurityWord',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a25959f5d45d10e44c570751a957a3f43',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['seedadminuser_1721',['SeedAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a58329cfe5297b2569da770f7c05e1fbf',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['seeddatabase_1722',['SeedDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a09fc7208df756283dd6b475cfe013151',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['seedsystemuser_1723',['SeedSystemUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ad65df3157dcd8d5485b4564fa7f92798',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['semaphore_1724',['semaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a192e5a69ce9c2300f588cc65af3a64f2',1,'Tgstation.Server.Host.Components.Byond.ByondManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ae6aa8519a6401fc95218f2de88080605',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a550982dbdc2ce226e878702a520bbe27',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af64bb7e6efa9991a5a3a14993a3277e8',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.semaphore()']]], + ['semaphoreslim_1725',['semaphoreSlim',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ada5764977cc200cc19bb38db0b0fe1e4',1,'Tgstation::Server::Client::ApiClient']]], + ['semaphoreslimcontext_1726',['SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a600d8d0a279d2fe17d1f48c1a1bd17d4',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.SemaphoreSlimContext()']]], + ['semaphoreslimcontext_2ecs_1727',['SemaphoreSlimContext.cs',['../_semaphore_slim_context_8cs.html',1,'']]], + ['semver_1728',['Semver',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html#a1b4171b48717e9fcd5b00dd9613f7a65',1,'Tgstation::Server::Api::VersionExtensions']]], + ['sendasync_1729',['SendAsync',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a3564ac1eca649d3318f91116a3123279',1,'Tgstation.Server.Client.HttpClient.SendAsync()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#a7c73a8c52b38c69ed369036d186192de',1,'Tgstation.Server.Client.IHttpClient.SendAsync()']]], + ['sendcommand_1730',['SendCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad40f0e4194627c357bae9ed3ef135e66',1,'Tgstation.Server.Host.Components.Session.ISessionController.SendCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab45f8ef0b9ff253433d2122f5e3ba455',1,'Tgstation.Server.Host.Components.Session.SessionController.SendCommand()']]], + ['senddeploymentmessage_1731',['SendDeploymentMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac952a5db509eb59655c1f83b1f0530a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendDeploymentMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#aa21f71a08aaebd2b27e1d5d716ac1124',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendDeploymentMessage()']]], + ['sendmessage_1732',['SendMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a11c7e69a731e145f3b1adb30e3838c15',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a75c070c958da3a46d0deee9f243f3624',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac986f3eaca89e94c1a16d3a6392c44dd',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ad0b951bd26aed974f63c3e11971eb009',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a8bfdc6f40539bde1282c4c8c002ce7e0',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a89fe4a51bf3659db42995a39cc607285',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a23bd1ebb88ecd7ec9ae0ae7b867a05e7',1,'Tgstation.Server.Host.NativeMethods.SendMessage()']]], + ['sendmessagecount_1733',['SendMessageCount',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a6c18ae3a8fda9fa9973b0a8a396328f4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['sendupdatemessage_1734',['SendUpdateMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a99ee167ed1b5c1175b176da1ecbc4be7',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendUpdateMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a0b36493529119db3cdfa915c0fa5a11c',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#afd537fd81c6189f08d4fa654107643a9',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a6ef4f05ff34e0e1ec0eb682d959ce6dd',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendUpdateMessage()']]], + ['sendwatchdogmessage_1735',['SendWatchdogMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ad7e8f53171e62b278e16c0afbf8df8e4',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendWatchdogMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#afd05b7393661f33ea421cc169b621cea',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendWatchdogMessage()']]], + ['serializersettings_1736',['SerializerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a38c0e12f070e67fbdedfce3854c58d42',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['serilogcontexttemplate_1737',['SerilogContextTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a2c8521a096ca983ff3cfe7b6356406d8',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], + ['server_1738',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_server.html',1,'Tgstation.Server.Host.Server'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a8055d121e620784216311342fa30f715',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.Server()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#af345987c7e61e037445810ae96d8da52',1,'Tgstation.Server.Host.Server.Server()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba9aa1b03934893d7134a660af4204f2a9',1,'Tgstation.Server.Api.Models.Server()']]], + ['server_2ecs_1739',['Server.cs',['../_server_8cs.html',1,'']]], + ['serverapiversion_1740',['ServerApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a9308db77bea5178c7fe198cc61348afe',1,'Tgstation.Server.Api.Models.ErrorMessage.ServerApiVersion()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a281531bad45554e8e35c02bd7c43ee38',1,'Tgstation.Server.Client.ApiException.ServerApiVersion()']]], + ['serverclient_1741',['ServerClient',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html',1,'Tgstation.Server.Client.ServerClient'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#aeb7a24a33819012790a38d5fceb2c8bb',1,'Tgstation.Server.Client.ServerClient.ServerClient()']]], + ['serverclient_2ecs_1742',['ServerClient.cs',['../_server_client_8cs.html',1,'']]], + ['serverclientfactory_1743',['ServerClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html',1,'Tgstation.Server.Client.ServerClientFactory'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#ae72794d4ee4b75d442896ef3764d435b',1,'Tgstation.Server.Client.ServerClientFactory.ServerClientFactory()']]], + ['serverclientfactory_2ecs_1744',['ServerClientFactory.cs',['../_server_client_factory_8cs.html',1,'']]], + ['servercontrol_1745',['serverControl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a6b86256a68eff2c15b42badd8159a2f0',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.serverControl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ac2ba10fddea5448f4c8c08f363a0e391',1,'Tgstation.Server.Host.Components.InstanceManager.serverControl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a83607d97387c92ed33c6640f0cd4ee1a',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.ServerControl()']]], + ['servererrorexception_1746',['ServerErrorException',['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html',1,'Tgstation.Server.Client.ServerErrorException'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a3c0883bc41902cff9f2becfdb64c0d97',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#ab9f532a000df4b5bdcf6a28a975f7018',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a2426a2796880232113cfd743b1010fdb',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(string message, Exception innerException)']]], + ['servererrorexception_2ecs_1747',['ServerErrorException.cs',['../_server_error_exception_8cs.html',1,'']]], + ['serverfactory_1748',['ServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html',1,'Tgstation::Server::Host']]], + ['serverfactory_2ecs_1749',['ServerFactory.cs',['../_server_factory_8cs.html',1,'']]], + ['serverinformation_1750',['ServerInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html',1,'Tgstation.Server.Api.Models.Internal.ServerInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html',1,'Tgstation.Server.Api.Models.ServerInformation']]], + ['serverinformation_2ecs_1751',['ServerInformation.cs',['../_internal_2_server_information_8cs.html',1,'(Global Namespace)'],['../_server_information_8cs.html',1,'(Global Namespace)']]], + ['serverport_1752',['ServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a34f2ed18e36028c8a913c4c542fc9dba',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['serverportproivder_1753',['ServerPortProivder',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html',1,'Tgstation.Server.Host.Core.ServerPortProivder'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#afbd7d7c3ac25fb1c29cfaeea3851672b',1,'Tgstation.Server.Host.Core.ServerPortProivder.ServerPortProivder()']]], + ['serverportproivder_2ecs_1754',['ServerPortProivder.cs',['../_server_port_proivder_8cs.html',1,'']]], + ['serverportprovider_1755',['serverPortProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a978034e4b8017f55b969b65a4949b4b6',1,'Tgstation.Server.Host.Components.InstanceFactory.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad5b7e13dc94565671f962eb9fe62fd82',1,'Tgstation.Server.Host.Components.InstanceManager.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a14b84906ae2ddd580d5735ebf3ba9917',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider()']]], + ['serverportupdate_1756',['ServerPortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a295c0edab602acabdac91a82767b91f2',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['serverrestarted_1757',['ServerRestarted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8ad94a47cc065789bfb02933dc8be84a70',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['serverservice_1758',['ServerService',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html',1,'Tgstation.Server.Host.Service.ServerService'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a3f4d7655e24f18f6929e48f48c79b0a2',1,'Tgstation.Server.Host.Service.ServerService.ServerService()']]], + ['serverservice_2ecs_1759',['ServerService.cs',['../_server_service_8cs.html',1,'']]], + ['serversidemodifications_1760',['ServerSideModifications',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html',1,'Tgstation.Server.Host.Components.StaticFiles.ServerSideModifications'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a80a1a88d3e1f59d285b91563e86e2ef8',1,'Tgstation.Server.Host.Components.StaticFiles.ServerSideModifications.ServerSideModifications()']]], + ['serversidemodifications_2ecs_1761',['ServerSideModifications.cs',['../_server_side_modifications_8cs.html',1,'']]], + ['serverupdateinprogress_1762',['ServerUpdateInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7b3644a07defb6b7df279cc44dc46adb',1,'Tgstation::Server::Api::Models']]], + ['serverupdater_1763',['serverUpdater',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a860fa70ca4b87deb3f9e6f550d57dc72',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['serverversion_1764',['ServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a58c14ed1399e171958dfe450be84c3cf',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.ServerVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a37d2a2cb232af1fcc3a5ea4139a052e9',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ServerVersion()']]], + ['servicebase_1765',['ServiceBase',['../class_service_base.html',1,'']]], + ['servicecollectionextensions_1766',['ServiceCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['servicecollectionextensions_2ecs_1767',['ServiceCollectionExtensions.cs',['../_service_collection_extensions_8cs.html',1,'']]], + ['serviceunavailableexception_1768',['ServiceUnavailableException',['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html',1,'Tgstation.Server.Client.ServiceUnavailableException'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a5a4fcd887f74c9658dd181a3cf7204cb',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a6a729a7fa03b7a6bfebf6df9935b89a5',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a49a6d51cf0a76f247c3ea7bcc42f638f',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message, Exception innerException)']]], + ['serviceunavailableexception_2ecs_1769',['ServiceUnavailableException.cs',['../_service_unavailable_exception_8cs.html',1,'']]], + ['sessioncontroller_1770',['SessionController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html',1,'Tgstation.Server.Host.Components.Session.SessionController'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca4798c3df5c740c0690c6b13db4f0f0',1,'Tgstation.Server.Host.Components.Session.SessionController.SessionController()']]], + ['sessioncontroller_2ecs_1771',['SessionController.cs',['../_session_controller_8cs.html',1,'']]], + ['sessioncontrollerfactory_1772',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8322a848923985ee4e06d792dccb8643',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.sessionControllerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24eb5f0e32cd79487cd9bd80d5257abb',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.SessionControllerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a4fd5439afd33fbdc96ab8170681e6c78',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.SessionControllerFactory()']]], + ['sessioncontrollerfactory_2ecs_1773',['SessionControllerFactory.cs',['../_session_controller_factory_8cs.html',1,'']]], + ['sessionpersistor_1774',['SessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html',1,'Tgstation.Server.Host.Components.Session.SessionPersistor'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a76a88605b050495c652cd06f2947e482',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.sessionPersistor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#abe5082b7b4dc502b717e946a90349bb6',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.SessionPersistor()']]], + ['sessionpersistor_2ecs_1775',['SessionPersistor.cs',['../_session_persistor_8cs.html',1,'']]], + ['setactiveversion_1776',['SetActiveVersion',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a798c9e8b4b224f3a78791f765d69b304',1,'Tgstation.Server.Client.Components.ByondClient.SetActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a76a30723a9370f391d4ca12fb31e5c71',1,'Tgstation.Server.Client.Components.IByondClient.SetActiveVersion()']]], + ['setapivalidationport_1777',['SetApiValidationPort',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da926d34b9044ba920f715e8e2f6a72c62',1,'Tgstation::Server::Api::Rights']]], + ['setapivalidationrequirement_1778',['SetApiValidationRequirement',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dafcfa8539b3ffa73a3ae9c81d1c75427f',1,'Tgstation::Server::Api::Rights']]], + ['setautostart_1779',['SetAutoStart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ac73c1c7e96a1b68753840b8502528ab0',1,'Tgstation::Server::Api::Rights']]], + ['setautoupdate_1780',['SetAutoUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e54e04dba31375a3401f9f300a80d81',1,'Tgstation::Server::Api::Rights']]], + ['setautoupdateinterval_1781',['SetAutoUpdateInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a6023b54cb82a2300ec2b4088562ff5e4',1,'Tgstation.Server.Host.Components.IInstanceCore.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a9c7e2863cce30a01be66c0ce1dd07d9c',1,'Tgstation.Server.Host.Components.Instance.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a334385255e88789d71085f432aa71566',1,'Tgstation.Server.Host.Components.InstanceWrapper.SetAutoUpdateInterval()']]], + ['setchannelsink_1782',['SetChannelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a297f6228dbcf551f76768322b4214863',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.SetChannelSink()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#affd4bf60a56058a56804994741cceff5',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.SetChannelSink()']]], + ['setchatbotlimit_1783',['SetChatBotLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa0526dcf7b059eda11e1e3bc375eb6d0',1,'Tgstation::Server::Api::Rights']]], + ['setconfiguration_1784',['SetConfiguration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e423f35163ade75efce4061c98e1803',1,'Tgstation::Server::Api::Rights']]], + ['setconnectionstringbuilder_1785',['SetConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#ad289a7498cd4082d22ccd610107883ea',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['setdme_1786',['SetDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da14814465c8710a1dd49b3642c172ed36',1,'Tgstation::Server::Api::Rights']]], + ['sethandler_1787',['SetHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a593d81a97b0b00221c098a3c04049800',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], + ['setheartbeatinterval_1788',['SetHeartbeatInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a56edaf677f0c63f6d6b0d6bd90f151cc',1,'Tgstation::Server::Api::Rights']]], + ['sethighpriority_1789',['SetHighPriority',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a682e5041a73a975a85fa38ea6511d2a6',1,'Tgstation.Server.Host.Components.Session.SessionController.SetHighPriority()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a4c32c6fcf031cd1c996b505e6c58e510',1,'Tgstation.Server.Host.System.IProcessBase.SetHighPriority()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a60950c5460a2ac65c8040adbe67f711b',1,'Tgstation.Server.Host.System.Process.SetHighPriority()']]], + ['setid_1790',['SetID',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a0266a146dbc57a7c6168533d7a7b10eb',1,'Tgstation::Server::Api::Routes']]], + ['setnoprompttrusted_1791',['SetNoPromptTrusted',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a1c73acdc0ec26917b2a19ba6f1b266f4',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['setonline_1792',['SetOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a49241bae6f08ea45c321cbee8ce70cda',1,'Tgstation::Server::Api::Rights']]], + ['setorigin_1793',['SetOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a4cfe869c65c26d572cd5ab1b98abdb6a',1,'Tgstation::Server::Api::Rights']]], + ['setport_1794',['SetPort',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ae21b1684e07b6cc8facf0812bb255c32',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3183d3610d700b1da9983b67cb1b558a',1,'Tgstation.Server.Host.Components.Session.SessionController.SetPort()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a7b2bea9e62a2137bc0bda533fb22b350',1,'Tgstation.Server.Api.Rights.SetPort()']]], + ['setrebootstate_1795',['SetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6977882b5d7c0c7a1e280197384c7836',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3d2e9a55c08feb9a37492f537efa75bd',1,'Tgstation.Server.Host.Components.Session.SessionController.SetRebootState()']]], + ['setreconnectinterval_1796',['SetReconnectInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a8f13abd1df7147c47d6d1a8e4577b9e6',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SetReconnectInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac4642b423570a979ed7d0ae2b3b73ea3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SetReconnectInterval()']]], + ['setreference_1797',['SetReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a177459d00b7f29a44b87c9a5e1cb1f11',1,'Tgstation::Server::Api::Rights']]], + ['setrequestheaders_1798',['SetRequestHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a5f9f37923fe9811ceb4556af0ebfc8aa',1,'Tgstation::Server::Api::ApiHeaders']]], + ['setruntimeinformation_1799',['SetRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a56616a95d65e523becb086f2042d8a93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], + ['setsecurity_1800',['SetSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ad01c76a7263a2d3af037a139b8563b5a',1,'Tgstation::Server::Api::Rights']]], + ['setsecuritylevel_1801',['SetSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dab49667168f82f3007e86f44c40e6322c',1,'Tgstation::Server::Api::Rights']]], + ['setsha_1802',['SetSha',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39ad8c2d7ddc75692573d20ed5254fcd06a',1,'Tgstation::Server::Api::Rights']]], + ['setstartuptimeout_1803',['SetStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae34541119c09d49ca1ba51be76c98aa1',1,'Tgstation::Server::Api::Rights']]], + ['settopictimeout_1804',['SetTopicTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a598cfc66b07c2c5b69d5cc126492418a',1,'Tgstation::Server::Api::Rights']]], + ['setupapplication_1805',['SetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html',1,'Tgstation.Server.Host.Setup.SetupApplication'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a84d9dcc04d19491908f337980bfc36dc',1,'Tgstation.Server.Host.Setup.SetupApplication.SetupApplication()']]], + ['setupapplication_2ecs_1806',['SetupApplication.cs',['../_setup_application_8cs.html',1,'']]], + ['setuplogging_1807',['SetupLogging',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a1562e1868bb163db228ef906085ed14f',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], + ['setupwizard_1808',['SetupWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html',1,'Tgstation.Server.Host.Setup.SetupWizard'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a6351c594125cd749e35ac937dc482ea1',1,'Tgstation.Server.Host.Setup.SetupWizard.SetupWizard()']]], + ['setupwizard_2ecs_1809',['SetupWizard.cs',['../_setup_wizard_8cs.html',1,'']]], + ['setupwizardmode_1810',['SetupWizardMode',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#ace6cef6156eebad4a760e3d9f58dcb7e',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.SetupWizardMode()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1',1,'Tgstation.Server.Host.Configuration.SetupWizardMode()']]], + ['setupwizardmode_2ecs_1811',['SetupWizardMode.cs',['../_setup_wizard_mode_8cs.html',1,'']]], + ['setuserpassword_1812',['SetUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a0936b97992a82380047925e656b4bdae',1,'Tgstation.Server.Host.Security.CryptographySuite.SetUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#aeab60aa0a0ee2cb5e2ad5dbde1983430',1,'Tgstation.Server.Host.Security.ICryptographySuite.SetUserPassword()']]], + ['setwatchdog_1813',['SetWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a38465548f0041dfcd4cd148c8452f437',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.SetWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a541045879b6d679230dfeb27f9246f9c',1,'Tgstation.Server.Host.Components.Events.EventConsumer.SetWatchdog()']]], + ['setwebclient_1814',['SetWebClient',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aba69275e93f440b20e7bebe7be6f8a7c',1,'Tgstation::Server::Api::Rights']]], + ['shaisparent_1815',['ShaIsParent',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a364b05c74603f9ee3f18cc012014465e',1,'Tgstation.Server.Host.Components.Repository.IRepository.ShaIsParent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a47a1cdcdc3ea945b53a727fed3691c27',1,'Tgstation.Server.Host.Components.Repository.Repository.ShaIsParent()']]], + ['shellscriptextension_1816',['ShellScriptExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a979586ccac8fef0e0a10b9e2f5bfa339',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['showtestmergecommitters_1817',['ShowTestMergeCommitters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad0559033aa2ab7b93c9e63e3b31d2ddd',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['shutdown_1818',['Shutdown',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a42a57cfe50960559e8d8c2c003cb27f5',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Shutdown()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a6dd7bcf744d8804790ece473931f378b',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Shutdown()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Host.Components.Session.Shutdown()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Api.Rights.Shutdown()']]], + ['skip_1819',['Skip',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a72ef2b9b6965d078e3c7f95487a82d1c',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['sladddeploymentcolumns_1820',['SLAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sladdheartbeat_1821',['SLAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slallownulldmapi_1822',['SLAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slrebuild_1823',['SLRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slremoveexperimentalwatchdog_1824',['SLRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slremovesoftcolumns_1825',['SLRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sltopictimeout_1826',['SLTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['socketextensions_1827',['SocketExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['socketextensions_2ecs_1828',['SocketExtensions.cs',['../_socket_extensions_8cs.html',1,'']]], + ['softrestart_1829',['SoftRestart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a24b03adbbc3a308d6a6ce6edc9846e17',1,'Tgstation.Server.Api.Models.DreamDaemon.SoftRestart()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a31d920012be69305899466206d2a4823',1,'Tgstation.Server.Api.Rights.SoftRestart()']]], + ['softshutdown_1830',['SoftShutdown',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8388db2f41c2eed9f9783260f7a69bbe',1,'Tgstation.Server.Api.Models.DreamDaemon.SoftShutdown()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae814f60fe597531f5630e0aef1adea94',1,'Tgstation.Server.Api.Rights.SoftShutdown()']]], + ['sqlite_1831',['Sqlite',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca283f4ac146a612fabb50409a640cf21b',1,'Tgstation::Server::Host::Configuration']]], + ['sqlitedatabasecontext_1832',['SqliteDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a08142c9e591f05e0e6424b25f1198688',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.SqliteDatabaseContext()']]], + ['sqlitedatabasecontext_2ecs_1833',['SqliteDatabaseContext.cs',['../_sqlite_database_context_8cs.html',1,'']]], + ['sqlitedatabasecontextmodelsnapshot_1834',['SqliteDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sqlitedatabasecontextmodelsnapshot_2ecs_1835',['SqliteDatabaseContextModelSnapshot.cs',['../_sqlite_database_context_model_snapshot_8cs.html',1,'']]], + ['sqlitedesigntimedbcontextfactory_1836',['SqliteDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['sqlitedesigntimedbcontextfactory_2ecs_1837',['SqliteDesignTimeDbContextFactory.cs',['../_sqlite_design_time_db_context_factory_8cs.html',1,'']]], + ['sqlserver_1838',['SqlServer',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617cae86e829e4d4c68b30a4fd26aa2bfca72',1,'Tgstation::Server::Host::Configuration']]], + ['sqlserverdatabasecontext_1839',['SqlServerDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#a0d17265d1aab0819b7891c9cc29e5ab9',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext.SqlServerDatabaseContext()']]], + ['sqlserverdatabasecontext_2ecs_1840',['SqlServerDatabaseContext.cs',['../_sql_server_database_context_8cs.html',1,'']]], + ['sqlserverdatabasecontextmodelsnapshot_1841',['SqlServerDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sqlserverdatabasecontextmodelsnapshot_2ecs_1842',['SqlServerDatabaseContextModelSnapshot.cs',['../_sql_server_database_context_model_snapshot_8cs.html',1,'']]], + ['sqlserverdesigntimedbcontextfactory_1843',['SqlServerDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['sqlserverdesigntimedbcontextfactory_2ecs_1844',['SqlServerDesignTimeDbContextFactory.cs',['../_sql_server_design_time_db_context_factory_8cs.html',1,'']]], + ['stagedcompilejob_1845',['StagedCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8a8a50c1744b2264c242676b4ce3914d',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['stagedeployment_1846',['StageDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a395e474e23abbee52d387417a3d642b6',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StageDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a76685fabd65c52827bbbf22ce2b148da',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StageDeployment()']]], + ['standarderrortask_1847',['standardErrorTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4f257f5cb5c9662edf9bcb6b059e1',1,'Tgstation::Server::Host::System::Process']]], + ['standardmodelchecks_1848',['StandardModelChecks',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1079cc001cfaf55fa44aae68d9b106f5',1,'Tgstation::Server::Host::Controllers::ChatController']]], + ['standardoutputtask_1849',['standardOutputTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a80e20c64fa56f3d3f39dad15af37028b',1,'Tgstation::Server::Host::System::Process']]], + ['start_1850',['Start',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a9c62e25db987e4847e6a4a8e04a72b2c',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Start()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a97ceb0b52366f1b4ce685ef8399c44e5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Start()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aba7a308e3f45a2403f388ca1e7d42e52',1,'Tgstation.Server.Host.Jobs.JobHandler.Start()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aa6122a65eaa676f700ae68d393054a37',1,'Tgstation.Server.Api.Rights.Start()']]], + ['startasync_1851',['StartAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a7b6d8a1eef58f0e3265a67ebe9036f13',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae189d33da50a0791f4caf35fa3eb2567',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ae898120e96809cdb6bbd582072bcff71',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a11cc04923d2557eefd57ad2ded9eb7f2',1,'Tgstation.Server.Host.Components.Instance.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aabf10dd79c9488de365bb8de0129b74b',1,'Tgstation.Server.Host.Components.InstanceFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa2bcc92fca46ad404800304ce4bdd781',1,'Tgstation.Server.Host.Components.InstanceManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af05de18337edc2207b60b080de230802',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ae30d4b582b04eb7c3ef3c5d848429bbd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa3ab90c932ef1f25299d046a103bfe7c',1,'Tgstation.Server.Host.Jobs.JobManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae78c3f7bde77d9470e413adba88d2ae4',1,'Tgstation.Server.Host.Setup.SetupWizard.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a4da1abbdff058acc086c60bac413df19',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StartAsync()']]], + ['startdeployment_1852',['StartDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a63f609709d84ef07f7987a13c846c310',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StartDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a880a7247e471d8014843338817e64948',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StartDeployment()']]], + ['started_1853',['started',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ae4128b124ad48c9a541cebfe31db34de',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['startedat_1854',['StartedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a0988d9930cae8f698a17c20d3e8cec9a',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['startedby_1855',['StartedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#abb86696a2a25cf3259c16603745de887',1,'Tgstation.Server.Api.Models.Job.StartedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aeb64c30e0787225682030adf2d2af036',1,'Tgstation.Server.Host.Models.Job.StartedBy()']]], + ['startup_1856',['Startup',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a31134a65d5338a2ba017ff3f0b276776',1,'Tgstation.Server.Host.System.IProcess.Startup()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab4a4559a320a7a43607d3a705d86a9e8',1,'Tgstation.Server.Host.System.Process.Startup()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da13e685964c2548aa748f7ea263bad4e5',1,'Tgstation.Server.Host.Components.Interop.Bridge.Startup()']]], + ['startupdmbprovider_1857',['startupDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#afa65470fdf88d190f47de568b3b9791e',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['startuptime_1858',['StartupTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a3a760923a1f56b674537f908b0f74c1b',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], + ['startuptimeout_1859',['StartupTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aa3ac63088b89bf67dd5fdbe67970b03d',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['staticignorefile_1860',['StaticIgnoreFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3c23fe94867b94fa0833f4a789830fd1',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['staticignorepath_1861',['StaticIgnorePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a4a5436d55e83759de84d17871039d752',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['status_1862',['Status',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a374f3676c32da4421a9bbb9bdbb74bcd',1,'Tgstation.Server.Api.Models.DreamDaemon.Status()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a81f00a3e7109a861886d14e6233d8b43',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Status()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5fa8be05b0c448ea097a70e5d8708ffb',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Status()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5c8949750c7c079faf8d438fde20c6c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.status()']]], + ['statuscode_1863',['StatusCode',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a978fe89eeaea424d7e034d2c7ab7b76e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#adc93040c7a61d510292e387329d3f00e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode, object errorMessage)']]], + ['stopasync_1864',['StopAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a691493488b449c0589784dc2f91e039b',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#af798c33e00b6fbbf046c8459cfd06eab',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a7500062f2bc5c4ee14b84b548bf55161',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afc1fd9e8dc3bd57b78dbcbc4e7f449b4',1,'Tgstation.Server.Host.Components.Instance.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad758c3c739d563f51b44b8429acadc9',1,'Tgstation.Server.Host.Components.InstanceFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa1a2f2c9fe345546fd5f8ae27fe466b',1,'Tgstation.Server.Host.Components.InstanceManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a33a5cd96e75dae867c113915bd6ebb27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec4f16b34fe08499a4aaff0235ecdc76',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a95381df073387e7bfc526757bb06ae57',1,'Tgstation.Server.Host.Jobs.JobManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a28d5e473c14aa957f87ff37a62284a66',1,'Tgstation.Server.Host.Setup.SetupWizard.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ad6fae1f6711012cda24238db8833bdef',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StopAsync()']]], + ['stopmonitor_1865',['StopMonitor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a565b987a394c375c75b3fe14ca3f75e1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['stoppedat_1866',['StoppedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a2b6b6dbe1243f140d9fb04767ea16c61',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['stopreconnectiontimer_1867',['StopReconnectionTimer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a19cca90f9904a5d3535cd27c3e3fe3fe',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['subdirectory_1868',['subdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a02d7c98f480664056ad8dbe912003ae9',1,'Tgstation::Server::Host::IO::ResolvingIOManager']]], + ['suspend_1869',['Suspend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0dad64e931bd586e45de09d28027cf50',1,'Tgstation.Server.Host.Components.Session.SessionController.Suspend()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a50cf121e04a59decc0262d2eaef0845f',1,'Tgstation.Server.Host.System.IProcessBase.Suspend()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a639ecf20dfbbd73e72f4b181d0b89243',1,'Tgstation.Server.Host.System.Process.Suspend()']]], + ['suspendprocess_1870',['SuspendProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ac6b97694917044ddce0c3ba9c8478246',1,'Tgstation.Server.Host.System.IProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1c0faded339a483cc9e2f513ec7d5cee',1,'Tgstation.Server.Host.System.PosixProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a08d35b105b285a19f77df6c863c5cfeb',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.SuspendProcess()']]], + ['suspendresume_1871',['SuspendResume',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52aa225c7a85340534236811e3cae22e885e',1,'Tgstation::Server::Host::NativeMethods']]], + ['suspendthread_1872',['SuspendThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a21ce8310ad8c05110a45b1f2b6892697',1,'Tgstation::Server::Host::NativeMethods']]], + ['swaggerconfiguration_1873',['SwaggerConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html',1,'Tgstation::Server::Host::Core']]], + ['swaggerconfiguration_2ecs_1874',['SwaggerConfiguration.cs',['../_swagger_configuration_8cs.html',1,'']]], + ['swappabledmbprovider_1875',['SwappableDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ada4c525ee4e74e9ae5017d4f5816d888',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.SwappableDmbProvider()']]], + ['swappabledmbprovider_2ecs_1876',['SwappableDmbProvider.cs',['../_swappable_dmb_provider_8cs.html',1,'']]], + ['sychronize_1877',['Sychronize',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a5f8ea07e50eb3d5d272b956a6e2543b5',1,'Tgstation.Server.Host.Components.Repository.IRepository.Sychronize()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afd7c7599794e9541d6134a30d5d7e683',1,'Tgstation.Server.Host.Components.Repository.Repository.Sychronize()']]], + ['symlinkfactory_1878',['SymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a3fcbf9a187ea2b1d389a2543b841ccef',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.SymlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#abe731c7399d16f3e98e3f9b996c348b1',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae9583eef7d68626e70fd30097b6db87c',1,'Tgstation.Server.Host.Components.InstanceFactory.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a52deb2c99db89b8e8dfb4bf1a5fd3f',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a65ab5bf0783d6732eb6b1018f7a1983a',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.symlinkFactory()']]], + ['symlinkstaticfilesto_1879',['SymlinkStaticFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af7ad93cfb1c7c7718a3b1ffe3e12d42d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a255b4504ec55e9a4c006463db8aaa61e',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.SymlinkStaticFilesTo()']]], + ['synchronizationlock_1880',['synchronizationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a1ac2daf67a09f128290588a5181c88ba',1,'Tgstation.Server.Host.Components.Chat.ChatManager.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#ab3b8d2b85773e2d5e5f63aff3e8c27eb',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0bbceae0e217ef75fc3989124017856d',1,'Tgstation.Server.Host.Components.Session.SessionController.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aec64bbed8584f4daad12932098999e1b',1,'Tgstation.Server.Host.Jobs.JobManager.synchronizationLock()']]], + ['synchronizationsemaphore_1881',['synchronizationSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a7e6adcb942a9ff1bb7d11d738b98b6e4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['synchronousiomanager_1882',['SynchronousIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html',1,'Tgstation.Server.Host.IO.SynchronousIOManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a2b14e009e117f22b206bbdf743712809',1,'Tgstation.Server.Host.Components.InstanceFactory.synchronousIOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a29a360d050eedfecf24a5d7a75331f1d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.synchronousIOManager()']]], + ['synchronousiomanager_2ecs_1883',['SynchronousIOManager.cs',['../_synchronous_i_o_manager_8cs.html',1,'']]], + ['systemidentifier_1884',['SystemIdentifier',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#af54beced1148cb5e7e8f114469fd577a',1,'Tgstation::Server::Api::Models::Internal::User']]], + ['systemidentity_1885',['SystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a05ce72960f78e0a11148f44292f3fb7b',1,'Tgstation.Server.Host.Security.AuthenticationContext.SystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a01b4dc318a62fa3b321593418eb1247e',1,'Tgstation.Server.Host.Security.IAuthenticationContext.SystemIdentity()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a86a823a9e7ee94f2497bfae86c1efeed',1,'Tgstation.Server.Host.Security.IdentityCacheObject.SystemIdentity()']]], + ['systemidentityfactory_1886',['systemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a914147c0498a9b2482efe956486646fb',1,'Tgstation.Server.Host.Components.InstanceManager.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a82f9e135570d468d3a0cfbf645e2f0ae',1,'Tgstation.Server.Host.Controllers.HomeController.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#adcb096909c25a05c74f2714128607c05',1,'Tgstation.Server.Host.Controllers.UserController.systemIdentityFactory()']]], + ['systemidentitywrite_1887',['SystemIdentityWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ab027b6d7abbf6c6fa50c64fc51437bce',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/all_14.html b/search/all_14.html index c0e4c762ab..eed7260404 100644 --- a/search/all_14.html +++ b/search/all_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_14.js b/search/all_14.js index f4c7d3733c..df424d5ea5 100644 --- a/search/all_14.js +++ b/search/all_14.js @@ -1,111 +1,111 @@ var searchData= [ - ['api_1835',['Api',['../namespace_tgstation_1_1_server_1_1_api.html',1,'Tgstation::Server']]], - ['bridge_1836',['Bridge',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['byond_1837',['Byond',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond.html',1,'Tgstation::Server::Host::Components']]], - ['chat_1838',['Chat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat.html',1,'Tgstation::Server::Host::Components']]], - ['client_1839',['Client',['../namespace_tgstation_1_1_server_1_1_client.html',1,'Tgstation::Server']]], - ['commands_1840',['Commands',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['components_1841',['Components',['../namespace_tgstation_1_1_server_1_1_client_1_1_components.html',1,'Tgstation.Server.Client.Components'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components.html',1,'Tgstation.Server.Host.Components']]], - ['configuration_1842',['Configuration',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html',1,'Tgstation::Server::Host']]], - ['console_1843',['Console',['../namespace_tgstation_1_1_server_1_1_host_1_1_console.html',1,'Tgstation::Server::Host']]], - ['controllers_1844',['Controllers',['../namespace_tgstation_1_1_server_1_1_host_1_1_controllers.html',1,'Tgstation::Server::Host']]], - ['converters_1845',['Converters',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['core_1846',['Core',['../namespace_tgstation_1_1_server_1_1_host_1_1_core.html',1,'Tgstation::Server::Host']]], - ['database_1847',['Database',['../namespace_tgstation_1_1_server_1_1_host_1_1_database.html',1,'Tgstation::Server::Host']]], - ['deployment_1848',['Deployment',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment.html',1,'Tgstation::Server::Host::Components']]], - ['design_1849',['Design',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_design.html',1,'Tgstation::Server::Host::Database']]], - ['events_1850',['Events',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html',1,'Tgstation::Server::Host::Components']]], - ['extensions_1851',['Extensions',['../namespace_tgstation_1_1_server_1_1_host_1_1_extensions.html',1,'Tgstation::Server::Host']]], - ['host_1852',['Host',['../namespace_tgstation_1_1_server_1_1_host.html',1,'Tgstation::Server']]], - ['tgstation_2dserver_20v4_3a_1853',['tgstation-server v4:',['../index.html',1,'']]], - ['internal_1854',['Internal',['../namespace_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal.html',1,'Tgstation::Server::Api::Models']]], - ['interop_1855',['Interop',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop.html',1,'Tgstation::Server::Host::Components']]], - ['io_1856',['IO',['../namespace_tgstation_1_1_server_1_1_host_1_1_i_o.html',1,'Tgstation::Server::Host']]], - ['jobs_1857',['Jobs',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html',1,'Tgstation::Server::Host']]], - ['migrations_1858',['Migrations',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations.html',1,'Tgstation::Server::Host::Database']]], - ['models_1859',['Models',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html',1,'Tgstation.Server.Api.Models'],['../namespace_tgstation_1_1_server_1_1_host_1_1_models.html',1,'Tgstation.Server.Host.Models']]], - ['providers_1860',['Providers',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['repository_1861',['Repository',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository.html',1,'Tgstation::Server::Host::Components']]], - ['rights_1862',['Rights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html',1,'Tgstation::Server::Api']]], - ['security_1863',['Security',['../namespace_tgstation_1_1_server_1_1_host_1_1_security.html',1,'Tgstation::Server::Host']]], - ['server_1864',['Server',['../namespace_tgstation_1_1_server.html',1,'Tgstation']]], - ['service_1865',['Service',['../namespace_tgstation_1_1_server_1_1_host_1_1_service.html',1,'Tgstation::Server::Host']]], - ['session_1866',['Session',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html',1,'Tgstation::Server::Host::Components']]], - ['setup_1867',['Setup',['../namespace_tgstation_1_1_server_1_1_host_1_1_setup.html',1,'Tgstation::Server::Host']]], - ['staticfiles_1868',['StaticFiles',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files.html',1,'Tgstation::Server::Host::Components']]], - ['system_1869',['System',['../namespace_tgstation_1_1_server_1_1_host_1_1_system.html',1,'Tgstation::Server::Host']]], - ['tag_1870',['Tag',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a6f98f41dd7b9a010bf03927f72b986f9',1,'Tgstation.Server.Api.Models.ChatChannel.Tag()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ad04f3c37655b30075bcba04db915a184',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Tag()']]], - ['tailincludeline_1871',['TailIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac479bad6bd50784c761ee4ea93ab12e7',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['task_1872',['task',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aff63ce12f5e3649ee2b85b3753dd4da7',1,'Tgstation.Server.Host.Jobs.JobHandler.task()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a2d1a4fc7b7fee56456ccebfb699ad8ee',1,'Tgstation.Server.Host.Security.IdentityCacheObject.task()']]], - ['taskextensions_1873',['TaskExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['taskextensions_2ecs_1874',['TaskExtensions.cs',['../_task_extensions_8cs.html',1,'']]], - ['temporarydmbprovider_1875',['TemporaryDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a8cbcf4f057352b274e8c2adf461bf220',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.TemporaryDmbProvider()']]], - ['temporarydmbprovider_2ecs_1876',['TemporaryDmbProvider.cs',['../_temporary_dmb_provider_8cs.html',1,'']]], - ['terminate_1877',['Terminate',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a7fded5c4b8aeb291ad5b1797a25eee14',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a49a9acdffdc9e7cd176f803b23e97ff4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Terminate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a840da56ea51a4bbbc6b21667cc6355a2',1,'Tgstation.Server.Host.System.IProcess.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4788d938ba886eaf6e19ac5464460',1,'Tgstation.Server.Host.System.Process.Terminate()']]], - ['terminatenolock_1878',['TerminateNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6845304123ed975aec4de3dc79bf8551',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['terminationwasrequested_1879',['TerminationWasRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a9eae9a3173b2dc4dae3d2bfa67196d5b',1,'Tgstation.Server.Host.Components.Session.ISessionController.TerminationWasRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a253ee7e74591b02552eb4337c1b7fc5e',1,'Tgstation.Server.Host.Components.Session.SessionController.TerminationWasRequested()']]], - ['testdatabaseconnection_1880',['TestDatabaseConnection',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ab962664cd664ba5ad329e8af1d6b49a7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['testmerge_1881',['TestMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.Internal.TestMerge'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.TestMerge'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Host.Models.TestMerge'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a76c0f83e9fc28eeefb8ed97592cd368b',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.TestMerge()']]], - ['testmerge_2ecs_1882',['TestMerge.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html',1,'(Global Namespace)']]], - ['testmergebase_1883',['TestMergeBase',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#aed82b2a4e5e83239f18657ff4a91b65f',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a22e08f62b7a5647d905d8b0ce7f703bd',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase(TestMergeBase copy)']]], - ['testmergebase_2ecs_1884',['TestMergeBase.cs',['../_test_merge_base_8cs.html',1,'']]], - ['testmergeinformation_1885',['TestMergeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a64ffd55fcded7a03edbb7cbf43eccd9e',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation.TestMergeInformation()']]], - ['testmergeinformation_2ecs_1886',['TestMergeInformation.cs',['../_test_merge_information_8cs.html',1,'']]], - ['testmergeparameters_1887',['TestMergeParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html',1,'Tgstation::Server::Api::Models']]], - ['testmergeparameters_2ecs_1888',['TestMergeParameters.cs',['../_test_merge_parameters_8cs.html',1,'']]], - ['testmerges_1889',['TestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a09eb9fa66db042c102ecc2b37da200b8',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab299cd000e56e4d1bb7f33b2223f97db',1,'Tgstation.Server.Host.Database.DatabaseContext.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6f140bbda8ac722038e19f1ecaf7b1cf',1,'Tgstation.Server.Host.Models.User.TestMerges()']]], - ['text_1890',['Text',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ace3d5601299f5b5a17ffa0b6aa81b28a',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], - ['tgsauthorizeattribute_1891',['TgsAuthorizeAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a71fd52c8f3c07624632ca72fa669aff9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a56841444b636e471e28acb3fd7165372',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(AdministrationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a6103a7a1e759498a879c440554ed156e',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceManagerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a9bab142d724f39746e9b5cb3f11053eb',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(RepositoryRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ab9d25ba7784171d98030af65820e31b9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ByondRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a74a9510478d9a004288929247b99f59a',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamMakerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac602c75dd93d93f998119ede5a8a337b',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamDaemonRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac4808ff26e27647d62338b4c55369bab',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ChatBotRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#af81be6ff62cf941583825b5c7e8402c2',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ConfigurationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a075e1a5a46146957800a8461f26aaab0',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceUserRights requiredRights)']]], - ['tgsauthorizeattribute_2ecs_1892',['TgsAuthorizeAttribute.cs',['../_tgs_authorize_attribute_8cs.html',1,'']]], - ['tgssystemusername_1893',['TgsSystemUserName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a2e68345f5d52c8ba64dca5ec061d029d',1,'Tgstation::Server::Host::Models::User']]], - ['tgstation_1894',['Tgstation',['../namespace_tgstation.html',1,'']]], - ['threadaccess_1895',['ThreadAccess',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52a',1,'Tgstation::Server::Host::NativeMethods']]], - ['timemerged_1896',['TimeMerged',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a2c485aa14b6c4e84abc06d965572fe97',1,'Tgstation::Server::Host::Components::Interop::Bridge::TestMergeInformation']]], - ['timeout_1897',['Timeout',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a015e61f9e9728ad9b47c175445ea67a1',1,'Tgstation.Server.Client.ApiClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a1c5eb3e376e012d3ca08caf71b009a22',1,'Tgstation.Server.Client.HttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a92b092701f159c344a3c78be34161ecf',1,'Tgstation.Server.Client.IApiClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#ad27a406c0398b4824889a0020ee291aa',1,'Tgstation.Server.Client.IHttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa1c1488dd8438023b24c87a32e09d5fe',1,'Tgstation.Server.Client.IServerClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7d3be56a549f9aedb631bb3824dd5790',1,'Tgstation.Server.Client.ServerClient.Timeout()']]], - ['timeoutseconds_1898',['TimeoutSeconds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6b7d2a57ba6340f51694987653033677',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['timercts_1899',['timerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aab6ba11c7820ee9de39771aabbecdfcb',1,'Tgstation::Server::Host::Components::Instance']]], - ['timerlock_1900',['timerLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#af352e8a195c6b95d852ef8873390c3a0',1,'Tgstation::Server::Host::Components::Instance']]], - ['timerloop_1901',['TimerLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afb736b47a7400fb861186b8dad1c4c4c',1,'Tgstation::Server::Host::Components::Instance']]], - ['timertask_1902',['timerTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#abf825c028f20cd903db1362892dbd833',1,'Tgstation::Server::Host::Components::Instance']]], - ['titleatmerge_1903',['TitleAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a11bb79f0060477eb3fd084a09fbc0f04',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], - ['toapi_1904',['ToApi',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ac6049a16c80f49d1503935589a5e0042',1,'Tgstation.Server.Host.Models.ChatBot.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a01525688d871d70d1ab28cdda6083011',1,'Tgstation.Server.Host.Models.ChatChannel.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a64a9fc0f8da344e311b5b754eec10611',1,'Tgstation.Server.Host.Models.CompileJob.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab477e13756ea540790df3e245e17173b',1,'Tgstation.Server.Host.Models.DreamMakerSettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a169bffb644b7ff7c3686c29373f662c1',1,'Tgstation.Server.Host.Models.Instance.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#aad0b6b9eaf0b0a9462987564aa254b68',1,'Tgstation.Server.Host.Models.InstanceUser.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aaea7f482968921045b73cbdaca4dd652',1,'Tgstation.Server.Host.Models.Job.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#acff6370af1842c659c6f8ecb85dd0ea3',1,'Tgstation.Server.Host.Models.RepositorySettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a8e6f5b4375c0594f10c413c4119515b1',1,'Tgstation.Server.Host.Models.RevisionInformation.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac2943458d2fc3077a6684408fb26ab09',1,'Tgstation.Server.Host.Models.TestMerge.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8effbd8cd0ce7ba4c72f40efc08a9b50',1,'Tgstation.Server.Host.Models.User.ToApi(bool recursive, bool showDetails)'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a1d6fee3f42a73a1505d6d0d12d68b3d9',1,'Tgstation.Server.Host.Models.User.ToApi(bool showDetails)']]], - ['tofilestamp_1905',['ToFileStamp',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html#a1c52f86735de10e4573d0dc5905be489',1,'Tgstation::Server::Host::Extensions::DateTimeOffsetExtensions']]], - ['token_1906',['Token',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html',1,'Tgstation.Server.Api.Models.Token'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a48b5fae887842cd76920ef76944583a2',1,'Tgstation.Server.Api.ApiHeaders.Token()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#ab3363ffdb533616bd2b6688559f9def1',1,'Tgstation.Server.Client.IServerClient.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9c54c9b21bfad615f275484dafc6decc',1,'Tgstation.Server.Client.ServerClient.Token()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a24771450ef1521a1c51fc0291e3c67a0',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7137670591717642aa084370ed40377e',1,'Tgstation.Server.Client.ServerClient.token()']]], - ['token_2ecs_1907',['Token.cs',['../_token_8cs.html',1,'']]], - ['tokenclockskewminutes_1908',['TokenClockSkewMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#abbf0169740f418e6ffd4f8c783fdff50',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['tokenexpiryminutes_1909',['TokenExpiryMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a0cea7772b1f5107da73c23e821e76b43',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['tokenfactory_1910',['TokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html',1,'Tgstation.Server.Host.Security.TokenFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afd05899e85f5a8a6b8c8e374364872f8',1,'Tgstation.Server.Host.Controllers.HomeController.tokenFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a93cb446fc8d8f84ea595abe709265398',1,'Tgstation.Server.Host.Core.Application.tokenFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a6ed83527beb343b96506ad417a91ca94',1,'Tgstation.Server.Host.Security.TokenFactory.TokenFactory()']]], - ['tokenfactory_2ecs_1911',['TokenFactory.cs',['../_token_factory_8cs.html',1,'']]], - ['tokenrefreshheaders_1912',['tokenRefreshHeaders',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a0091954fd17fc24bfbfe28df9ca2a518',1,'Tgstation::Server::Client::ApiClient']]], - ['tokensecurityschemeid_1913',['TokenSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a0fd6cdaa7f3d8b391f91b820bfea5d56',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], - ['tokensigningkeybyteamount_1914',['TokenSigningKeyByteAmount',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a1daafa97f229b3c342725fba60505b0f',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['tokensourceaccesslock_1915',['tokenSourceAccessLock',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ac4a3842c9ed0356d2c2199a80c7820f5',1,'Tgstation::Server::Host::System::ProgramShutdownTokenSource']]], - ['tokenwithtoken_1916',['TokenWithToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9a6fc03ca61381e162705346a62ddbea',1,'Tgstation::Server::Api::Models']]], - ['topic_1917',['Topic',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['topicclientfactory_1918',['TopicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a21833439f6cbb353c49a7e9d79682213',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.TopicClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b6080e35383ff3c7f8695eef39522d4',1,'Tgstation.Server.Host.Components.InstanceFactory.topicClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a09c977af69bd3d954c7dd4ca0b89e92e',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory()']]], - ['topicclientfactory_2ecs_1919',['TopicClientFactory.cs',['../_topic_client_factory_8cs.html',1,'']]], - ['topiccommandtype_1920',['TopicCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['topiccommandtype_2ecs_1921',['TopicCommandType.cs',['../_topic_command_type_8cs.html',1,'']]], - ['topicdata_1922',['TopicData',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#afd2a05fed50a107378c6bdcab313c309',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['topicparameters_1923',['TopicParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae118357d22348fdcff032c1efced3c7d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(TopicCommandType commandType)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a72da9f55f222514ad7aa1eb82116982b',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatCommand chatCommand)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa6d3ce3910a4e966608f1bb96e76e7f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(EventNotification eventNotification)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aae80f88486056044b0bd7562dab53083',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ushort newPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a2a353bdd802d0b4e4f11980aeb0ec168',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(RebootState newRebootState)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac140d441b2ec1db127e91555f0a93255',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(string newInstanceName)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aee6668a97907129159729b4716f8b71d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatUpdate channelsUpdate)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#af3473b0e8d20a291a255361587bce56f',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(Version newServerVersion, ushort serverPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac97b495dfe29514ee8152a9e63ce8558',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters()']]], - ['topicparameters_2ecs_1924',['TopicParameters.cs',['../_topic_parameters_8cs.html',1,'']]], - ['topicrequesttimeout_1925',['TopicRequestTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5e172ad3abdcc1f6a0f24cdf08646d0a',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.TopicRequestTimeout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0e7e39db3290479256688fc7dae2e52d',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.TopicRequestTimeout()']]], - ['topicresponse_1926',['TopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['topicresponse_2ecs_1927',['TopicResponse.cs',['../_topic_response_8cs.html',1,'']]], - ['tostring_1928',['ToString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a659884baa91d2aa0072ccd9da844cc1e',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#aeeb97f3f4f9cc635eaa55b2e9c81ad84',1,'Tgstation.Server.Api.Models.Internal.ChatConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#ac2a182244a480865e560b06da8c4a152',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#ae3db14365b6d8d193923b9037d8f4bdb',1,'Tgstation.Server.Host.Components.Session.LaunchResult.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a16ccfcf72481ac33f4a2a2a22cb7b135',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ToString()']]], - ['totaldmeoverwrite_1929',['TotalDmeOverwrite',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac81394b6c071d9779ab94c8151281723',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['trace_1930',['Trace',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5d7201b8cfa09c341ec68d81297aabad',1,'Tgstation::Server::Host::Service::Program']]], - ['trackedrepositoryurl_1931',['TrackedRepositoryUrl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a6c0253a0153c42989e6ab3279c01ede4',1,'Tgstation::Server::Api::Models::Administration']]], - ['tracking_1932',['Tracking',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a422e7c7f5d5ac88a75693311521b5d6a',1,'Tgstation.Server.Host.Components.Repository.IRepository.Tracking()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4a27a5627052f0463fd42c7d3fd569a6',1,'Tgstation.Server.Host.Components.Repository.Repository.Tracking()']]], - ['trackingcontexts_1933',['trackingContexts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3db93fb570555b5984466877551fe9f',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['trustdmbpath_1934',['TrustDmbPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aaefbc3a18632926c53945415b70b33fc',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.TrustDmbPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a1c0099bbd7870ed77fb8a579621efdd8',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.TrustDmbPath()']]], - ['trusted_1935',['Trusted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac0405d71f21e769c787a10b9620f11ea',1,'Tgstation::Server::Api::Models']]], - ['trusteddmbfilename_1936',['TrustedDmbFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a5a5c4ccd1b87f212adcf975e798a8c9d',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['trustedfilepath_1937',['trustedFilePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae6c0ec40623ecca3dffca74160e7f114',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], - ['trustedfilesemaphore_1938',['trustedFileSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aab496f2d05bd3fa5ea18502639c64c29',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], - ['trysetpassword_1939',['TrySetPassword',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ac2c00169e075062d4e1f040ed0c3b5b0',1,'Tgstation::Server::Host::Controllers::UserController']]], - ['type_1940',['Type',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#a2ebef1e76d3b23776c1480979bc42af9',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], - ['typemap_1941',['TypeMap',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0639f64451959386f79762cb8586b4f0',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['watchdog_1942',['Watchdog',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog'],['../namespace_tgstation_1_1_server_1_1_host_1_1_watchdog.html',1,'Tgstation.Server.Host.Watchdog']]] + ['api_1888',['Api',['../namespace_tgstation_1_1_server_1_1_api.html',1,'Tgstation::Server']]], + ['bridge_1889',['Bridge',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['byond_1890',['Byond',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond.html',1,'Tgstation::Server::Host::Components']]], + ['chat_1891',['Chat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat.html',1,'Tgstation::Server::Host::Components']]], + ['client_1892',['Client',['../namespace_tgstation_1_1_server_1_1_client.html',1,'Tgstation::Server']]], + ['commands_1893',['Commands',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['components_1894',['Components',['../namespace_tgstation_1_1_server_1_1_client_1_1_components.html',1,'Tgstation.Server.Client.Components'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components.html',1,'Tgstation.Server.Host.Components']]], + ['configuration_1895',['Configuration',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html',1,'Tgstation::Server::Host']]], + ['console_1896',['Console',['../namespace_tgstation_1_1_server_1_1_host_1_1_console.html',1,'Tgstation::Server::Host']]], + ['controllers_1897',['Controllers',['../namespace_tgstation_1_1_server_1_1_host_1_1_controllers.html',1,'Tgstation::Server::Host']]], + ['converters_1898',['Converters',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['core_1899',['Core',['../namespace_tgstation_1_1_server_1_1_host_1_1_core.html',1,'Tgstation::Server::Host']]], + ['database_1900',['Database',['../namespace_tgstation_1_1_server_1_1_host_1_1_database.html',1,'Tgstation::Server::Host']]], + ['deployment_1901',['Deployment',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment.html',1,'Tgstation::Server::Host::Components']]], + ['design_1902',['Design',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_design.html',1,'Tgstation::Server::Host::Database']]], + ['events_1903',['Events',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html',1,'Tgstation::Server::Host::Components']]], + ['extensions_1904',['Extensions',['../namespace_tgstation_1_1_server_1_1_host_1_1_extensions.html',1,'Tgstation::Server::Host']]], + ['host_1905',['Host',['../namespace_tgstation_1_1_server_1_1_host.html',1,'Tgstation::Server']]], + ['tgstation_2dserver_20v4_3a_1906',['tgstation-server v4:',['../index.html',1,'']]], + ['internal_1907',['Internal',['../namespace_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal.html',1,'Tgstation::Server::Api::Models']]], + ['interop_1908',['Interop',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop.html',1,'Tgstation::Server::Host::Components']]], + ['io_1909',['IO',['../namespace_tgstation_1_1_server_1_1_host_1_1_i_o.html',1,'Tgstation::Server::Host']]], + ['jobs_1910',['Jobs',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html',1,'Tgstation::Server::Host']]], + ['migrations_1911',['Migrations',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations.html',1,'Tgstation::Server::Host::Database']]], + ['models_1912',['Models',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html',1,'Tgstation.Server.Api.Models'],['../namespace_tgstation_1_1_server_1_1_host_1_1_models.html',1,'Tgstation.Server.Host.Models']]], + ['providers_1913',['Providers',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['repository_1914',['Repository',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository.html',1,'Tgstation::Server::Host::Components']]], + ['rights_1915',['Rights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html',1,'Tgstation::Server::Api']]], + ['security_1916',['Security',['../namespace_tgstation_1_1_server_1_1_host_1_1_security.html',1,'Tgstation::Server::Host']]], + ['server_1917',['Server',['../namespace_tgstation_1_1_server.html',1,'Tgstation']]], + ['service_1918',['Service',['../namespace_tgstation_1_1_server_1_1_host_1_1_service.html',1,'Tgstation::Server::Host']]], + ['session_1919',['Session',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html',1,'Tgstation::Server::Host::Components']]], + ['setup_1920',['Setup',['../namespace_tgstation_1_1_server_1_1_host_1_1_setup.html',1,'Tgstation::Server::Host']]], + ['staticfiles_1921',['StaticFiles',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files.html',1,'Tgstation::Server::Host::Components']]], + ['system_1922',['System',['../namespace_tgstation_1_1_server_1_1_host_1_1_system.html',1,'Tgstation::Server::Host']]], + ['tag_1923',['Tag',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a6f98f41dd7b9a010bf03927f72b986f9',1,'Tgstation.Server.Api.Models.ChatChannel.Tag()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ad04f3c37655b30075bcba04db915a184',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Tag()']]], + ['tailincludeline_1924',['TailIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac479bad6bd50784c761ee4ea93ab12e7',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['task_1925',['task',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aff63ce12f5e3649ee2b85b3753dd4da7',1,'Tgstation.Server.Host.Jobs.JobHandler.task()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a2d1a4fc7b7fee56456ccebfb699ad8ee',1,'Tgstation.Server.Host.Security.IdentityCacheObject.task()']]], + ['taskextensions_1926',['TaskExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['taskextensions_2ecs_1927',['TaskExtensions.cs',['../_task_extensions_8cs.html',1,'']]], + ['temporarydmbprovider_1928',['TemporaryDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a8cbcf4f057352b274e8c2adf461bf220',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.TemporaryDmbProvider()']]], + ['temporarydmbprovider_2ecs_1929',['TemporaryDmbProvider.cs',['../_temporary_dmb_provider_8cs.html',1,'']]], + ['terminate_1930',['Terminate',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a7fded5c4b8aeb291ad5b1797a25eee14',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a49a9acdffdc9e7cd176f803b23e97ff4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Terminate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a840da56ea51a4bbbc6b21667cc6355a2',1,'Tgstation.Server.Host.System.IProcess.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4788d938ba886eaf6e19ac5464460',1,'Tgstation.Server.Host.System.Process.Terminate()']]], + ['terminatenolock_1931',['TerminateNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6845304123ed975aec4de3dc79bf8551',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['terminationwasrequested_1932',['TerminationWasRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a9eae9a3173b2dc4dae3d2bfa67196d5b',1,'Tgstation.Server.Host.Components.Session.ISessionController.TerminationWasRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a253ee7e74591b02552eb4337c1b7fc5e',1,'Tgstation.Server.Host.Components.Session.SessionController.TerminationWasRequested()']]], + ['testdatabaseconnection_1933',['TestDatabaseConnection',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ab962664cd664ba5ad329e8af1d6b49a7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['testmerge_1934',['TestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Host.Models.TestMerge'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.Internal.TestMerge'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.TestMerge'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a76c0f83e9fc28eeefb8ed97592cd368b',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.TestMerge()']]], + ['testmerge_2ecs_1935',['TestMerge.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html',1,'(Global Namespace)']]], + ['testmergebase_1936',['TestMergeBase',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#aed82b2a4e5e83239f18657ff4a91b65f',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a22e08f62b7a5647d905d8b0ce7f703bd',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase(TestMergeBase copy)']]], + ['testmergebase_2ecs_1937',['TestMergeBase.cs',['../_test_merge_base_8cs.html',1,'']]], + ['testmergeinformation_1938',['TestMergeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a64ffd55fcded7a03edbb7cbf43eccd9e',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation.TestMergeInformation()']]], + ['testmergeinformation_2ecs_1939',['TestMergeInformation.cs',['../_test_merge_information_8cs.html',1,'']]], + ['testmergeparameters_1940',['TestMergeParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html',1,'Tgstation::Server::Api::Models']]], + ['testmergeparameters_2ecs_1941',['TestMergeParameters.cs',['../_test_merge_parameters_8cs.html',1,'']]], + ['testmerges_1942',['TestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a09eb9fa66db042c102ecc2b37da200b8',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab299cd000e56e4d1bb7f33b2223f97db',1,'Tgstation.Server.Host.Database.DatabaseContext.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6f140bbda8ac722038e19f1ecaf7b1cf',1,'Tgstation.Server.Host.Models.User.TestMerges()']]], + ['text_1943',['Text',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ace3d5601299f5b5a17ffa0b6aa81b28a',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], + ['tgsauthorizeattribute_1944',['TgsAuthorizeAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a71fd52c8f3c07624632ca72fa669aff9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a56841444b636e471e28acb3fd7165372',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(AdministrationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a6103a7a1e759498a879c440554ed156e',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceManagerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a9bab142d724f39746e9b5cb3f11053eb',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(RepositoryRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ab9d25ba7784171d98030af65820e31b9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ByondRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a74a9510478d9a004288929247b99f59a',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamMakerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac602c75dd93d93f998119ede5a8a337b',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamDaemonRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac4808ff26e27647d62338b4c55369bab',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ChatBotRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#af81be6ff62cf941583825b5c7e8402c2',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ConfigurationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a075e1a5a46146957800a8461f26aaab0',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceUserRights requiredRights)']]], + ['tgsauthorizeattribute_2ecs_1945',['TgsAuthorizeAttribute.cs',['../_tgs_authorize_attribute_8cs.html',1,'']]], + ['tgssystemusername_1946',['TgsSystemUserName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a2e68345f5d52c8ba64dca5ec061d029d',1,'Tgstation::Server::Host::Models::User']]], + ['tgstation_1947',['Tgstation',['../namespace_tgstation.html',1,'']]], + ['threadaccess_1948',['ThreadAccess',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52a',1,'Tgstation::Server::Host::NativeMethods']]], + ['timemerged_1949',['TimeMerged',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a2c485aa14b6c4e84abc06d965572fe97',1,'Tgstation::Server::Host::Components::Interop::Bridge::TestMergeInformation']]], + ['timeout_1950',['Timeout',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a015e61f9e9728ad9b47c175445ea67a1',1,'Tgstation.Server.Client.ApiClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a1c5eb3e376e012d3ca08caf71b009a22',1,'Tgstation.Server.Client.HttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a92b092701f159c344a3c78be34161ecf',1,'Tgstation.Server.Client.IApiClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#ad27a406c0398b4824889a0020ee291aa',1,'Tgstation.Server.Client.IHttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa1c1488dd8438023b24c87a32e09d5fe',1,'Tgstation.Server.Client.IServerClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7d3be56a549f9aedb631bb3824dd5790',1,'Tgstation.Server.Client.ServerClient.Timeout()']]], + ['timeoutseconds_1951',['TimeoutSeconds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6b7d2a57ba6340f51694987653033677',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['timercts_1952',['timerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aab6ba11c7820ee9de39771aabbecdfcb',1,'Tgstation::Server::Host::Components::Instance']]], + ['timerlock_1953',['timerLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#af352e8a195c6b95d852ef8873390c3a0',1,'Tgstation::Server::Host::Components::Instance']]], + ['timerloop_1954',['TimerLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afb736b47a7400fb861186b8dad1c4c4c',1,'Tgstation::Server::Host::Components::Instance']]], + ['timertask_1955',['timerTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#abf825c028f20cd903db1362892dbd833',1,'Tgstation::Server::Host::Components::Instance']]], + ['titleatmerge_1956',['TitleAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a11bb79f0060477eb3fd084a09fbc0f04',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], + ['toapi_1957',['ToApi',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ac6049a16c80f49d1503935589a5e0042',1,'Tgstation.Server.Host.Models.ChatBot.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a01525688d871d70d1ab28cdda6083011',1,'Tgstation.Server.Host.Models.ChatChannel.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a64a9fc0f8da344e311b5b754eec10611',1,'Tgstation.Server.Host.Models.CompileJob.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab477e13756ea540790df3e245e17173b',1,'Tgstation.Server.Host.Models.DreamMakerSettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a169bffb644b7ff7c3686c29373f662c1',1,'Tgstation.Server.Host.Models.Instance.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#aad0b6b9eaf0b0a9462987564aa254b68',1,'Tgstation.Server.Host.Models.InstanceUser.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aaea7f482968921045b73cbdaca4dd652',1,'Tgstation.Server.Host.Models.Job.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#acff6370af1842c659c6f8ecb85dd0ea3',1,'Tgstation.Server.Host.Models.RepositorySettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a8e6f5b4375c0594f10c413c4119515b1',1,'Tgstation.Server.Host.Models.RevisionInformation.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac2943458d2fc3077a6684408fb26ab09',1,'Tgstation.Server.Host.Models.TestMerge.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8effbd8cd0ce7ba4c72f40efc08a9b50',1,'Tgstation.Server.Host.Models.User.ToApi(bool recursive, bool showDetails)'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a1d6fee3f42a73a1505d6d0d12d68b3d9',1,'Tgstation.Server.Host.Models.User.ToApi(bool showDetails)']]], + ['tofilestamp_1958',['ToFileStamp',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html#a1c52f86735de10e4573d0dc5905be489',1,'Tgstation::Server::Host::Extensions::DateTimeOffsetExtensions']]], + ['token_1959',['Token',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html',1,'Tgstation.Server.Api.Models.Token'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a48b5fae887842cd76920ef76944583a2',1,'Tgstation.Server.Api.ApiHeaders.Token()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#ab3363ffdb533616bd2b6688559f9def1',1,'Tgstation.Server.Client.IServerClient.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9c54c9b21bfad615f275484dafc6decc',1,'Tgstation.Server.Client.ServerClient.Token()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a24771450ef1521a1c51fc0291e3c67a0',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7137670591717642aa084370ed40377e',1,'Tgstation.Server.Client.ServerClient.token()']]], + ['token_2ecs_1960',['Token.cs',['../_token_8cs.html',1,'']]], + ['tokenclockskewminutes_1961',['TokenClockSkewMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a5d8659fa382c1c18188b3d869fb17b1f',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['tokenexpiryminutes_1962',['TokenExpiryMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#aee22270ec4a1917739c2f99d9a5a6efd',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['tokenfactory_1963',['TokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html',1,'Tgstation.Server.Host.Security.TokenFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a3fd0782fa495e68c15cc28367fed9373',1,'Tgstation.Server.Host.Security.TokenFactory.TokenFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afd05899e85f5a8a6b8c8e374364872f8',1,'Tgstation.Server.Host.Controllers.HomeController.tokenFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a93cb446fc8d8f84ea595abe709265398',1,'Tgstation.Server.Host.Core.Application.tokenFactory()']]], + ['tokenfactory_2ecs_1964',['TokenFactory.cs',['../_token_factory_8cs.html',1,'']]], + ['tokenrefreshheaders_1965',['tokenRefreshHeaders',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a0091954fd17fc24bfbfe28df9ca2a518',1,'Tgstation::Server::Client::ApiClient']]], + ['tokensecurityschemeid_1966',['TokenSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a0fd6cdaa7f3d8b391f91b820bfea5d56',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], + ['tokensigningkeybytecount_1967',['TokenSigningKeyByteCount',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a24760533fd28fd555b428d626ab46f9a',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['tokensourceaccesslock_1968',['tokenSourceAccessLock',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ac4a3842c9ed0356d2c2199a80c7820f5',1,'Tgstation::Server::Host::System::ProgramShutdownTokenSource']]], + ['tokenwithtoken_1969',['TokenWithToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9a6fc03ca61381e162705346a62ddbea',1,'Tgstation::Server::Api::Models']]], + ['topic_1970',['Topic',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['topicclientfactory_1971',['TopicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b6080e35383ff3c7f8695eef39522d4',1,'Tgstation.Server.Host.Components.InstanceFactory.topicClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a09c977af69bd3d954c7dd4ca0b89e92e',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a21833439f6cbb353c49a7e9d79682213',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.TopicClientFactory()']]], + ['topicclientfactory_2ecs_1972',['TopicClientFactory.cs',['../_topic_client_factory_8cs.html',1,'']]], + ['topiccommandtype_1973',['TopicCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['topiccommandtype_2ecs_1974',['TopicCommandType.cs',['../_topic_command_type_8cs.html',1,'']]], + ['topicdata_1975',['TopicData',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#afd2a05fed50a107378c6bdcab313c309',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['topicparameters_1976',['TopicParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae118357d22348fdcff032c1efced3c7d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(TopicCommandType commandType)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a72da9f55f222514ad7aa1eb82116982b',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatCommand chatCommand)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa6d3ce3910a4e966608f1bb96e76e7f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(EventNotification eventNotification)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aae80f88486056044b0bd7562dab53083',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ushort newPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a2a353bdd802d0b4e4f11980aeb0ec168',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(RebootState newRebootState)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac140d441b2ec1db127e91555f0a93255',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(string newInstanceName)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aee6668a97907129159729b4716f8b71d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatUpdate channelsUpdate)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#af3473b0e8d20a291a255361587bce56f',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(Version newServerVersion, ushort serverPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac97b495dfe29514ee8152a9e63ce8558',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters()']]], + ['topicparameters_2ecs_1977',['TopicParameters.cs',['../_topic_parameters_8cs.html',1,'']]], + ['topicrequesttimeout_1978',['TopicRequestTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5e172ad3abdcc1f6a0f24cdf08646d0a',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.TopicRequestTimeout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0e7e39db3290479256688fc7dae2e52d',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.TopicRequestTimeout()']]], + ['topicresponse_1979',['TopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['topicresponse_2ecs_1980',['TopicResponse.cs',['../_topic_response_8cs.html',1,'']]], + ['tostring_1981',['ToString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a659884baa91d2aa0072ccd9da844cc1e',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#aeeb97f3f4f9cc635eaa55b2e9c81ad84',1,'Tgstation.Server.Api.Models.Internal.ChatConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#ac2a182244a480865e560b06da8c4a152',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#ae3db14365b6d8d193923b9037d8f4bdb',1,'Tgstation.Server.Host.Components.Session.LaunchResult.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a16ccfcf72481ac33f4a2a2a22cb7b135',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ToString()']]], + ['totaldmeoverwrite_1982',['TotalDmeOverwrite',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac81394b6c071d9779ab94c8151281723',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['trace_1983',['Trace',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5d7201b8cfa09c341ec68d81297aabad',1,'Tgstation::Server::Host::Service::Program']]], + ['trackedrepositoryurl_1984',['TrackedRepositoryUrl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a6c0253a0153c42989e6ab3279c01ede4',1,'Tgstation::Server::Api::Models::Administration']]], + ['tracking_1985',['Tracking',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a422e7c7f5d5ac88a75693311521b5d6a',1,'Tgstation.Server.Host.Components.Repository.IRepository.Tracking()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4a27a5627052f0463fd42c7d3fd569a6',1,'Tgstation.Server.Host.Components.Repository.Repository.Tracking()']]], + ['trackingcontexts_1986',['trackingContexts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3db93fb570555b5984466877551fe9f',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['trustdmbpath_1987',['TrustDmbPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aaefbc3a18632926c53945415b70b33fc',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.TrustDmbPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a1c0099bbd7870ed77fb8a579621efdd8',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.TrustDmbPath()']]], + ['trusted_1988',['Trusted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac0405d71f21e769c787a10b9620f11ea',1,'Tgstation::Server::Api::Models']]], + ['trusteddmbfilename_1989',['TrustedDmbFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a5a5c4ccd1b87f212adcf975e798a8c9d',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['trustedfilepath_1990',['trustedFilePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae6c0ec40623ecca3dffca74160e7f114',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], + ['trustedfilesemaphore_1991',['trustedFileSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aab496f2d05bd3fa5ea18502639c64c29',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], + ['trysetpassword_1992',['TrySetPassword',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ac2c00169e075062d4e1f040ed0c3b5b0',1,'Tgstation::Server::Host::Controllers::UserController']]], + ['type_1993',['Type',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#acd1f470810912fd0d755545b4e15dc64',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], + ['typemap_1994',['TypeMap',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0639f64451959386f79762cb8586b4f0',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['watchdog_1995',['Watchdog',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog'],['../namespace_tgstation_1_1_server_1_1_host_1_1_watchdog.html',1,'Tgstation.Server.Host.Watchdog']]] ]; diff --git a/search/all_15.html b/search/all_15.html index ff415521e6..e7da8d60df 100644 --- a/search/all_15.html +++ b/search/all_15.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_15.js b/search/all_15.js index c0d13e3587..483047db94 100644 --- a/search/all_15.js +++ b/search/all_15.js @@ -1,59 +1,60 @@ var searchData= [ - ['uid_1943',['Uid',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html#a8106232a30bec19e62172fb31e568924',1,'Tgstation.Server.Host.Components.IInstanceReference.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a448db4112dfdf325225e5927d3e4f648',1,'Tgstation.Server.Host.Components.InstanceWrapper.Uid()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a21339e0b4c3d045ba30c6ac6ea15aa4f',1,'Tgstation.Server.Host.Security.ISystemIdentity.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a1c18aa1534a848f94ccc6d624179868b',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a5335d4436713401b2872d14752f1ba7b',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Uid()']]], - ['ultrasafe_1944',['Ultrasafe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5a380d297f2cbdccba869676c96bd38bc1',1,'Tgstation::Server::Api::Models']]], - ['unaskedvalidationrequest_1945',['UnaskedValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a4b42bf5b19925da0a8866a1dfdc33ffd',1,'Tgstation::Server::Host::Components::Session']]], - ['unauthorizedexception_1946',['UnauthorizedException',['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html',1,'Tgstation.Server.Client.UnauthorizedException'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#afd9cbaa1fbc248771f74febdfc17abfd',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#ab5b729c4ff826ad5fdd574db0942b8f7',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#af481bddb4a0e255b1430b6e9f4b62a7e',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message, Exception innerException)']]], - ['unauthorizedexception_2ecs_1947',['UnauthorizedException.cs',['../_unauthorized_exception_8cs.html',1,'']]], - ['uninstall_1948',['Uninstall',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a6868da29a3857b56bba33e5d7c623b68',1,'Tgstation::Server::Host::Service::Program']]], - ['unknownreference_1949',['UnknownReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad02f759b45e4f20dfee55cfbf3f78baa',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['unrecognizedresponseexception_1950',['UnrecognizedResponseException',['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html',1,'Tgstation.Server.Client.UnrecognizedResponseException'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a282b4f2eda537df30d31d3acc32b11db',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#ada8a7b87eb9de50dd5b9e43b749ab1be',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException()'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a783856ad9431193f65c6b76381fb9990',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a299e46f1692182ca4c908d6bed931e00',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message, Exception innerException)']]], - ['unrecognizedresponseexception_2ecs_1951',['UnrecognizedResponseException.cs',['../_unrecognized_response_exception_8cs.html',1,'']]], - ['up_1952',['Up',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7df7a394603b58660e31804151c6b596',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a6ce02c8ec227b29b0de690abb7b3a8af',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#ad01b39dca497b10060c2058a1dd66160',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a48d1ac48f970e1bd84139bb112118398',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ae3c9b00858947f20604494860bf674de',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#ab83944ba8a141a2b0723b9180e638549',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#af9f127aef130a8dfd1fd957864d08570',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a0ba7771562cd594634f73b8e239a3c6c',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a3544f139764a77e677142a392ebaf217',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#af4403fe4bde2f525305be051e4d6848c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#a6eb6707c5b402b8d2ddbf31b7b25bc6e',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ad64d31c0438c6d7d7893a2cc34d51d00',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#abdf29c335522af79ec11007d86808b7e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a8be4ce807c0078fead38522c78bd2547',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a22370cdfbdbd8084ecc4a94c30d614c5',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a22a2e1dbca28937f3dc4ae596b875d1f',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a20f96799e10f96906c09d1f2cd7e26dd',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a051b191cb4c6e4b1eaa32e96b0bbfa3a',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a5f6c37e76fc48cbf1c89c1bf174e327c',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a96a82dc6acfbac30b83c1f8181b6a92d',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ae0b40f0db7f96df8a2c37a2cd6a221ef',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ae78d569e6f671655580e4461077b37bd',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#ad5f9c3ca384fa8d5d405a0c04b2f2917',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a495a9fdada8b62f420551f79f517f98d',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a0ea5e2853467d505261be8cc1ced22b1',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a3b4ba38bdf88d4fb349fffad5e8b564e',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a990cb1cbeced6a9facb3146f61c3bb22',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a6115c297329930e0c71e351c03330e8b',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a84b0a9d8a7be255cb2443bc3b29daaf9',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a08dfb12aacd8b1b98b352d1afba5085c',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#a3c94db4d8958852e62984e00f8d3625a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a2338f4e1c23d55843679aa523fbdb9ad',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a893443a69066318b2a3e5868880b4d32',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a55448d2e7133c0b8444eb9c851954e52',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#aed8f2b19b9edf7781ed2525d1f1a4130',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a53ea0db7eb5a384f2b64084cf25858dd',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a7ba2038004208f1baef9a09bea0cc9cd',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#ada614a2598d25ed2d196c92b8def6a8a',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a8ff25cd28e9b941df998a6d0df838e3d',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#adf7992f800e6c42b18ed7370924799c4',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#ae9433f85926cbbdb4308b26d671f4cd9',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a86720c32808a0ffbf58d45caf8743936',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#ac6aff172b1631e7c1023de87db67d7ba',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#a80a41c479a477c912b5cd47f3c4fb979',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#a92bd2ce8eaa81493340e05f9f3f0dd7c',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a705c36e2c8870e9a48e9ff58929c66d6',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#ab02baa005a77302f225ce563d75c9588',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#abce088942e2b684a287ecfb18d3a1b65',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a74ee376b058283e18cdb5129f87c85f3',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Up()']]], - ['update_1953',['Update',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a43842f5f15ef0b33c5450accdb18609f',1,'Tgstation.Server.Client.AdministrationClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a8f60027fc85212c9b35249cccc88d1e3',1,'Tgstation.Server.Client.Components.ChatBotsClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a1bc64b3c8ac57f22694751cccf580f90',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#ae428fd6c9fad6e1d019b3ded7579c0b5',1,'Tgstation.Server.Client.Components.DreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ab2356151d04b5f17d797b22dc82c6354',1,'Tgstation.Server.Client.Components.IChatBotsClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a9cc6c3e2db7c4491f00ff9347acfe634',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a328b3fb9bebf37474ab554894b43eb54',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a96063a725f2be7f6891ab46e66e7006b',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#adf513d69fe64d03119446eba42df5250',1,'Tgstation.Server.Client.Components.InstanceUserClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a24995226be87730e9b7d49d6c53f5b2c',1,'Tgstation.Server.Client.Components.IRepositoryClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a718c5e27cfe0ddbfcc9c0746ec16a6e0',1,'Tgstation.Server.Client.Components.RepositoryClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a666df801432630c494c916d35834a38b',1,'Tgstation.Server.Client.IAdministrationClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a337b3e0676570d2ba2928b0d2cef5595',1,'Tgstation.Server.Client.IInstanceManagerClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aed0303f71e96db6fa88fc10cdfb196d3',1,'Tgstation.Server.Client.InstanceManagerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aecbd14842867cfdce083b793f91ab14e',1,'Tgstation.Server.Client.IUsersClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a89d2d761849b9b8f2932920841d996e1',1,'Tgstation.Server.Client.UsersClient.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afbf7a02a0808b463ea298c43a03e0e99',1,'Tgstation.Server.Host.Controllers.AdministrationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#ad84ccddae9c935bc645b048f8ea46d7f',1,'Tgstation.Server.Host.Controllers.ByondController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a7568d3ba39d641f3fb486c779aea92cf',1,'Tgstation.Server.Host.Controllers.ChatController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a7c19c1f24368f45b5e65ccf73fc58416',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ae9ce00c8ac0758a4c2328eae7d7ef2eb',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a6ec0755f8794e6323ba59634c76bd498',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad31a819fbeeca3ebd71d35892ce10b19',1,'Tgstation.Server.Host.Controllers.InstanceController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#acf0cc09f53acd6c87a91a4a01afe8daa',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a20510f6dd61837e191a7a2c1a5c1c9ce',1,'Tgstation.Server.Host.Controllers.RepositoryController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7f795d4042188f30317c6134b75afc70',1,'Tgstation.Server.Host.Controllers.UserController.Update()']]], - ['update_3c_20tbody_20_3e_1954',['Update< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a92a748d5262e33c6ece011016d780c35',1,'Tgstation.Server.Client.ApiClient.Update< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a036ef64cf33e776c9042fa59aecbc9ba',1,'Tgstation.Server.Client.IApiClient.Update< TBody >()']]], - ['update_3c_20tbody_2c_20tresult_20_3e_1955',['Update< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aeba489d6ab822da7fe59b46cf0cb2ad4',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7c36add8f2943a7505b20213322be406',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a1573e017176db0b603a72944c5373e12',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#aed63658d4aa92fc6c6860bab59bb1b2d',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], - ['update_3c_20tresult_20_3e_1956',['Update< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afe91cd24b8b838c9e80e8165c393502c',1,'Tgstation.Server.Client.ApiClient.Update< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a2c07a344cb71a5194c90be0b7d71c0bf',1,'Tgstation.Server.Client.IApiClient.Update< TResult >()']]], - ['updatebranch_1957',['UpdateBranch',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a31df5784b56922c3559917d3286fcac3',1,'Tgstation::Server::Api::Rights']]], - ['updatechannels_1958',['UpdateChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a900375667702050cc6bf0ffaf6cbbd16',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.UpdateChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html#ac3f839f7d95d8ad7cd22a0fc68cb6860',1,'Tgstation.Server.Host.Components.Chat.IChannelSink.UpdateChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1097ea23222ee708fb5cce9b3078d666',1,'Tgstation.Server.Host.Components.Session.SessionController.UpdateChannels()']]], - ['updatefromorigin_1959',['UpdateFromOrigin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ac917f08ca0b2f81b49544a1b7b9d3757',1,'Tgstation::Server::Api::Models::Repository']]], - ['updatepackageassetname_1960',['UpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f5697f355392923d10aa77a8e94dc91',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['updatepath_1961',['updatePath',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a4e10711e91a3025a08ab98e9024e90ad',1,'Tgstation::Server::Host::Server']]], - ['updatesconfiguration_1962',['UpdatesConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html',1,'Tgstation.Server.Host.Configuration.UpdatesConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afa09210575a84b625e234e7e0b19fa08',1,'Tgstation.Server.Host.Controllers.AdministrationController.updatesConfiguration()']]], - ['updatesconfiguration_2ecs_1963',['UpdatesConfiguration.cs',['../_updates_configuration_8cs.html',1,'']]], - ['updating_1964',['updating',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a3a4cc72abe0c0a1e8caddeab4a210324',1,'Tgstation::Server::Host::Server']]], - ['url_1965',['Url',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a13979c77e1d657fe44ddc266d833515d',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.Url()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a33675bc7469cf1e0dd8f1a21dbaa71a2',1,'Tgstation.Server.Client.ApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0efbf73e1dfbee520ceafa593ee2ec51',1,'Tgstation.Server.Client.IApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a2c34434ebb4af540cbd3ec67fc116396',1,'Tgstation.Server.Client.IServerClient.Url()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7dcb54f317c73bd5a54f7856f0ef79fc',1,'Tgstation.Server.Client.ServerClient.Url()']]], - ['useapplication_1966',['UseApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html#a99cb6b8254d549fa635f9cdc908debba',1,'Tgstation::Server::Host::Extensions::WebHostBuilderExtensions']]], - ['usebasicwatchdog_1967',['UseBasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a243d2eb586c4560648de8e670bad907c',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['usecancelledrequestsuppression_1968',['UseCancelledRequestSuppression',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#ac119fdfd544f8d4e196bedaba59247ad',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['usecontext_1969',['UseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a655c73b949f3fe4fee8106844ef2eab2',1,'Tgstation.Server.Host.Database.DatabaseContextFactory.UseContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#ad22fce8fc51129e9da203dcef2f7ab42',1,'Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext()']]], - ['usedbconflicthandling_1970',['UseDbConflictHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9fb7c6b75b76c45a6102bec991a311c4',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['useexecutables_1971',['UseExecutables',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3767b16e9f00578e385dcca6b7e6b816',1,'Tgstation.Server.Host.Components.Byond.ByondManager.UseExecutables()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae897f63dc75160c7378292be017a50b1',1,'Tgstation.Server.Host.Components.Byond.IByondManager.UseExecutables()']]], - ['user_1972',['User',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html',1,'Tgstation.Server.Api.Models.Internal.User'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html',1,'Tgstation.Server.Host.Models.User'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html',1,'Tgstation.Server.Api.Models.User'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a12784e8b5b7ac25c0684c9d4c7c59178',1,'Tgstation.Server.Api.Routes.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a92a51d88c16a6182343cb66e36f3bf89',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a4bc35ef53e296ec237216b3d0312f5da',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a0846ac9679599a99923987863edb0d5c',1,'Tgstation.Server.Host.Security.AuthenticationContext.User()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#ae2e7c0c04d2797b9a24a9776277ec77b',1,'Tgstation.Server.Host.Security.IAuthenticationContext.User()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)']]], - ['user_2ecs_1973',['User.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_user_8cs.html',1,'(Global Namespace)']]], - ['useragent_1974',['UserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a0562061dc87df56fe1e6875556f535b9',1,'Tgstation.Server.Api.ApiHeaders.UserAgent()'],['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa7a1c9344ffcbe2316169f2cbbc867973',1,'Tgstation.Server.Api.UserAgent()']]], - ['usercoloninname_1975',['UserColonInName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8acc88a1ecdc7342ee66cbaa257334a82f',1,'Tgstation::Server::Api::Models']]], - ['usercontroller_1976',['UserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html',1,'Tgstation.Server.Host.Controllers.UserController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a972194803b6ad32f7be555b9ea93e961',1,'Tgstation.Server.Host.Controllers.UserController.UserController()']]], - ['usercontroller_2ecs_1977',['UserController.cs',['../_user_controller_8cs.html',1,'']]], - ['userid_1978',['UserId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ab931666b8099bf3f765545912f07246c',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['userlimit_1979',['UserLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a74a84ae6531a78ce51038f22e081bd04',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['usermismatchnamesid_1980',['UserMismatchNameSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab254802c60656270a5f21f42da04bc0e',1,'Tgstation::Server::Api::Models']]], - ['usermismatchpasswordsid_1981',['UserMismatchPasswordSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae272fba7876aca6039eb7560c8daa7be',1,'Tgstation::Server::Api::Models']]], - ['usermissingid_1982',['UserMissingId',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a044890652423551342e8a034741750b5',1,'Tgstation::Server::Api::Models']]], - ['usermissingname_1983',['UserMissingName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa3364f781ce5d54c217bdba6a4f8fe47',1,'Tgstation::Server::Api::Models']]], - ['username_1984',['Username',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3f35c621d1a28887fb4bc2885e2c893c',1,'Tgstation.Server.Api.ApiHeaders.Username()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#abdae9176f2609703ff36c43d7af97ac1',1,'Tgstation.Server.Host.Security.ISystemIdentity.Username()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a278f605efe57bee3e5b4cb45ded040b2',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Username()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a7bbd8a3a43a6a2864b3348ae7f9438b9',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Username()']]], - ['usernamechange_1985',['UserNameChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a62cd93d475c146a93fa08ce89132bf72',1,'Tgstation::Server::Api::Models']]], - ['userpasswordlength_1986',['UserPasswordLength',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3c8306a8d5116e9f6584f3c845a6afbe',1,'Tgstation::Server::Api::Models']]], - ['userprincipal_1987',['userPrincipal',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#abf93d22395acd37f9c24aee156691f7a',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], - ['users_1988',['Users',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#acbd79ed6748d8aac0bd0500c01b419ac',1,'Tgstation.Server.Client.Components.IInstanceClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a01eeaccf183e928f6f50ebb60abdad',1,'Tgstation.Server.Client.Components.InstanceClient.Users()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a9c807f862e80f400477c6783910276ee',1,'Tgstation.Server.Client.IServerClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a6794b452542c1ee7c38c573e67e6aa83',1,'Tgstation.Server.Client.ServerClient.Users()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad1c33807b7a75d05d0004e024416e17f',1,'Tgstation.Server.Host.Database.DatabaseContext.Users()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae38fd9989e134c1d3a621fa56f0d3691',1,'Tgstation.Server.Host.Database.DatabaseContext.Users()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9b6cb85c0616ae3076d4837f50a34d95',1,'Tgstation.Server.Host.Database.IDatabaseContext.Users()']]], - ['usersclient_1989',['UsersClient',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html',1,'Tgstation.Server.Client.UsersClient'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#aa7e771fad86b68de8483944e9f34a88e',1,'Tgstation.Server.Client.UsersClient.UsersClient()']]], - ['usersclient_2ecs_1990',['UsersClient.cs',['../_users_client_8cs.html',1,'']]], - ['userscollection_1991',['usersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6ce29a522553d19841a4dd07fcc1a545',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['usersidchange_1992',['UserSidChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97e2a1f4c98dbb3165aa317dc67ea435',1,'Tgstation::Server::Api::Models']]], - ['userupdate_1993',['UserUpdate',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html',1,'Tgstation::Server::Api::Models']]], - ['userupdate_2ecs_1994',['UserUpdate.cs',['../_user_update_8cs.html',1,'']]], - ['useservererrorhandling_1995',['UseServerErrorHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a879c6c603a37c9aebf25174e7aee4b2d',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['usesetupapplication_1996',['UseSetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html#ae797b26258b28c3540df4af88ff850fe',1,'Tgstation::Server::Host::Extensions::HostBuilderExtensions']]], - ['usessl_1997',['UseSsl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a8965e74ecabbb3c26693d2a1885dabc3',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], - ['usestandardconfig_3c_20tconfig_20_3e_1998',['UseStandardConfig< TConfig >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a47937ae7bd20d9b7cc5699cce51cb8ae',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]] + ['uid_1996',['Uid',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html#a8106232a30bec19e62172fb31e568924',1,'Tgstation.Server.Host.Components.IInstanceReference.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a448db4112dfdf325225e5927d3e4f648',1,'Tgstation.Server.Host.Components.InstanceWrapper.Uid()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a21339e0b4c3d045ba30c6ac6ea15aa4f',1,'Tgstation.Server.Host.Security.ISystemIdentity.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a1c18aa1534a848f94ccc6d624179868b',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a5335d4436713401b2872d14752f1ba7b',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Uid()']]], + ['ultrasafe_1997',['Ultrasafe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5a380d297f2cbdccba869676c96bd38bc1',1,'Tgstation::Server::Api::Models']]], + ['unaskedvalidationrequest_1998',['UnaskedValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a4b42bf5b19925da0a8866a1dfdc33ffd',1,'Tgstation::Server::Host::Components::Session']]], + ['unauthorizedexception_1999',['UnauthorizedException',['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html',1,'Tgstation.Server.Client.UnauthorizedException'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#afd9cbaa1fbc248771f74febdfc17abfd',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#ab5b729c4ff826ad5fdd574db0942b8f7',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#af481bddb4a0e255b1430b6e9f4b62a7e',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message, Exception innerException)']]], + ['unauthorizedexception_2ecs_2000',['UnauthorizedException.cs',['../_unauthorized_exception_8cs.html',1,'']]], + ['uninstall_2001',['Uninstall',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a6868da29a3857b56bba33e5d7c623b68',1,'Tgstation::Server::Host::Service::Program']]], + ['unknownreference_2002',['UnknownReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad02f759b45e4f20dfee55cfbf3f78baa',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['unrecognizedresponseexception_2003',['UnrecognizedResponseException',['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html',1,'Tgstation.Server.Client.UnrecognizedResponseException'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a282b4f2eda537df30d31d3acc32b11db',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#ada8a7b87eb9de50dd5b9e43b749ab1be',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException()'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a783856ad9431193f65c6b76381fb9990',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a299e46f1692182ca4c908d6bed931e00',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message, Exception innerException)']]], + ['unrecognizedresponseexception_2ecs_2004',['UnrecognizedResponseException.cs',['../_unrecognized_response_exception_8cs.html',1,'']]], + ['up_2005',['Up',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7df7a394603b58660e31804151c6b596',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a6ce02c8ec227b29b0de690abb7b3a8af',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#ad01b39dca497b10060c2058a1dd66160',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a48d1ac48f970e1bd84139bb112118398',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ae3c9b00858947f20604494860bf674de',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#ab83944ba8a141a2b0723b9180e638549',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#af9f127aef130a8dfd1fd957864d08570',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a0ba7771562cd594634f73b8e239a3c6c',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a3544f139764a77e677142a392ebaf217',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#af4403fe4bde2f525305be051e4d6848c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#a6eb6707c5b402b8d2ddbf31b7b25bc6e',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ad64d31c0438c6d7d7893a2cc34d51d00',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#abdf29c335522af79ec11007d86808b7e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a8be4ce807c0078fead38522c78bd2547',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a22370cdfbdbd8084ecc4a94c30d614c5',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a22a2e1dbca28937f3dc4ae596b875d1f',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a20f96799e10f96906c09d1f2cd7e26dd',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a051b191cb4c6e4b1eaa32e96b0bbfa3a',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a5f6c37e76fc48cbf1c89c1bf174e327c',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a96a82dc6acfbac30b83c1f8181b6a92d',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ae0b40f0db7f96df8a2c37a2cd6a221ef',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ae78d569e6f671655580e4461077b37bd',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#ad5f9c3ca384fa8d5d405a0c04b2f2917',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a495a9fdada8b62f420551f79f517f98d',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a0ea5e2853467d505261be8cc1ced22b1',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a3b4ba38bdf88d4fb349fffad5e8b564e',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a990cb1cbeced6a9facb3146f61c3bb22',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a6115c297329930e0c71e351c03330e8b',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a84b0a9d8a7be255cb2443bc3b29daaf9',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a08dfb12aacd8b1b98b352d1afba5085c',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#a3c94db4d8958852e62984e00f8d3625a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a2338f4e1c23d55843679aa523fbdb9ad',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a893443a69066318b2a3e5868880b4d32',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a55448d2e7133c0b8444eb9c851954e52',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#aed8f2b19b9edf7781ed2525d1f1a4130',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a53ea0db7eb5a384f2b64084cf25858dd',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a7ba2038004208f1baef9a09bea0cc9cd',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#ada614a2598d25ed2d196c92b8def6a8a',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a8ff25cd28e9b941df998a6d0df838e3d',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#adf7992f800e6c42b18ed7370924799c4',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#ae9433f85926cbbdb4308b26d671f4cd9',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a86720c32808a0ffbf58d45caf8743936',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#ac6aff172b1631e7c1023de87db67d7ba',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#a80a41c479a477c912b5cd47f3c4fb979',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#a92bd2ce8eaa81493340e05f9f3f0dd7c',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a705c36e2c8870e9a48e9ff58929c66d6',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#ab02baa005a77302f225ce563d75c9588',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#abce088942e2b684a287ecfb18d3a1b65',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a74ee376b058283e18cdb5129f87c85f3',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html#a43b4662c4b85350004c4e238e73370ca',1,'Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html#a4ac3a00a8c5c5b5bd1b97da7d052c400',1,'Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html#abc2356fe919e3aca05769b897dfa1a09',1,'Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html#a94469c516c8db78e17efd51ec289522c',1,'Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Up()']]], + ['update_2006',['Update',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a43842f5f15ef0b33c5450accdb18609f',1,'Tgstation.Server.Client.AdministrationClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a8f60027fc85212c9b35249cccc88d1e3',1,'Tgstation.Server.Client.Components.ChatBotsClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a1bc64b3c8ac57f22694751cccf580f90',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#ae428fd6c9fad6e1d019b3ded7579c0b5',1,'Tgstation.Server.Client.Components.DreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ab2356151d04b5f17d797b22dc82c6354',1,'Tgstation.Server.Client.Components.IChatBotsClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a9cc6c3e2db7c4491f00ff9347acfe634',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a328b3fb9bebf37474ab554894b43eb54',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a96063a725f2be7f6891ab46e66e7006b',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#adf513d69fe64d03119446eba42df5250',1,'Tgstation.Server.Client.Components.InstanceUserClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a24995226be87730e9b7d49d6c53f5b2c',1,'Tgstation.Server.Client.Components.IRepositoryClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a718c5e27cfe0ddbfcc9c0746ec16a6e0',1,'Tgstation.Server.Client.Components.RepositoryClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a666df801432630c494c916d35834a38b',1,'Tgstation.Server.Client.IAdministrationClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a337b3e0676570d2ba2928b0d2cef5595',1,'Tgstation.Server.Client.IInstanceManagerClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aed0303f71e96db6fa88fc10cdfb196d3',1,'Tgstation.Server.Client.InstanceManagerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aecbd14842867cfdce083b793f91ab14e',1,'Tgstation.Server.Client.IUsersClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a89d2d761849b9b8f2932920841d996e1',1,'Tgstation.Server.Client.UsersClient.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afbf7a02a0808b463ea298c43a03e0e99',1,'Tgstation.Server.Host.Controllers.AdministrationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#ad84ccddae9c935bc645b048f8ea46d7f',1,'Tgstation.Server.Host.Controllers.ByondController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a7568d3ba39d641f3fb486c779aea92cf',1,'Tgstation.Server.Host.Controllers.ChatController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a7c19c1f24368f45b5e65ccf73fc58416',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ae9ce00c8ac0758a4c2328eae7d7ef2eb',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a6ec0755f8794e6323ba59634c76bd498',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad31a819fbeeca3ebd71d35892ce10b19',1,'Tgstation.Server.Host.Controllers.InstanceController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#acf0cc09f53acd6c87a91a4a01afe8daa',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a20510f6dd61837e191a7a2c1a5c1c9ce',1,'Tgstation.Server.Host.Controllers.RepositoryController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7f795d4042188f30317c6134b75afc70',1,'Tgstation.Server.Host.Controllers.UserController.Update()']]], + ['update_3c_20tbody_20_3e_2007',['Update< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a92a748d5262e33c6ece011016d780c35',1,'Tgstation.Server.Client.ApiClient.Update< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a036ef64cf33e776c9042fa59aecbc9ba',1,'Tgstation.Server.Client.IApiClient.Update< TBody >()']]], + ['update_3c_20tbody_2c_20tresult_20_3e_2008',['Update< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aeba489d6ab822da7fe59b46cf0cb2ad4',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7c36add8f2943a7505b20213322be406',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a1573e017176db0b603a72944c5373e12',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#aed63658d4aa92fc6c6860bab59bb1b2d',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], + ['update_3c_20tresult_20_3e_2009',['Update< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afe91cd24b8b838c9e80e8165c393502c',1,'Tgstation.Server.Client.ApiClient.Update< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a2c07a344cb71a5194c90be0b7d71c0bf',1,'Tgstation.Server.Client.IApiClient.Update< TResult >()']]], + ['updatebranch_2010',['UpdateBranch',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a31df5784b56922c3559917d3286fcac3',1,'Tgstation::Server::Api::Rights']]], + ['updatechannels_2011',['UpdateChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a900375667702050cc6bf0ffaf6cbbd16',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.UpdateChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html#ac3f839f7d95d8ad7cd22a0fc68cb6860',1,'Tgstation.Server.Host.Components.Chat.IChannelSink.UpdateChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1097ea23222ee708fb5cce9b3078d666',1,'Tgstation.Server.Host.Components.Session.SessionController.UpdateChannels()']]], + ['updatedeployment_2012',['UpdateDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#ac3aeb890dfb67252ed73f8026913fd10',1,'Tgstation::Server::Host::Components::Deployment::GitHubDeploymentManager']]], + ['updatefromorigin_2013',['UpdateFromOrigin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ac917f08ca0b2f81b49544a1b7b9d3757',1,'Tgstation::Server::Api::Models::Repository']]], + ['updatepackageassetname_2014',['UpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f5697f355392923d10aa77a8e94dc91',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['updatepath_2015',['updatePath',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a4e10711e91a3025a08ab98e9024e90ad',1,'Tgstation::Server::Host::Server']]], + ['updatesconfiguration_2016',['UpdatesConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html',1,'Tgstation.Server.Host.Configuration.UpdatesConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afa09210575a84b625e234e7e0b19fa08',1,'Tgstation.Server.Host.Controllers.AdministrationController.updatesConfiguration()']]], + ['updatesconfiguration_2ecs_2017',['UpdatesConfiguration.cs',['../_updates_configuration_8cs.html',1,'']]], + ['updating_2018',['updating',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a3a4cc72abe0c0a1e8caddeab4a210324',1,'Tgstation::Server::Host::Server']]], + ['url_2019',['Url',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a13979c77e1d657fe44ddc266d833515d',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.Url()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a33675bc7469cf1e0dd8f1a21dbaa71a2',1,'Tgstation.Server.Client.ApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0efbf73e1dfbee520ceafa593ee2ec51',1,'Tgstation.Server.Client.IApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a2c34434ebb4af540cbd3ec67fc116396',1,'Tgstation.Server.Client.IServerClient.Url()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7dcb54f317c73bd5a54f7856f0ef79fc',1,'Tgstation.Server.Client.ServerClient.Url()']]], + ['useapplication_2020',['UseApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html#a99cb6b8254d549fa635f9cdc908debba',1,'Tgstation::Server::Host::Extensions::WebHostBuilderExtensions']]], + ['usebasicwatchdog_2021',['UseBasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a243d2eb586c4560648de8e670bad907c',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['usecancelledrequestsuppression_2022',['UseCancelledRequestSuppression',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#ac119fdfd544f8d4e196bedaba59247ad',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['usecontext_2023',['UseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a655c73b949f3fe4fee8106844ef2eab2',1,'Tgstation.Server.Host.Database.DatabaseContextFactory.UseContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#ad22fce8fc51129e9da203dcef2f7ab42',1,'Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext()']]], + ['usedbconflicthandling_2024',['UseDbConflictHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9fb7c6b75b76c45a6102bec991a311c4',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['useexecutables_2025',['UseExecutables',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3767b16e9f00578e385dcca6b7e6b816',1,'Tgstation.Server.Host.Components.Byond.ByondManager.UseExecutables()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae897f63dc75160c7378292be017a50b1',1,'Tgstation.Server.Host.Components.Byond.IByondManager.UseExecutables()']]], + ['user_2026',['User',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html',1,'Tgstation.Server.Api.Models.User'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html',1,'Tgstation.Server.Host.Models.User'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html',1,'Tgstation.Server.Api.Models.Internal.User'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a12784e8b5b7ac25c0684c9d4c7c59178',1,'Tgstation.Server.Api.Routes.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a92a51d88c16a6182343cb66e36f3bf89',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a4bc35ef53e296ec237216b3d0312f5da',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a0846ac9679599a99923987863edb0d5c',1,'Tgstation.Server.Host.Security.AuthenticationContext.User()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#ae2e7c0c04d2797b9a24a9776277ec77b',1,'Tgstation.Server.Host.Security.IAuthenticationContext.User()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)']]], + ['user_2ecs_2027',['User.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_user_8cs.html',1,'(Global Namespace)']]], + ['useragent_2028',['UserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a0562061dc87df56fe1e6875556f535b9',1,'Tgstation.Server.Api.ApiHeaders.UserAgent()'],['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa7a1c9344ffcbe2316169f2cbbc867973',1,'Tgstation.Server.Api.UserAgent()']]], + ['usercoloninname_2029',['UserColonInName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8acc88a1ecdc7342ee66cbaa257334a82f',1,'Tgstation::Server::Api::Models']]], + ['usercontroller_2030',['UserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html',1,'Tgstation.Server.Host.Controllers.UserController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a972194803b6ad32f7be555b9ea93e961',1,'Tgstation.Server.Host.Controllers.UserController.UserController()']]], + ['usercontroller_2ecs_2031',['UserController.cs',['../_user_controller_8cs.html',1,'']]], + ['userid_2032',['UserId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ab931666b8099bf3f765545912f07246c',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['userlimit_2033',['UserLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a74a84ae6531a78ce51038f22e081bd04',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['usermismatchnamesid_2034',['UserMismatchNameSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab254802c60656270a5f21f42da04bc0e',1,'Tgstation::Server::Api::Models']]], + ['usermismatchpasswordsid_2035',['UserMismatchPasswordSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae272fba7876aca6039eb7560c8daa7be',1,'Tgstation::Server::Api::Models']]], + ['usermissingid_2036',['UserMissingId',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a044890652423551342e8a034741750b5',1,'Tgstation::Server::Api::Models']]], + ['usermissingname_2037',['UserMissingName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa3364f781ce5d54c217bdba6a4f8fe47',1,'Tgstation::Server::Api::Models']]], + ['username_2038',['Username',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3f35c621d1a28887fb4bc2885e2c893c',1,'Tgstation.Server.Api.ApiHeaders.Username()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#abdae9176f2609703ff36c43d7af97ac1',1,'Tgstation.Server.Host.Security.ISystemIdentity.Username()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a278f605efe57bee3e5b4cb45ded040b2',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Username()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a7bbd8a3a43a6a2864b3348ae7f9438b9',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Username()']]], + ['usernamechange_2039',['UserNameChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a62cd93d475c146a93fa08ce89132bf72',1,'Tgstation::Server::Api::Models']]], + ['userpasswordlength_2040',['UserPasswordLength',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3c8306a8d5116e9f6584f3c845a6afbe',1,'Tgstation::Server::Api::Models']]], + ['userprincipal_2041',['userPrincipal',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#abf93d22395acd37f9c24aee156691f7a',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], + ['users_2042',['Users',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#acbd79ed6748d8aac0bd0500c01b419ac',1,'Tgstation.Server.Client.Components.IInstanceClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a01eeaccf183e928f6f50ebb60abdad',1,'Tgstation.Server.Client.Components.InstanceClient.Users()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a9c807f862e80f400477c6783910276ee',1,'Tgstation.Server.Client.IServerClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a6794b452542c1ee7c38c573e67e6aa83',1,'Tgstation.Server.Client.ServerClient.Users()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad1c33807b7a75d05d0004e024416e17f',1,'Tgstation.Server.Host.Database.DatabaseContext.Users()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae38fd9989e134c1d3a621fa56f0d3691',1,'Tgstation.Server.Host.Database.DatabaseContext.Users()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9b6cb85c0616ae3076d4837f50a34d95',1,'Tgstation.Server.Host.Database.IDatabaseContext.Users()']]], + ['usersclient_2043',['UsersClient',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html',1,'Tgstation.Server.Client.UsersClient'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#aa7e771fad86b68de8483944e9f34a88e',1,'Tgstation.Server.Client.UsersClient.UsersClient()']]], + ['usersclient_2ecs_2044',['UsersClient.cs',['../_users_client_8cs.html',1,'']]], + ['userscollection_2045',['usersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6ce29a522553d19841a4dd07fcc1a545',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['usersidchange_2046',['UserSidChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97e2a1f4c98dbb3165aa317dc67ea435',1,'Tgstation::Server::Api::Models']]], + ['userupdate_2047',['UserUpdate',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html',1,'Tgstation::Server::Api::Models']]], + ['userupdate_2ecs_2048',['UserUpdate.cs',['../_user_update_8cs.html',1,'']]], + ['useservererrorhandling_2049',['UseServerErrorHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a879c6c603a37c9aebf25174e7aee4b2d',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['usesetupapplication_2050',['UseSetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html#ae797b26258b28c3540df4af88ff850fe',1,'Tgstation::Server::Host::Extensions::HostBuilderExtensions']]], + ['usessl_2051',['UseSsl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a8965e74ecabbb3c26693d2a1885dabc3',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], + ['usestandardconfig_3c_20tconfig_20_3e_2052',['UseStandardConfig< TConfig >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a47937ae7bd20d9b7cc5699cce51cb8ae',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]] ]; diff --git a/search/all_16.html b/search/all_16.html index 936394cece..3d58f17b12 100644 --- a/search/all_16.html +++ b/search/all_16.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_16.js b/search/all_16.js index d6a665ebf3..74930b6774 100644 --- a/search/all_16.js +++ b/search/all_16.js @@ -1,25 +1,25 @@ var searchData= [ - ['valid_1999',['Valid',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#adcfa84ac7eac02c297c7560df41d24a2',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.Valid()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#a9b8292cc2ffeb79aa55013c6d8a617d7',1,'Tgstation.Server.Api.Models.Internal.ChatConnectionStringBuilder.Valid()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a01ca8188cc4ec75b5bd47a8253aca0da',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Valid()']]], - ['validateconfigrelativepath_2000',['ValidateConfigRelativePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3947ddcc7baa1a6c536a0db65766c7cb',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['validateinstanceonlinestatus_2001',['ValidateInstanceOnlineStatus',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a666be878e8b392ab679eea0b30751dbf',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], - ['validateinstancerequest_2002',['ValidateInstanceRequest',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a08c7d163190736be9f4823dd9ba7eb11',1,'Tgstation.Server.Host.Controllers.ApiController.ValidateInstanceRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a518d9ff728410957637c47fcd2aad02c',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.ValidateInstanceRequest()']]], - ['validatenonexistantsqlitedbname_2003',['ValidateNonExistantSqliteDBName',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a8a3a9f933ee29e77d67fbd7223fd84ca',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['validateproviderchanneltypes_2004',['ValidateProviderChannelTypes',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a8f3524dcce53f320de9b210334928a06',1,'Tgstation::Server::Api::Models::ChatBot']]], - ['validationparameters_2005',['ValidationParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a46e66985719064cffa8b569830a3712f',1,'Tgstation.Server.Host.Security.ITokenFactory.ValidationParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a1fe6c5c282b5db5a2a61a5417e634ed8',1,'Tgstation.Server.Host.Security.TokenFactory.ValidationParameters()']]], - ['validinstancepaths_2006',['ValidInstancePaths',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a1bc0807183f8654ff304e1f78d73b205',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['verifyapi_2007',['VerifyApi',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab683b1788351899ba9ded6cd284c4177',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['version_2008',['Version',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6741a096c8700041ac2995b55078302b',1,'Tgstation.Server.Api.ApiHeaders.Version()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a5e83da474fffc2a2919cda933e09ce85',1,'Tgstation.Server.Api.Models.Byond.Version()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a6b4a0c3f0398cef893f307ff01c1e639',1,'Tgstation.Server.Api.Models.ServerInformation.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ac7e7961155c2d7c0e08be2d7320e45da',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aaef823795dc654725e448b487fefd9ac',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a338f454c7f08e0eb077a60888b268b14',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a2411d8e1e8a08732ccd83a76b14e0a43',1,'Tgstation.Server.Host.Components.Interop.DMApiConstants.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac1d47d91bd3883e453b23c120d1f0ec9',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a600df9ffd79d4f94f59dfefccbcec099',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Version()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a3bebba1e2658a94424e66713bf1085c4',1,'Tgstation.Server.Client.IServerClient.Version()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a8c853236fdd5679440d5ba7a1289012e',1,'Tgstation.Server.Client.ServerClient.Version()']]], - ['versioncommand_2009',['VersionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#aac843c7ae2125089ba16ccf1e35a0a0d',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.VersionCommand()']]], - ['versioncommand_2ecs_2010',['VersionCommand.cs',['../_version_command_8cs.html',1,'']]], - ['versionconverter_2011',['VersionConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], - ['versionconverter_2ecs_2012',['VersionConverter.cs',['../_version_converter_8cs.html',1,'']]], - ['versionextensions_2013',['VersionExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html',1,'Tgstation::Server::Api']]], - ['versionextensions_2ecs_2014',['VersionExtensions.cs',['../_version_extensions_8cs.html',1,'']]], - ['versionfilename_2015',['VersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#acb1d6dfeac5bf1c13e9857dcac03be46',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['versionkey_2016',['VersionKey',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#af852a60634ee83b315fcdaf9aa28b02a',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['versionmismatchexception_2017',['VersionMismatchException',['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html',1,'Tgstation.Server.Client.VersionMismatchException'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a966b6b4550325adc9ba29fd32c4e7309',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a98f49568d813eb370d5729acf521f661',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException()'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a28b7f81f775966bb71c0dcaf27734684',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#afac834c26a3f8b12f53c8a4e6deaae2c',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message, Exception innerException)']]], - ['versionmismatchexception_2ecs_2018',['VersionMismatchException.cs',['../_version_mismatch_exception_8cs.html',1,'']]], - ['versionprefix_2019',['VersionPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#aa4cd077258b22b53d6beaa0d78d70cb4',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.VersionPrefix()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#ab2a2be82555afbf6ffb5b7ae3d90b7f0',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.VersionPrefix()']]], - ['versionstring_2020',['VersionString',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac9a43553319585f54b7a6b69d862250c',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.VersionString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#abd6db0f6e1ea9273baeacaa66ae81fa3',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.VersionString()']]] + ['valid_2053',['Valid',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#adcfa84ac7eac02c297c7560df41d24a2',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.Valid()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#a9b8292cc2ffeb79aa55013c6d8a617d7',1,'Tgstation.Server.Api.Models.Internal.ChatConnectionStringBuilder.Valid()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a01ca8188cc4ec75b5bd47a8253aca0da',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Valid()']]], + ['validateconfigrelativepath_2054',['ValidateConfigRelativePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3947ddcc7baa1a6c536a0db65766c7cb',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['validateinstanceonlinestatus_2055',['ValidateInstanceOnlineStatus',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a666be878e8b392ab679eea0b30751dbf',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], + ['validateinstancerequest_2056',['ValidateInstanceRequest',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a08c7d163190736be9f4823dd9ba7eb11',1,'Tgstation.Server.Host.Controllers.ApiController.ValidateInstanceRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a518d9ff728410957637c47fcd2aad02c',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.ValidateInstanceRequest()']]], + ['validatenonexistantsqlitedbname_2057',['ValidateNonExistantSqliteDBName',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a8a3a9f933ee29e77d67fbd7223fd84ca',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['validateproviderchanneltypes_2058',['ValidateProviderChannelTypes',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a8f3524dcce53f320de9b210334928a06',1,'Tgstation::Server::Api::Models::ChatBot']]], + ['validationparameters_2059',['ValidationParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a46e66985719064cffa8b569830a3712f',1,'Tgstation.Server.Host.Security.ITokenFactory.ValidationParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a1fe6c5c282b5db5a2a61a5417e634ed8',1,'Tgstation.Server.Host.Security.TokenFactory.ValidationParameters()']]], + ['validinstancepaths_2060',['ValidInstancePaths',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a1bc0807183f8654ff304e1f78d73b205',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['verifyapi_2061',['VerifyApi',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab683b1788351899ba9ded6cd284c4177',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['version_2062',['Version',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6741a096c8700041ac2995b55078302b',1,'Tgstation.Server.Api.ApiHeaders.Version()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a5e83da474fffc2a2919cda933e09ce85',1,'Tgstation.Server.Api.Models.Byond.Version()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a6b4a0c3f0398cef893f307ff01c1e639',1,'Tgstation.Server.Api.Models.ServerInformation.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ac7e7961155c2d7c0e08be2d7320e45da',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aaef823795dc654725e448b487fefd9ac',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a338f454c7f08e0eb077a60888b268b14',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a2411d8e1e8a08732ccd83a76b14e0a43',1,'Tgstation.Server.Host.Components.Interop.DMApiConstants.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac1d47d91bd3883e453b23c120d1f0ec9',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a600df9ffd79d4f94f59dfefccbcec099',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Version()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a3bebba1e2658a94424e66713bf1085c4',1,'Tgstation.Server.Client.IServerClient.Version()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a8c853236fdd5679440d5ba7a1289012e',1,'Tgstation.Server.Client.ServerClient.Version()']]], + ['versioncommand_2063',['VersionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#aac843c7ae2125089ba16ccf1e35a0a0d',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.VersionCommand()']]], + ['versioncommand_2ecs_2064',['VersionCommand.cs',['../_version_command_8cs.html',1,'']]], + ['versionconverter_2065',['VersionConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], + ['versionconverter_2ecs_2066',['VersionConverter.cs',['../_version_converter_8cs.html',1,'']]], + ['versionextensions_2067',['VersionExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html',1,'Tgstation::Server::Api']]], + ['versionextensions_2ecs_2068',['VersionExtensions.cs',['../_version_extensions_8cs.html',1,'']]], + ['versionfilename_2069',['VersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#acb1d6dfeac5bf1c13e9857dcac03be46',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['versionkey_2070',['VersionKey',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#af852a60634ee83b315fcdaf9aa28b02a',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['versionmismatchexception_2071',['VersionMismatchException',['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html',1,'Tgstation.Server.Client.VersionMismatchException'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a966b6b4550325adc9ba29fd32c4e7309',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a98f49568d813eb370d5729acf521f661',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException()'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a28b7f81f775966bb71c0dcaf27734684',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#afac834c26a3f8b12f53c8a4e6deaae2c',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message, Exception innerException)']]], + ['versionmismatchexception_2ecs_2072',['VersionMismatchException.cs',['../_version_mismatch_exception_8cs.html',1,'']]], + ['versionprefix_2073',['VersionPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#aa4cd077258b22b53d6beaa0d78d70cb4',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.VersionPrefix()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#ab2a2be82555afbf6ffb5b7ae3d90b7f0',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.VersionPrefix()']]], + ['versionstring_2074',['VersionString',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac9a43553319585f54b7a6b69d862250c',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.VersionString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#abd6db0f6e1ea9273baeacaa66ae81fa3',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.VersionString()']]] ]; diff --git a/search/all_17.html b/search/all_17.html index 9685a5867a..068cf87cc6 100644 --- a/search/all_17.html +++ b/search/all_17.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_17.js b/search/all_17.js index 68c3aa559f..162bf61fcb 100644 --- a/search/all_17.js +++ b/search/all_17.js @@ -1,66 +1,66 @@ var searchData= [ - ['wait_2021',['Wait',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ae9c16c160e9e0f1e1201dc86a29eace0',1,'Tgstation::Server::Host::Jobs::JobHandler']]], - ['waitforjobcompletion_2022',['WaitForJobCompletion',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a04ad7543ef9c8863c1d8d0b46d17f522',1,'Tgstation.Server.Host.Jobs.IJobManager.WaitForJobCompletion()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a91cb1783409dd1e5cd4ec7670851f05f',1,'Tgstation.Server.Host.Jobs.JobManager.WaitForJobCompletion()']]], - ['watchdog_2023',['Watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html',1,'Tgstation.Server.Host.Watchdog.Watchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a90292e2c1149c3d0e92a79d98968be44',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#aec51431b45d46994bbe24550640833d0',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a75363c8266024cf66cb86d1c44545bdc',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#aeabbea7c18623b8fb74c64a3b90aa453',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#af92b5fafe9cd48f3e8ad61f4354588c6',1,'Tgstation.Server.Host.Components.Events.EventConsumer.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a92f39be2b47f571fe439f78ccadd2acc',1,'Tgstation.Server.Host.Service.ServerService.watchdog()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a71590b8427369b3eb57af54643068448',1,'Tgstation.Server.Host.Components.IInstanceCore.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a902e9a3917553cae8ec372948e98d6ec',1,'Tgstation.Server.Host.Components.Instance.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a8999db8a92b82b771cb43096c8909313',1,'Tgstation.Server.Host.Components.InstanceWrapper.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#ada6c36ef01a0cdaf67ea13a350c3f073',1,'Tgstation.Server.Host.Watchdog.Watchdog.Watchdog()']]], - ['watchdog_2ecs_2024',['Watchdog.cs',['../_watchdog_8cs.html',1,'']]], - ['watchdogbase_2025',['WatchdogBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a4fa6000293a0b943a2316c28ed3433d0',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.WatchdogBase()']]], - ['watchdogbase_2ecs_2026',['WatchdogBase.cs',['../_watchdog_base_8cs.html',1,'']]], - ['watchdogcompilejobcorrupted_2027',['WatchdogCompileJobCorrupted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5bf519a63341001be4c5c6c4e940f160',1,'Tgstation::Server::Api::Models']]], - ['watchdogdetach_2028',['WatchdogDetach',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3eac9672e6db27cac6717a7a58577359',1,'Tgstation::Server::Host::Components::Events']]], - ['watchdogfactory_2029',['WatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#afdf6af7bc2e3fc7eb272eb50dd95994e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.WatchdogFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ab5bda9a81248be0498e668f2b148aa82',1,'Tgstation.Server.Host.Components.InstanceFactory.watchdogFactory()']]], - ['watchdogfactory_2ecs_2030',['WatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)']]], - ['watchdoglaunch_2031',['WatchdogLaunch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3f97b5999580c2c1ef719b35dfa3e2d0',1,'Tgstation::Server::Host::Components::Events']]], - ['watchdognotrunning_2032',['WatchdogNotRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2bb8251ac32e1bb097969c13a5a8b1a1',1,'Tgstation::Server::Api::Models']]], - ['watchdogpresent_2033',['WatchdogPresent',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a1c9a042a42da1e39316d2f1b45b28765',1,'Tgstation.Server.Host.Core.IServerControl.WatchdogPresent()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a00ad28e8a1946d6dfd1ceda6d02be5b4',1,'Tgstation.Server.Host.Server.WatchdogPresent()']]], - ['watchdogrunning_2034',['WatchdogRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7308ad22f9debf125c2daff8c9dcb4bc',1,'Tgstation::Server::Api::Models']]], - ['watchdogshutdown_2035',['WatchdogShutdown',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a41008b498ed03646e26e2b4fa7f8ffd8',1,'Tgstation::Server::Host::Components::Events']]], - ['watchdogstartupfailed_2036',['WatchdogStartupFailed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aded687bc590419f813a657d0ab331fb8',1,'Tgstation::Server::Api::Models']]], - ['watchdogstartuptimeout_2037',['WatchdogStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae81957bf66d058288d7977abc4d02fdf',1,'Tgstation::Server::Api::Models']]], - ['watchdogstatus_2038',['WatchdogStatus',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683',1,'Tgstation::Server::Api::Models']]], - ['watchdogstatus_2ecs_2039',['WatchdogStatus.cs',['../_watchdog_status_8cs.html',1,'']]], - ['watchdogtask_2040',['watchdogTask',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a89678cb55592e83aa074a24dc86dcd6f',1,'Tgstation::Server::Host::Service::ServerService']]], - ['webhostbuilderextensions_2041',['WebHostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['webhostbuilderextensions_2ecs_2042',['WebHostBuilderExtensions.cs',['../_web_host_builder_extensions_8cs.html',1,'']]], - ['windowsbyondinstaller_2043',['WindowsByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a90d405cbc30a94e4f42bb82f1ae70db9',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.WindowsByondInstaller()']]], - ['windowsbyondinstaller_2ecs_2044',['WindowsByondInstaller.cs',['../_windows_byond_installer_8cs.html',1,'']]], - ['windowshost_2045',['WindowsHost',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#abf3f89fee1f079cadd4208f337444fec',1,'Tgstation::Server::Api::Models::Administration']]], - ['windowsnetworkpromptreaper_2046',['WindowsNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a48c16d7265c9d7b8c578f20c52601f94',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.WindowsNetworkPromptReaper()']]], - ['windowsnetworkpromptreaper_2ecs_2047',['WindowsNetworkPromptReaper.cs',['../_windows_network_prompt_reaper_8cs.html',1,'']]], - ['windowspostwritehandler_2048',['WindowsPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], - ['windowspostwritehandler_2ecs_2049',['WindowsPostWriteHandler.cs',['../_windows_post_write_handler_8cs.html',1,'']]], - ['windowsprocessfeatures_2050',['WindowsProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html',1,'Tgstation::Server::Host::System']]], - ['windowsprocessfeatures_2ecs_2051',['WindowsProcessFeatures.cs',['../_windows_process_features_8cs.html',1,'']]], - ['windowssymlinkfactory_2052',['WindowsSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], - ['windowssymlinkfactory_2ecs_2053',['WindowsSymlinkFactory.cs',['../_windows_symlink_factory_8cs.html',1,'']]], - ['windowssystemidentity_2054',['WindowsSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a6b20afd81a3b07e0ef1f89fc134652ad',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(WindowsIdentity identity)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a8a3ea6f579bf33bbba407c615140998d',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(UserPrincipal userPrincipal)']]], - ['windowssystemidentity_2ecs_2055',['WindowsSystemIdentity.cs',['../_windows_system_identity_8cs.html',1,'']]], - ['windowssystemidentityfactory_2056',['WindowsSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a46f081a94982769acd01d0fdee271b40',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.WindowsSystemIdentityFactory()']]], - ['windowssystemidentityfactory_2ecs_2057',['WindowsSystemIdentityFactory.cs',['../_windows_system_identity_factory_8cs.html',1,'']]], - ['windowswatchdog_2058',['WindowsWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a0b58f817109441d766bfbd318c2c668a',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.WindowsWatchdog()']]], - ['windowswatchdog_2ecs_2059',['WindowsWatchdog.cs',['../_windows_watchdog_8cs.html',1,'']]], - ['windowswatchdogfactory_2060',['WindowsWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a4d5807c151983860963c9562ec0cd8ef',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.WindowsWatchdogFactory()']]], - ['windowswatchdogfactory_2ecs_2061',['WindowsWatchdogFactory.cs',['../_windows_watchdog_factory_8cs.html',1,'']]], - ['withcomponentinstance_2062',['WithComponentInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#ab20aad6535d46cb0f297e9a1b88d6e74',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], - ['withdatasegs_2063',['WithDataSegs',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ad1155d80d6dc2fad0d88bc8bfdf265c7',1,'Tgstation::Server::Host::NativeMethods']]], - ['withfullmemory_2064',['WithFullMemory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2aef25796cf466066a44dbd73f68138487',1,'Tgstation::Server::Host::NativeMethods']]], - ['withhandledata_2065',['WithHandleData',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2af65aa027df70f27c9d484003fd19ac59',1,'Tgstation::Server::Host::NativeMethods']]], - ['withthreadinfo_2066',['WithThreadInfo',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2a0a62606af36ce6e8e7321ab9454d96ef',1,'Tgstation::Server::Host::NativeMethods']]], - ['withtoken_2067',['WithToken',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#af361129d3382024befd82cd448fa6ed3',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], - ['withtoken_3c_20t_20_3e_2068',['WithToken< T >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a3950e2e535f0222c5fe4ca029dd130cc',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], - ['withunloadedmodules_2069',['WithUnloadedModules',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ae956b1148884deaafd8a10db8ec02a93',1,'Tgstation::Server::Host::NativeMethods']]], - ['wraplifetimetask_2070',['WrapLifetimeTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac29e58ebc2a30e17a50d9a445be22acc',1,'Tgstation::Server::Host::System::Process']]], - ['write_2071',['Write',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a7623081b4c09cf5f7679989cf73c7003',1,'Tgstation.Server.Client.Components.ConfigurationClient.Write()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ae72948a1a0f52e1a84b0e430c1984e4b',1,'Tgstation.Server.Client.Components.IConfigurationClient.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac6f986527806a782c0bea1ab51d7f0ad',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Write()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aa5244c05dd19f32a6f3603b5ca4fd638',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#aa5c825a8266ddf651f978ed539323b49',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Write()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca1129c0e4d43f2d121652a7302712cff6',1,'Tgstation.Server.Api.Rights.Write()']]], - ['writeallbytes_2072',['WriteAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adfa411bbedf8ffc430cb9fcf0a6e6fe4',1,'Tgstation.Server.Host.IO.DefaultIOManager.WriteAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af3e7a63cedbe826cfd27f1a2a411103e',1,'Tgstation.Server.Host.IO.IIOManager.WriteAllBytes()']]], - ['writeasync_2073',['WriteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aa038503e15f044245a1a0d30b0de1b6d',1,'Tgstation.Server.Host.IO.Console.WriteAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#af9dd7697e9f6a0f4a62567e28cd6c470',1,'Tgstation.Server.Host.IO.IConsole.WriteAsync()']]], - ['writechannellimit_2074',['WriteChannelLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7362ebd340de083949f47079eb6beca4',1,'Tgstation::Server::Api::Rights']]], - ['writechannels_2075',['WriteChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a536002a3cc297a67dcee8ec692a569ec',1,'Tgstation::Server::Api::Rights']]], - ['writeconnectionstring_2076',['WriteConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a58680118e47c510bac627f8b20e175a9',1,'Tgstation::Server::Api::Rights']]], - ['writeenabled_2077',['WriteEnabled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a574b3ec8f9de787caa6f2fc04c8f9658',1,'Tgstation::Server::Api::Rights']]], - ['writefilechecked_2078',['WriteFileChecked',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a66e6e18e2e313165e390361b77465f65',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.WriteFileChecked()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a74a681b01f42d65b5bc6e10ad73541c1',1,'Tgstation.Server.Host.IO.SynchronousIOManager.WriteFileChecked()']]], - ['writejson_2079',['WriteJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a75c1da27117d5e6854103375ca7c24b7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.WriteJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a64bc434b6536e65eb3bb0adcc8de1748',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.WriteJson()']]], - ['writename_2080',['WriteName',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72ad70280daaa48077a6f4b46bad136e51a',1,'Tgstation::Server::Api::Rights']]], - ['writeprovider_2081',['WriteProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a46417a8d9d6f4823667e403b90796186',1,'Tgstation::Server::Api::Rights']]], - ['writereconnectioninterval_2082',['WriteReconnectionInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a5db432c7c2e28bfe63195a8f1998f470',1,'Tgstation::Server::Api::Rights']]], - ['writeusers_2083',['WriteUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()']]] + ['wait_2075',['Wait',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ae9c16c160e9e0f1e1201dc86a29eace0',1,'Tgstation::Server::Host::Jobs::JobHandler']]], + ['waitforjobcompletion_2076',['WaitForJobCompletion',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a04ad7543ef9c8863c1d8d0b46d17f522',1,'Tgstation.Server.Host.Jobs.IJobManager.WaitForJobCompletion()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a91cb1783409dd1e5cd4ec7670851f05f',1,'Tgstation.Server.Host.Jobs.JobManager.WaitForJobCompletion()']]], + ['watchdog_2077',['Watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html',1,'Tgstation.Server.Host.Watchdog.Watchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a90292e2c1149c3d0e92a79d98968be44',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#aec51431b45d46994bbe24550640833d0',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a75363c8266024cf66cb86d1c44545bdc',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#aeabbea7c18623b8fb74c64a3b90aa453',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#af92b5fafe9cd48f3e8ad61f4354588c6',1,'Tgstation.Server.Host.Components.Events.EventConsumer.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a92f39be2b47f571fe439f78ccadd2acc',1,'Tgstation.Server.Host.Service.ServerService.watchdog()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a71590b8427369b3eb57af54643068448',1,'Tgstation.Server.Host.Components.IInstanceCore.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a902e9a3917553cae8ec372948e98d6ec',1,'Tgstation.Server.Host.Components.Instance.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a8999db8a92b82b771cb43096c8909313',1,'Tgstation.Server.Host.Components.InstanceWrapper.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#ada6c36ef01a0cdaf67ea13a350c3f073',1,'Tgstation.Server.Host.Watchdog.Watchdog.Watchdog()']]], + ['watchdog_2ecs_2078',['Watchdog.cs',['../_watchdog_8cs.html',1,'']]], + ['watchdogbase_2079',['WatchdogBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a10098368e02b5ce00e1bd40a69d49d4e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.WatchdogBase()']]], + ['watchdogbase_2ecs_2080',['WatchdogBase.cs',['../_watchdog_base_8cs.html',1,'']]], + ['watchdogcompilejobcorrupted_2081',['WatchdogCompileJobCorrupted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5bf519a63341001be4c5c6c4e940f160',1,'Tgstation::Server::Api::Models']]], + ['watchdogdetach_2082',['WatchdogDetach',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3eac9672e6db27cac6717a7a58577359',1,'Tgstation::Server::Host::Components::Events']]], + ['watchdogfactory_2083',['WatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ab5bda9a81248be0498e668f2b148aa82',1,'Tgstation.Server.Host.Components.InstanceFactory.watchdogFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#afdf6af7bc2e3fc7eb272eb50dd95994e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.WatchdogFactory()']]], + ['watchdogfactory_2ecs_2084',['WatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)']]], + ['watchdoglaunch_2085',['WatchdogLaunch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3f97b5999580c2c1ef719b35dfa3e2d0',1,'Tgstation::Server::Host::Components::Events']]], + ['watchdognotrunning_2086',['WatchdogNotRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2bb8251ac32e1bb097969c13a5a8b1a1',1,'Tgstation::Server::Api::Models']]], + ['watchdogpresent_2087',['WatchdogPresent',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a1c9a042a42da1e39316d2f1b45b28765',1,'Tgstation.Server.Host.Core.IServerControl.WatchdogPresent()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a00ad28e8a1946d6dfd1ceda6d02be5b4',1,'Tgstation.Server.Host.Server.WatchdogPresent()']]], + ['watchdogrunning_2088',['WatchdogRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7308ad22f9debf125c2daff8c9dcb4bc',1,'Tgstation::Server::Api::Models']]], + ['watchdogshutdown_2089',['WatchdogShutdown',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a41008b498ed03646e26e2b4fa7f8ffd8',1,'Tgstation::Server::Host::Components::Events']]], + ['watchdogstartupfailed_2090',['WatchdogStartupFailed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aded687bc590419f813a657d0ab331fb8',1,'Tgstation::Server::Api::Models']]], + ['watchdogstartuptimeout_2091',['WatchdogStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae81957bf66d058288d7977abc4d02fdf',1,'Tgstation::Server::Api::Models']]], + ['watchdogstatus_2092',['WatchdogStatus',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683',1,'Tgstation::Server::Api::Models']]], + ['watchdogstatus_2ecs_2093',['WatchdogStatus.cs',['../_watchdog_status_8cs.html',1,'']]], + ['watchdogtask_2094',['watchdogTask',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a89678cb55592e83aa074a24dc86dcd6f',1,'Tgstation::Server::Host::Service::ServerService']]], + ['webhostbuilderextensions_2095',['WebHostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['webhostbuilderextensions_2ecs_2096',['WebHostBuilderExtensions.cs',['../_web_host_builder_extensions_8cs.html',1,'']]], + ['windowsbyondinstaller_2097',['WindowsByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a90d405cbc30a94e4f42bb82f1ae70db9',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.WindowsByondInstaller()']]], + ['windowsbyondinstaller_2ecs_2098',['WindowsByondInstaller.cs',['../_windows_byond_installer_8cs.html',1,'']]], + ['windowshost_2099',['WindowsHost',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#abf3f89fee1f079cadd4208f337444fec',1,'Tgstation::Server::Api::Models::Administration']]], + ['windowsnetworkpromptreaper_2100',['WindowsNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a48c16d7265c9d7b8c578f20c52601f94',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.WindowsNetworkPromptReaper()']]], + ['windowsnetworkpromptreaper_2ecs_2101',['WindowsNetworkPromptReaper.cs',['../_windows_network_prompt_reaper_8cs.html',1,'']]], + ['windowspostwritehandler_2102',['WindowsPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], + ['windowspostwritehandler_2ecs_2103',['WindowsPostWriteHandler.cs',['../_windows_post_write_handler_8cs.html',1,'']]], + ['windowsprocessfeatures_2104',['WindowsProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html',1,'Tgstation::Server::Host::System']]], + ['windowsprocessfeatures_2ecs_2105',['WindowsProcessFeatures.cs',['../_windows_process_features_8cs.html',1,'']]], + ['windowssymlinkfactory_2106',['WindowsSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], + ['windowssymlinkfactory_2ecs_2107',['WindowsSymlinkFactory.cs',['../_windows_symlink_factory_8cs.html',1,'']]], + ['windowssystemidentity_2108',['WindowsSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a6b20afd81a3b07e0ef1f89fc134652ad',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(WindowsIdentity identity)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a8a3ea6f579bf33bbba407c615140998d',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(UserPrincipal userPrincipal)']]], + ['windowssystemidentity_2ecs_2109',['WindowsSystemIdentity.cs',['../_windows_system_identity_8cs.html',1,'']]], + ['windowssystemidentityfactory_2110',['WindowsSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a46f081a94982769acd01d0fdee271b40',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.WindowsSystemIdentityFactory()']]], + ['windowssystemidentityfactory_2ecs_2111',['WindowsSystemIdentityFactory.cs',['../_windows_system_identity_factory_8cs.html',1,'']]], + ['windowswatchdog_2112',['WindowsWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a47fdb570ec0eb35d3628c583d6df868f',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.WindowsWatchdog()']]], + ['windowswatchdog_2ecs_2113',['WindowsWatchdog.cs',['../_windows_watchdog_8cs.html',1,'']]], + ['windowswatchdogfactory_2114',['WindowsWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a4d5807c151983860963c9562ec0cd8ef',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.WindowsWatchdogFactory()']]], + ['windowswatchdogfactory_2ecs_2115',['WindowsWatchdogFactory.cs',['../_windows_watchdog_factory_8cs.html',1,'']]], + ['withcomponentinstance_2116',['WithComponentInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#ab20aad6535d46cb0f297e9a1b88d6e74',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], + ['withdatasegs_2117',['WithDataSegs',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ad1155d80d6dc2fad0d88bc8bfdf265c7',1,'Tgstation::Server::Host::NativeMethods']]], + ['withfullmemory_2118',['WithFullMemory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2aef25796cf466066a44dbd73f68138487',1,'Tgstation::Server::Host::NativeMethods']]], + ['withhandledata_2119',['WithHandleData',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2af65aa027df70f27c9d484003fd19ac59',1,'Tgstation::Server::Host::NativeMethods']]], + ['withthreadinfo_2120',['WithThreadInfo',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2a0a62606af36ce6e8e7321ab9454d96ef',1,'Tgstation::Server::Host::NativeMethods']]], + ['withtoken_2121',['WithToken',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#af361129d3382024befd82cd448fa6ed3',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], + ['withtoken_3c_20t_20_3e_2122',['WithToken< T >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a3950e2e535f0222c5fe4ca029dd130cc',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], + ['withunloadedmodules_2123',['WithUnloadedModules',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ae956b1148884deaafd8a10db8ec02a93',1,'Tgstation::Server::Host::NativeMethods']]], + ['wraplifetimetask_2124',['WrapLifetimeTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac29e58ebc2a30e17a50d9a445be22acc',1,'Tgstation::Server::Host::System::Process']]], + ['write_2125',['Write',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a7623081b4c09cf5f7679989cf73c7003',1,'Tgstation.Server.Client.Components.ConfigurationClient.Write()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ae72948a1a0f52e1a84b0e430c1984e4b',1,'Tgstation.Server.Client.Components.IConfigurationClient.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac6f986527806a782c0bea1ab51d7f0ad',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Write()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aa5244c05dd19f32a6f3603b5ca4fd638',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#aa5c825a8266ddf651f978ed539323b49',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Write()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca1129c0e4d43f2d121652a7302712cff6',1,'Tgstation.Server.Api.Rights.Write()']]], + ['writeallbytes_2126',['WriteAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adfa411bbedf8ffc430cb9fcf0a6e6fe4',1,'Tgstation.Server.Host.IO.DefaultIOManager.WriteAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af3e7a63cedbe826cfd27f1a2a411103e',1,'Tgstation.Server.Host.IO.IIOManager.WriteAllBytes()']]], + ['writeasync_2127',['WriteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aa038503e15f044245a1a0d30b0de1b6d',1,'Tgstation.Server.Host.IO.Console.WriteAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#af9dd7697e9f6a0f4a62567e28cd6c470',1,'Tgstation.Server.Host.IO.IConsole.WriteAsync()']]], + ['writechannellimit_2128',['WriteChannelLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7362ebd340de083949f47079eb6beca4',1,'Tgstation::Server::Api::Rights']]], + ['writechannels_2129',['WriteChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a536002a3cc297a67dcee8ec692a569ec',1,'Tgstation::Server::Api::Rights']]], + ['writeconnectionstring_2130',['WriteConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a58680118e47c510bac627f8b20e175a9',1,'Tgstation::Server::Api::Rights']]], + ['writeenabled_2131',['WriteEnabled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a574b3ec8f9de787caa6f2fc04c8f9658',1,'Tgstation::Server::Api::Rights']]], + ['writefilechecked_2132',['WriteFileChecked',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a66e6e18e2e313165e390361b77465f65',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.WriteFileChecked()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a74a681b01f42d65b5bc6e10ad73541c1',1,'Tgstation.Server.Host.IO.SynchronousIOManager.WriteFileChecked()']]], + ['writejson_2133',['WriteJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a75c1da27117d5e6854103375ca7c24b7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.WriteJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a64bc434b6536e65eb3bb0adcc8de1748',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.WriteJson()']]], + ['writename_2134',['WriteName',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72ad70280daaa48077a6f4b46bad136e51a',1,'Tgstation::Server::Api::Rights']]], + ['writeprovider_2135',['WriteProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a46417a8d9d6f4823667e403b90796186',1,'Tgstation::Server::Api::Rights']]], + ['writereconnectioninterval_2136',['WriteReconnectionInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a5db432c7c2e28bfe63195a8f1998f470',1,'Tgstation::Server::Api::Rights']]], + ['writeusers_2137',['WriteUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()']]] ]; diff --git a/search/all_18.html b/search/all_18.html index e5781b31fd..08751b5f6a 100644 --- a/search/all_18.html +++ b/search/all_18.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_18.js b/search/all_18.js index 5dc6994987..c1c2ecf3a6 100644 --- a/search/all_18.js +++ b/search/all_18.js @@ -1,4 +1,4 @@ var searchData= [ - ['ziptodirectory_2084',['ZipToDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8905a0a82326cf61f67ba1ec1eccb0e2',1,'Tgstation.Server.Host.IO.DefaultIOManager.ZipToDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a839873a83e4a687821fbc3d28619f851',1,'Tgstation.Server.Host.IO.IIOManager.ZipToDirectory()']]] + ['ziptodirectory_2138',['ZipToDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8905a0a82326cf61f67ba1ec1eccb0e2',1,'Tgstation.Server.Host.IO.DefaultIOManager.ZipToDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a839873a83e4a687821fbc3d28619f851',1,'Tgstation.Server.Host.IO.IIOManager.ZipToDirectory()']]] ]; diff --git a/search/all_19.html b/search/all_19.html index 8964697c74..958836a712 100644 --- a/search/all_19.html +++ b/search/all_19.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_19.js b/search/all_19.js index 39767b40da..0755ff6e84 100644 --- a/search/all_19.js +++ b/search/all_19.js @@ -1,4 +1,4 @@ var searchData= [ - ['_7esemaphoreslimcontext_2085',['~SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a38494639c16b57de63e6af91f2841a12',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]] + ['_7esemaphoreslimcontext_2139',['~SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a38494639c16b57de63e6af91f2841a12',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]] ]; diff --git a/search/all_2.html b/search/all_2.html index ffa7873b76..605a745704 100644 --- a/search/all_2.html +++ b/search/all_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_2.js b/search/all_2.js index 0fd5ae2d53..00d99ae269 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -1,69 +1,72 @@ var searchData= [ - ['badheaders_199',['BadHeaders',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6433e3bb5e548a24d25deabfdefe72b2',1,'Tgstation::Server::Api::Models']]], - ['badvalidationrequest_200',['BadValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a18d2471b9e1234b2d15002cbafa2adc2',1,'Tgstation::Server::Host::Components::Session']]], - ['baseprovider_201',['baseProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a3a0e0277b9c8670ec4dff26f4ef4749d',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['basicauthenticationscheme_202',['BasicAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6bbe0fc133b7dde5ef8a6f1c8f0feb18',1,'Tgstation::Server::Api::ApiHeaders']]], - ['basicwatchdog_203',['BasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ad611dcd9094effff25e1e41431b671de',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.BasicWatchdog()']]], - ['basicwatchdog_2ecs_204',['BasicWatchdog.cs',['../_basic_watchdog_8cs.html',1,'']]], - ['bearer_205',['Bearer',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#ad59ea2958458544411779b6984a38c9d',1,'Tgstation::Server::Api::Models::Token']]], - ['bindtest_206',['BindTest',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html#a2b6458e7e063e0ea2368fefd2df1c0e1',1,'Tgstation::Server::Host::Extensions::SocketExtensions']]], - ['binpath_207',['BinPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#aa929f025399e35d5455574c2db72cd76',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['bodyatmerge_208',['BodyAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a33c8f25ffa5c322c80a7ae386326b455',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], - ['boolconverter_209',['BoolConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], - ['boolconverter_2ecs_210',['BoolConverter.cs',['../_bool_converter_8cs.html',1,'']]], - ['botmention_211',['BotMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#af40c0ea392de9986a4705d403674f61c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.BotMention()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a781f872cb8143fe3ff92f3cc8d0d5abb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.BotMention()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a2724c59c69f5edcb6ccd6549a6ce71d6',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.BotMention()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a3a3ca6a84bbd0adac5990f8d07601f49',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.BotMention()']]], - ['bottoken_212',['BotToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#aacc9fd03094f08522afc8a0d786547ee',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.BotToken()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a22ab7557b8fe4c2b57fce647269ca560',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.BotToken()']]], - ['break_213',['Break',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812ae4c38d6d45baf080943d323dd51a2ce8',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['bridgecommandtype_214',['BridgeCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91d',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['bridgecommandtype_2ecs_215',['BridgeCommandType.cs',['../_bridge_command_type_8cs.html',1,'']]], - ['bridgecontroller_216',['BridgeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html',1,'Tgstation.Server.Host.Controllers.BridgeController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0a1273e6fe2a3c56413909df260b51b7',1,'Tgstation.Server.Host.Controllers.BridgeController.BridgeController()']]], - ['bridgecontroller_2ecs_217',['BridgeController.cs',['../_bridge_controller_8cs.html',1,'']]], - ['bridgedispatcher_218',['bridgeDispatcher',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#aa84c6939b6616c3cd2febf5e9deb9d03',1,'Tgstation::Server::Host::Controllers::BridgeController']]], - ['bridgehandlers_219',['bridgeHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa63fb27d9675a19d4682b34a6d48130d',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['bridgeparameters_220',['BridgeParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['bridgeparameters_2ecs_221',['BridgeParameters.cs',['../_bridge_parameters_8cs.html',1,'']]], - ['bridgeregistrar_222',['bridgeRegistrar',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a58566db67d5309791189384f51ccc914',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['bridgeregistration_223',['BridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#adf187aefcc19ad1c2d92d265ce79f661',1,'Tgstation.Server.Host.Components.Session.SessionController.bridgeRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a473a69f7f87a96e00daa65b03116b238',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.BridgeRegistration()']]], - ['bridgeregistration_2ecs_224',['BridgeRegistration.cs',['../_bridge_registration_8cs.html',1,'']]], - ['bridgeresponse_225',['BridgeResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['bridgeresponse_2ecs_226',['BridgeResponse.cs',['../_bridge_response_8cs.html',1,'']]], - ['browserresolver_227',['browserResolver',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a291e832dea111e7c46387fa96d212cb3',1,'Tgstation::Server::Host::Controllers::HomeController']]], - ['buildmodel_228',['BuildModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html#ab1af0dabbd13507f341ce41597c203f3',1,'Tgstation.Server.Host.Database.Migrations.MySqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html#a9a55e88dc3ec4a0d948c634c093a314f',1,'Tgstation.Server.Host.Database.Migrations.PostgresSqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html#ab2e6dcb99f3746d7345ac6851701e3a2',1,'Tgstation.Server.Host.Database.Migrations.SqliteDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html#a723164104a9f25dd93ee5190a78aff1c',1,'Tgstation.Server.Host.Database.Migrations.SqlServerDatabaseContextModelSnapshot.BuildModel()']]], - ['buildtargetmodel_229',['BuildTargetModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7bded25dcebba0767a564222ab04ee05',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a777db8e71d3968d11746ac1212509661',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a5a30b78e4742894a5043edbd416ae5c7',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a36fd9c984b7e30d05e6dd3db022f4b4f',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ab4b402a8a6515780be12561bf2eb0903',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a0460c6beedadda1044a12056555778aa',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ae93775ef37c0f7b6e42382a2921f5168',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#adab7a99a17c00cf7fd3c552db42fd98b',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a392a370a88d84f51f77683a4e1ac6541',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a110d320f4574deb84bd438c85881fcb7',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ac05b1f1b82e93dc15bed566bbc976b6a',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ac688032d578556f231894a0d1037b0ff',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a4d3a513fe33896a78d434afe70003ff9',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#ad20249f02a9d28eec93299e126b6fb15',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#ad4813165e4ff98a40b195485f31ade97',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a4cc9a2c803e1df587ad94af23fae1980',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a782a903df07e21a584d37310aaf534f9',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a3d13ad8d0031635725cefc299b5f7497',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7e3cd4c5e9e7e85dacb4acfebf06f4ba',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a73a439e9e30e34c9409caf2db00f5f49',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#adb8abf6a68f01f29d0d19e687be7bc6b',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#a451e508e82bf383da26da0e329ad211d',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#aac7ea57d83d853b3282a083d67f04cd5',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#ae7d0af3a8c268d6222d617cd79dd3121',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#ac3cf415db21e6ed98f32a0f3dfeca299',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a51ef9342cea7662a16848567539b5126',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a3bf5f4f3731d773a73d1ccb4def7e681',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a2406a50f47e5a964bcc74a7053d16fbb',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a18b6634968ddbd323a7159bdfb730a52',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#ae7eebc7b84bc7e1f161c5d8621a3dd9e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aa845ab345c3a19a90b346b5d5bde9d8a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a73266a58d7c7a9ed8adf963a930a512c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a7eb21d0ba901a5407ece872184846eb9',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a56bafe1317a077bbb6d28eed35e5fed6',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a01c5981f2d86f427cc4b2a2fc746a102',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a6b349456228618f6eced647631907299',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#ad05f21edbb1cbca42bb3897218573a7e',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a5e9d01db51d41bb582fb3b6a1784827e',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a84038dce1140d52bb8fab07a75e8f8c2',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a384f0cec4e567e0b2e02cb49556773f0',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a7a94efc1a10771a4dc70b6a620263d5b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a9cbeea1c3b1e2dad5117a54ab46e2cae',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4567044d2f672170549b048d7aeeec28',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#acf969f355d4e8c92beea7c9c4d571d6a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aab0ccfde487b4e418c4a744007b3991f',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a887c62b5f1ae7aa222a5b89a42c3bd5e',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a120cb2765f39d1e50b16ecbbf20f9d5b',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a1e7e9ae3480daa8fce98bb454b389478',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#aabda231cfc4393820bf6744cdbe4df7e',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.BuildTargetModel()']]], - ['builtincommands_230',['builtinCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3868b098a806dcfe331ce581059f1c7',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['byond_231',['Byond',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html',1,'Tgstation.Server.Api.Models.Byond'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a9846874e39579d320e53020346944a60',1,'Tgstation.Server.Api.Routes.Byond()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a9232f67ce6e82fce57740789d0202357',1,'Tgstation.Server.Client.Components.IInstanceClient.Byond()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a473bf90090e8d3c2b5d4e6689b5ea31f',1,'Tgstation.Server.Client.Components.InstanceClient.Byond()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a3dde46060da75e3a757784489da4c810',1,'Tgstation.Server.Client.Components.ByondClient.Byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aabc95ce5c908039204f8509226447212',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#aec66114f00a86784f61e41f95e56368f',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.byond()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a2f4b44b678b37bcd3239cd83e64d0eb0',1,'Tgstation.Server.Api.Rights.Byond()']]], - ['byond_2ecs_232',['Byond.cs',['../_byond_8cs.html',1,'']]], - ['byondactiveversionchange_233',['ByondActiveVersionChange',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a16551fe43323cca07bfc777afadbe5a1',1,'Tgstation::Server::Host::Components::Events']]], - ['byondclient_234',['ByondClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html',1,'Tgstation.Server.Client.Components.ByondClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a330467d91ed28edace4990dce15c6991',1,'Tgstation.Server.Client.Components.ByondClient.ByondClient()']]], - ['byondclient_2ecs_235',['ByondClient.cs',['../_byond_client_8cs.html',1,'']]], - ['byondcommand_236',['ByondCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a04c8863ccdb6d8f93c56eec22e3015d5',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.ByondCommand()']]], - ['byondcommand_2ecs_237',['ByondCommand.cs',['../_byond_command_8cs.html',1,'']]], - ['byondconfigdir_238',['ByondConfigDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac5e0a1909c082fbcd47ff591764a2345',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byondcontroller_239',['ByondController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html',1,'Tgstation.Server.Host.Controllers.ByondController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a60fa22db0b488a68e33b3064cacce100',1,'Tgstation.Server.Host.Controllers.ByondController.ByondController()']]], - ['byondcontroller_2ecs_240',['ByondController.cs',['../_byond_controller_8cs.html',1,'']]], - ['byondddconfig_241',['ByondDDConfig',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a85675de1695978da5fe1d958ffb7dcf3',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byonddirectxinstallfail_242',['ByondDirectXInstallFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9b2ecbcea908e6143901a21e7a1119cc',1,'Tgstation::Server::Api::Models']]], - ['byonddownloadfail_243',['ByondDownloadFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a80f5b2695c2686d905a8945a15d1e160',1,'Tgstation::Server::Api::Models']]], - ['byonddxdir_244',['ByondDXDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a2214ac1499336591cc7a382a7b9a986f',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byondexecutablelock_245',['ByondExecutableLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a44eb282f6424c86b45fd978568f85842',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.ByondExecutableLock()']]], - ['byondexecutablelock_2ecs_246',['ByondExecutableLock.cs',['../_byond_executable_lock_8cs.html',1,'']]], - ['byondinstaller_247',['byondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3d9ba4fe85290b449bb305f06cf5b57c',1,'Tgstation.Server.Host.Components.Byond.ByondManager.byondInstaller()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9b4acf6f948993eac90206dae7dc1c8d',1,'Tgstation.Server.Host.Components.InstanceFactory.byondInstaller()']]], - ['byondinstallerbase_248',['ByondInstallerBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aafe5655d1dbaa689a3b58f12a6258b13',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.ByondInstallerBase()']]], - ['byondinstallerbase_2ecs_249',['ByondInstallerBase.cs',['../_byond_installer_base_8cs.html',1,'']]], - ['byondinstallfail_250',['ByondInstallFail',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aa63abc793fbdf14cf7caf28a4812e682',1,'Tgstation::Server::Host::Components::Events']]], - ['byondinstallstart_251',['ByondInstallStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a93c1e81c6ae4a9cc3637be6b044211e9',1,'Tgstation::Server::Host::Components::Events']]], - ['byondlock_252',['byondLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a910e577062b12d5311aec27e7fb1db88',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['byondmanager_253',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html',1,'Tgstation.Server.Host.Components.Byond.ByondManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a65e3da64c0d52b3811a21952e5bcae28',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.byondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a519a7b7c42cfba5ff53cce4438a31f71',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.byondManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a3832bd0f18684496b66f0cd34d43d824',1,'Tgstation.Server.Host.Components.IInstanceCore.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#adcf63127cc4d66507994449215611ba4',1,'Tgstation.Server.Host.Components.Instance.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a4725803015279c366ae823c39c1bb0c5',1,'Tgstation.Server.Host.Components.InstanceWrapper.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a53f179dd7a1f02a716da371710eec7a3',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ByondManager()']]], - ['byondmanager_2ecs_254',['ByondManager.cs',['../_byond_manager_8cs.html',1,'']]], - ['byondnonexistentcustomversion_255',['ByondNonExistentCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefac06c6376519b5887300325a6fe5ec',1,'Tgstation::Server::Api::Models']]], - ['byondnoprompttrustedmode_256',['ByondNoPromptTrustedMode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a5b257317ebd8d23c34d86835b3f48b09',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byondnoversionsinstalled_257',['ByondNoVersionsInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae2984e03276657bdd906f1845d8035fa',1,'Tgstation::Server::Api::Models']]], - ['byondrevisionsurltemplate_258',['ByondRevisionsURLTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#ae6df80713a787a051cb8bab9cf937846',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.ByondRevisionsURLTemplate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab1f1c9a1e5c18ea71a475a851593e090',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.ByondRevisionsURLTemplate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a6c5ee4eb4905e031ea35497e1ef4dcc2',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.ByondRevisionsURLTemplate()']]], - ['byondrights_259',['ByondRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#af3250017587c5794a9b2501e97d8896d',1,'Tgstation.Server.Api.Models.InstanceUser.ByondRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9',1,'Tgstation.Server.Api.Rights.ByondRights()']]], - ['byondrights_2ecs_260',['ByondRights.cs',['../_byond_rights_8cs.html',1,'']]], - ['byondtopicresponse_261',['ByondTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#ab200cd25c11993c625666ed171c36f4e',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], - ['byondtopicsender_262',['byondTopicSender',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9aa75319f31efb998077ea7a2323aff6',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['byondtopictimeout_263',['ByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a51431792c5538add1bdad55e499a4971',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['byondversion_264',['ByondVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a5bc228d8d109d5098f1a490b3a4ba20e',1,'Tgstation.Server.Api.Models.CompileJob.ByondVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a009667890d52e30a93a5cd8f15b89904',1,'Tgstation.Server.Host.Models.CompileJob.ByondVersion()']]] + ['badheaders_210',['BadHeaders',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6433e3bb5e548a24d25deabfdefe72b2',1,'Tgstation::Server::Api::Models']]], + ['badvalidationrequest_211',['BadValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a18d2471b9e1234b2d15002cbafa2adc2',1,'Tgstation::Server::Host::Components::Session']]], + ['baseprovider_212',['baseProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a3a0e0277b9c8670ec4dff26f4ef4749d',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['basicauthenticationscheme_213',['BasicAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6bbe0fc133b7dde5ef8a6f1c8f0feb18',1,'Tgstation::Server::Api::ApiHeaders']]], + ['basicwatchdog_214',['BasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#adaf6b02a397b30570ca77bee3574ae81',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.BasicWatchdog()']]], + ['basicwatchdog_2ecs_215',['BasicWatchdog.cs',['../_basic_watchdog_8cs.html',1,'']]], + ['bearer_216',['Bearer',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#ad59ea2958458544411779b6984a38c9d',1,'Tgstation::Server::Api::Models::Token']]], + ['beforeapplydmb_217',['BeforeApplyDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1582efdefef65cd7587e76a7bae09a4e',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['bindtest_218',['BindTest',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html#a2b6458e7e063e0ea2368fefd2df1c0e1',1,'Tgstation::Server::Host::Extensions::SocketExtensions']]], + ['binpath_219',['BinPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#aa929f025399e35d5455574c2db72cd76',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['blockingtaskcreationoptions_220',['BlockingTaskCreationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac6dfeef4e622bb46047169215099995d',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['bodyatmerge_221',['BodyAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a33c8f25ffa5c322c80a7ae386326b455',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], + ['boolconverter_222',['BoolConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], + ['boolconverter_2ecs_223',['BoolConverter.cs',['../_bool_converter_8cs.html',1,'']]], + ['botmention_224',['BotMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#af40c0ea392de9986a4705d403674f61c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.BotMention()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a781f872cb8143fe3ff92f3cc8d0d5abb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.BotMention()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a2724c59c69f5edcb6ccd6549a6ce71d6',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.BotMention()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a3a3ca6a84bbd0adac5990f8d07601f49',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.BotMention()']]], + ['bottoken_225',['botToken',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a45475c58bb323678370c010872a126c9',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.botToken()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#aacc9fd03094f08522afc8a0d786547ee',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.BotToken()']]], + ['break_226',['Break',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812ae4c38d6d45baf080943d323dd51a2ce8',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['bridgecommandtype_227',['BridgeCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91d',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['bridgecommandtype_2ecs_228',['BridgeCommandType.cs',['../_bridge_command_type_8cs.html',1,'']]], + ['bridgecontroller_229',['BridgeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html',1,'Tgstation.Server.Host.Controllers.BridgeController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0a1273e6fe2a3c56413909df260b51b7',1,'Tgstation.Server.Host.Controllers.BridgeController.BridgeController()']]], + ['bridgecontroller_2ecs_230',['BridgeController.cs',['../_bridge_controller_8cs.html',1,'']]], + ['bridgedispatcher_231',['bridgeDispatcher',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#aa84c6939b6616c3cd2febf5e9deb9d03',1,'Tgstation::Server::Host::Controllers::BridgeController']]], + ['bridgehandlers_232',['bridgeHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa63fb27d9675a19d4682b34a6d48130d',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['bridgeparameters_233',['BridgeParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['bridgeparameters_2ecs_234',['BridgeParameters.cs',['../_bridge_parameters_8cs.html',1,'']]], + ['bridgeregistrar_235',['bridgeRegistrar',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a58566db67d5309791189384f51ccc914',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['bridgeregistration_236',['BridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#adf187aefcc19ad1c2d92d265ce79f661',1,'Tgstation.Server.Host.Components.Session.SessionController.bridgeRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a473a69f7f87a96e00daa65b03116b238',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.BridgeRegistration()']]], + ['bridgeregistration_2ecs_237',['BridgeRegistration.cs',['../_bridge_registration_8cs.html',1,'']]], + ['bridgeresponse_238',['BridgeResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['bridgeresponse_2ecs_239',['BridgeResponse.cs',['../_bridge_response_8cs.html',1,'']]], + ['browserresolver_240',['browserResolver',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a291e832dea111e7c46387fa96d212cb3',1,'Tgstation::Server::Host::Controllers::HomeController']]], + ['buildmodel_241',['BuildModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html#ab1af0dabbd13507f341ce41597c203f3',1,'Tgstation.Server.Host.Database.Migrations.MySqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html#a9a55e88dc3ec4a0d948c634c093a314f',1,'Tgstation.Server.Host.Database.Migrations.PostgresSqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html#ab2e6dcb99f3746d7345ac6851701e3a2',1,'Tgstation.Server.Host.Database.Migrations.SqliteDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html#a723164104a9f25dd93ee5190a78aff1c',1,'Tgstation.Server.Host.Database.Migrations.SqlServerDatabaseContextModelSnapshot.BuildModel()']]], + ['buildtargetmodel_242',['BuildTargetModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7bded25dcebba0767a564222ab04ee05',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a777db8e71d3968d11746ac1212509661',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a5a30b78e4742894a5043edbd416ae5c7',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a36fd9c984b7e30d05e6dd3db022f4b4f',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ab4b402a8a6515780be12561bf2eb0903',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a0460c6beedadda1044a12056555778aa',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ae93775ef37c0f7b6e42382a2921f5168',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#adab7a99a17c00cf7fd3c552db42fd98b',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a392a370a88d84f51f77683a4e1ac6541',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a110d320f4574deb84bd438c85881fcb7',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ac05b1f1b82e93dc15bed566bbc976b6a',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ac688032d578556f231894a0d1037b0ff',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a4d3a513fe33896a78d434afe70003ff9',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#ad20249f02a9d28eec93299e126b6fb15',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#ad4813165e4ff98a40b195485f31ade97',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a4cc9a2c803e1df587ad94af23fae1980',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a782a903df07e21a584d37310aaf534f9',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a3d13ad8d0031635725cefc299b5f7497',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7e3cd4c5e9e7e85dacb4acfebf06f4ba',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a73a439e9e30e34c9409caf2db00f5f49',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#adb8abf6a68f01f29d0d19e687be7bc6b',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#a451e508e82bf383da26da0e329ad211d',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#aac7ea57d83d853b3282a083d67f04cd5',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#ae7d0af3a8c268d6222d617cd79dd3121',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#ac3cf415db21e6ed98f32a0f3dfeca299',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a51ef9342cea7662a16848567539b5126',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a3bf5f4f3731d773a73d1ccb4def7e681',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a2406a50f47e5a964bcc74a7053d16fbb',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a18b6634968ddbd323a7159bdfb730a52',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#ae7eebc7b84bc7e1f161c5d8621a3dd9e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aa845ab345c3a19a90b346b5d5bde9d8a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a73266a58d7c7a9ed8adf963a930a512c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a7eb21d0ba901a5407ece872184846eb9',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a56bafe1317a077bbb6d28eed35e5fed6',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a01c5981f2d86f427cc4b2a2fc746a102',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a6b349456228618f6eced647631907299',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#ad05f21edbb1cbca42bb3897218573a7e',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a5e9d01db51d41bb582fb3b6a1784827e',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a84038dce1140d52bb8fab07a75e8f8c2',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a384f0cec4e567e0b2e02cb49556773f0',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a7a94efc1a10771a4dc70b6a620263d5b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a9cbeea1c3b1e2dad5117a54ab46e2cae',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4567044d2f672170549b048d7aeeec28',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#acf969f355d4e8c92beea7c9c4d571d6a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aab0ccfde487b4e418c4a744007b3991f',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a887c62b5f1ae7aa222a5b89a42c3bd5e',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a120cb2765f39d1e50b16ecbbf20f9d5b',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a1e7e9ae3480daa8fce98bb454b389478',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#aabda231cfc4393820bf6744cdbe4df7e',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html#a9c885ae4ace9d16276e4f8cf6069c3bc',1,'Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html#ad1f3eca5d5ffe26b022dd26e9cd7fcc4',1,'Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html#af99d7cfa83033c566f67f0ab290b4e8e',1,'Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html#aa4efd8e030a3e92a20b31da97bdf4261',1,'Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.BuildTargetModel()']]], + ['builtincommands_243',['builtinCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3868b098a806dcfe331ce581059f1c7',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['byond_244',['Byond',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html',1,'Tgstation.Server.Api.Models.Byond'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a9846874e39579d320e53020346944a60',1,'Tgstation.Server.Api.Routes.Byond()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a9232f67ce6e82fce57740789d0202357',1,'Tgstation.Server.Client.Components.IInstanceClient.Byond()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a473bf90090e8d3c2b5d4e6689b5ea31f',1,'Tgstation.Server.Client.Components.InstanceClient.Byond()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a3dde46060da75e3a757784489da4c810',1,'Tgstation.Server.Client.Components.ByondClient.Byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aabc95ce5c908039204f8509226447212',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#aec66114f00a86784f61e41f95e56368f',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.byond()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a2f4b44b678b37bcd3239cd83e64d0eb0',1,'Tgstation.Server.Api.Rights.Byond()']]], + ['byond_2ecs_245',['Byond.cs',['../_byond_8cs.html',1,'']]], + ['byondactiveversionchange_246',['ByondActiveVersionChange',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a16551fe43323cca07bfc777afadbe5a1',1,'Tgstation::Server::Host::Components::Events']]], + ['byondclient_247',['ByondClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html',1,'Tgstation.Server.Client.Components.ByondClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a330467d91ed28edace4990dce15c6991',1,'Tgstation.Server.Client.Components.ByondClient.ByondClient()']]], + ['byondclient_2ecs_248',['ByondClient.cs',['../_byond_client_8cs.html',1,'']]], + ['byondcommand_249',['ByondCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a04c8863ccdb6d8f93c56eec22e3015d5',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.ByondCommand()']]], + ['byondcommand_2ecs_250',['ByondCommand.cs',['../_byond_command_8cs.html',1,'']]], + ['byondconfigdir_251',['ByondConfigDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac5e0a1909c082fbcd47ff591764a2345',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byondcontroller_252',['ByondController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html',1,'Tgstation.Server.Host.Controllers.ByondController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a60fa22db0b488a68e33b3064cacce100',1,'Tgstation.Server.Host.Controllers.ByondController.ByondController()']]], + ['byondcontroller_2ecs_253',['ByondController.cs',['../_byond_controller_8cs.html',1,'']]], + ['byondddconfig_254',['ByondDDConfig',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a85675de1695978da5fe1d958ffb7dcf3',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byonddirectxinstallfail_255',['ByondDirectXInstallFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9b2ecbcea908e6143901a21e7a1119cc',1,'Tgstation::Server::Api::Models']]], + ['byonddownloadfail_256',['ByondDownloadFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a80f5b2695c2686d905a8945a15d1e160',1,'Tgstation::Server::Api::Models']]], + ['byonddreamdaemonfirewallfail_257',['ByondDreamDaemonFirewallFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a52544d5ffb4da020f83e998f17c8a74d',1,'Tgstation::Server::Api::Models']]], + ['byonddxdir_258',['ByondDXDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a2214ac1499336591cc7a382a7b9a986f',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byondexecutablelock_259',['ByondExecutableLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a44eb282f6424c86b45fd978568f85842',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.ByondExecutableLock()']]], + ['byondexecutablelock_2ecs_260',['ByondExecutableLock.cs',['../_byond_executable_lock_8cs.html',1,'']]], + ['byondinstaller_261',['byondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3d9ba4fe85290b449bb305f06cf5b57c',1,'Tgstation.Server.Host.Components.Byond.ByondManager.byondInstaller()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9b4acf6f948993eac90206dae7dc1c8d',1,'Tgstation.Server.Host.Components.InstanceFactory.byondInstaller()']]], + ['byondinstallerbase_262',['ByondInstallerBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aafe5655d1dbaa689a3b58f12a6258b13',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.ByondInstallerBase()']]], + ['byondinstallerbase_2ecs_263',['ByondInstallerBase.cs',['../_byond_installer_base_8cs.html',1,'']]], + ['byondinstallfail_264',['ByondInstallFail',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aa63abc793fbdf14cf7caf28a4812e682',1,'Tgstation::Server::Host::Components::Events']]], + ['byondinstallstart_265',['ByondInstallStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a93c1e81c6ae4a9cc3637be6b044211e9',1,'Tgstation::Server::Host::Components::Events']]], + ['byondlock_266',['byondLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a910e577062b12d5311aec27e7fb1db88',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['byondmanager_267',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html',1,'Tgstation.Server.Host.Components.Byond.ByondManager'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a3832bd0f18684496b66f0cd34d43d824',1,'Tgstation.Server.Host.Components.IInstanceCore.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#adcf63127cc4d66507994449215611ba4',1,'Tgstation.Server.Host.Components.Instance.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a4725803015279c366ae823c39c1bb0c5',1,'Tgstation.Server.Host.Components.InstanceWrapper.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a53f179dd7a1f02a716da371710eec7a3',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a65e3da64c0d52b3811a21952e5bcae28',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.byondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a519a7b7c42cfba5ff53cce4438a31f71',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.byondManager()']]], + ['byondmanager_2ecs_268',['ByondManager.cs',['../_byond_manager_8cs.html',1,'']]], + ['byondnonexistentcustomversion_269',['ByondNonExistentCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefac06c6376519b5887300325a6fe5ec',1,'Tgstation::Server::Api::Models']]], + ['byondnoprompttrustedmode_270',['ByondNoPromptTrustedMode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a5b257317ebd8d23c34d86835b3f48b09',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byondnoversionsinstalled_271',['ByondNoVersionsInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae2984e03276657bdd906f1845d8035fa',1,'Tgstation::Server::Api::Models']]], + ['byondrevisionsurltemplate_272',['ByondRevisionsURLTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#ae6df80713a787a051cb8bab9cf937846',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.ByondRevisionsURLTemplate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab1f1c9a1e5c18ea71a475a851593e090',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.ByondRevisionsURLTemplate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a6c5ee4eb4905e031ea35497e1ef4dcc2',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.ByondRevisionsURLTemplate()']]], + ['byondrights_273',['ByondRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#af3250017587c5794a9b2501e97d8896d',1,'Tgstation.Server.Api.Models.InstanceUser.ByondRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9',1,'Tgstation.Server.Api.Rights.ByondRights()']]], + ['byondrights_2ecs_274',['ByondRights.cs',['../_byond_rights_8cs.html',1,'']]], + ['byondtopicresponse_275',['ByondTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#ab200cd25c11993c625666ed171c36f4e',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], + ['byondtopicsender_276',['byondTopicSender',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9aa75319f31efb998077ea7a2323aff6',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['byondtopictimeout_277',['ByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a51431792c5538add1bdad55e499a4971',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['byondversion_278',['ByondVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a5bc228d8d109d5098f1a490b3a4ba20e',1,'Tgstation.Server.Api.Models.CompileJob.ByondVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a009667890d52e30a93a5cd8f15b89904',1,'Tgstation.Server.Host.Models.CompileJob.ByondVersion()']]] ]; diff --git a/search/all_3.html b/search/all_3.html index f9df19b412..5197baa608 100644 --- a/search/all_3.html +++ b/search/all_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_3.js b/search/all_3.js index 4b4c665dad..72b7eba97d 100644 --- a/search/all_3.js +++ b/search/all_3.js @@ -1,261 +1,264 @@ var searchData= [ - ['cachedidentities_265',['cachedIdentities',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#ab9206118af46526c3bb89c95c5197bd8',1,'Tgstation::Server::Host::Security::IdentityCache']]], - ['cachedirectoryname_266',['CacheDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a4f8d03c61dfdd7c1a60c6b495288806f',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], - ['cachesystemidentity_267',['CacheSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#acbbad46e8e5ac5cae600edce613f9cf5',1,'Tgstation.Server.Host.Security.IdentityCache.CacheSystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#a40f3695ec18d3df1bea7b230b75dabbb',1,'Tgstation.Server.Host.Security.IIdentityCache.CacheSystemIdentity()']]], - ['calculateexpecteddeploymenttime_268',['CalculateExpectedDeploymentTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2365f1b05cb4cea83027efaea9580f83',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['canapplywithoutreboot_269',['CanApplyWithoutReboot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#ad1c56d38c1a48c110765c99a72619e13',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['cancel_270',['Cancel',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a060a731a0c221146d5d81d7890e1cd42',1,'Tgstation.Server.Client.Components.IJobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a50456aace539b2c54afc8f8218278c49',1,'Tgstation.Server.Client.Components.JobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a674342b0dc8050c0ab42a299aa4a7762',1,'Tgstation.Server.Host.Jobs.JobHandler.Cancel()']]], - ['cancelclone_271',['CancelClone',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a8863765f0ecf9b3004e8051a28251d6a',1,'Tgstation::Server::Api::Rights']]], - ['cancelcompile_272',['CancelCompile',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5daadc2d374d8bb5ae840bbb0145868fc1f',1,'Tgstation::Server::Api::Rights']]], - ['cancelinstall_273',['CancelInstall',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a9557127a4ed0a1726e4b32579364083b',1,'Tgstation::Server::Api::Rights']]], - ['canceljob_274',['CancelJob',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a02ff92fbece1f77bc9d34216d1ffa7ce',1,'Tgstation.Server.Host.Jobs.IJobManager.CancelJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#afab851d16b36dadeb5d7afdc40e7a740',1,'Tgstation.Server.Host.Jobs.JobManager.CancelJob()']]], - ['cancelkeycts_275',['cancelKeyCts',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a10d46881a4846e87d58bac73d392d665',1,'Tgstation::Server::Host::IO::Console']]], - ['cancelkeypress_276',['CancelKeyPress',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab866e78375ea43803c7d8a64b181e21c',1,'Tgstation.Server.Host.IO.Console.CancelKeyPress()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a850a82073bea75fd1c0011f92aa91191',1,'Tgstation.Server.Host.IO.IConsole.CancelKeyPress()']]], - ['cancellationtokensource_277',['cancellationTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ac30004f8ba4f9497c9f81cf26c4c2d24',1,'Tgstation.Server.Host.Jobs.JobHandler.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#ac8422fda839cd16fd8b467bb4947f8a1',1,'Tgstation.Server.Host.Security.IdentityCacheObject.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a80bf6f84e712996ae1d8894ec96e9ba3',1,'Tgstation.Server.Host.Server.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a2b51b208174b00545d40d6cf58d82a6e',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a23cc7eb8e4b7ca1d16f8a3bbb220c8b8',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a4f65e767919ae007c07ef7b3b715b498',1,'Tgstation.Server.Host.Service.ServerService.cancellationTokenSource()']]], - ['cancelled_278',['Cancelled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab68caae8a7e5bd3bfd7764cab7b8773d',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['cancelledby_279',['CancelledBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a8bba62b605a9b135cc02a76edab12d8a',1,'Tgstation.Server.Api.Models.Job.CancelledBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#a11070d5a55b77aa91f23403d17c4d224',1,'Tgstation.Server.Host.Models.Job.CancelledBy()']]], - ['cancelpendingchanges_280',['CancelPendingChanges',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a84be61baa3a948e65891036fdaba4ab7',1,'Tgstation::Server::Api::Rights']]], - ['cancelright_281',['CancelRight',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#af210e7bef88bdc5ca203c8f0931c520a',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['cancelrightstype_282',['CancelRightsType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a796c6a9e900858ec0084648e9b375609',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['canconvert_283',['CanConvert',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a06799ee353b6539298ae9157a94447d7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.CanConvert()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a4179b3dce37ebd3e673c0d3326c08624',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.CanConvert()']]], - ['cancreatesymlinks_284',['canCreateSymlinks',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#afe60cf0ed06def30a229734840a69a33',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.canCreateSymlinks()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a372abf6465e892a3fee94c1aa32aaf3f',1,'Tgstation.Server.Host.Security.ISystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a9b80b72e3694f14852de2d3fdb252472',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#ae0e95b11dc35386e5a276bd9b24b3312',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.CanCreateSymlinks()']]], - ['cannotchangeserversuite_285',['CannotChangeServerSuite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ad27cb08b02e194991882f231d87b9030',1,'Tgstation::Server::Api::Models']]], - ['canonicalizename_286',['CanonicalizeName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a4b139051d0d6db501e37590fa1eabf16',1,'Tgstation::Server::Host::Models::User']]], - ['canonicalname_287',['CanonicalName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6882aa0e73af174efc9a7d843888a242',1,'Tgstation::Server::Host::Models::User']]], - ['cfgdirectoryname_288',['CfgDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#adbe97e65b8edae12e2f41947ed94dfc1',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['changeautoupdatesettings_289',['ChangeAutoUpdateSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a548b817c7c02c2f62dd3794933b0920c',1,'Tgstation::Server::Api::Rights']]], - ['changechannels_290',['ChangeChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a29ba2842fd3cf2c5532acc07966eb1a9',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#ab9ba3beba537518b1f68ca31ae9dea25',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeChannels()']]], - ['changecommitter_291',['ChangeCommitter',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39abae6cf87a3261b8f904b3943525f3043',1,'Tgstation::Server::Api::Rights']]], - ['changecredentials_292',['ChangeCredentials',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39adbc2b36c5f0ed08b2f62378225d078d6',1,'Tgstation::Server::Api::Rights']]], - ['changeport_293',['ChangePort',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a49bb93f8d7ab9097f73beb67a897a210',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['changerebootstate_294',['ChangeRebootState',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a852ce2e98903f54e64f9a11df8b2668f',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['changesettings_295',['ChangeSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0821ad5d467ff2ea9216eadd33273104',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a2ae0c2190435e3c65914eaec63dd2db6',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afab0aa088dc77e54e978c730645d8d00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ChangeSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a390fcde5ed6ed30d6e5b5b2ebc8273dc',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ChangeSettings()']]], - ['changetestmergecommits_296',['ChangeTestMergeCommits',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a5ad384c7de5c2f6d816c4d652462625b',1,'Tgstation::Server::Api::Rights']]], - ['changeversion_297',['ChangeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a431f006cfe5e1d2ab2efb346d6556705',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ChangeVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#af3559b76b9c7faff35cd8eadaac75c0b',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ChangeVersion()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a55c267b42a4e2d36d46ff358ff822968',1,'Tgstation.Server.Api.Rights.ChangeVersion()']]], - ['channel_298',['Channel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a38d8a714d5e64f7ec0864400c47af3d9',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.Channel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae40aff12bbf1b190b66a8f8f274dbdba',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Channel()']]], - ['channelidcounter_299',['channelIdCounter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a9f8c4d78e74aa61eb4aaa13cc1a88bbf',1,'Tgstation.Server.Host.Components.Chat.ChatManager.channelIdCounter()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a3170ebdb4e8568868efd3b1c1764bf38',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.channelIdCounter()']]], - ['channelidmap_300',['channelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a403b3ff6bccc4b1e3f7e9e8729f84908',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['channelids_301',['ChannelIds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ae0f13f64bd97247dd98165a6a4b7e4af',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], - ['channellimit_302',['ChannelLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8dbeaca6b993adef66fa1e1a01530f4b',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['channelmapping_303',['ChannelMapping',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['channelmapping_2ecs_304',['ChannelMapping.cs',['../_channel_mapping_8cs.html',1,'']]], - ['channelrepresentation_305',['ChannelRepresentation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['channelrepresentation_2ecs_306',['ChannelRepresentation.cs',['../_channel_representation_8cs.html',1,'']]], - ['channels_307',['Channels',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a7ca486417cb39a2dd44af4c3b9ca9caf',1,'Tgstation.Server.Api.Models.ChatBot.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#af0d278930e8e0b2779444e406bbfdbb6',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Channels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a7f7c9a94446c1b5e1afc9156705b6777',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#a280793bb9606d15ac3291b491db28fa2',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a3f9609cc720dfdb4c40ae553c658982a',1,'Tgstation.Server.Host.Models.ChatBot.Channels()']]], - ['channelsink_308',['channelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a5b89c6d03b5b49c2444ae5e815a537a2',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], - ['chat_309',['Chat',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6cf0d5e4d1f8ed76d2cf84a56392ed2d',1,'Tgstation.Server.Api.Routes.Chat()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a002488e85cb75fc56937cabff464be4c',1,'Tgstation.Server.Host.Components.IInstanceCore.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a33d0e17d96ba16ead347ff8fb1bf6b45',1,'Tgstation.Server.Host.Components.Instance.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a74598ceeefd01162e1eb45193fd6c760',1,'Tgstation.Server.Host.Components.InstanceWrapper.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec24ff5e3b22b40e62f4a2443eb8cec9',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a77bc03b5ce1a16453e6a4311c1aca57f',1,'Tgstation.Server.Host.Components.Session.SessionController.chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8aec2da2210588cce0c937b97ff94d46',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat()']]], - ['chatbot_310',['ChatBot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.Internal.ChatBot'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Host.Models.ChatBot'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.ChatBot'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#af4c3c897c6aadc96dfbb08ff893dc602',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.ChatBot()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)']]], - ['chatbot_2ecs_311',['ChatBot.cs',['../_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)']]], - ['chatbotlimit_312',['ChatBotLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#ae07e119a1bd8ddbcf2641a8f7b734c2b',1,'Tgstation::Server::Api::Models::Instance']]], - ['chatbotmax_313',['ChatBotMax',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3363706f321199130f484868fd4dab2d',1,'Tgstation::Server::Api::Models']]], - ['chatbotmaxchannels_314',['ChatBotMaxChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefde5659eb82d8943cf3a4e4638c5aaf',1,'Tgstation::Server::Api::Models']]], - ['chatbotprovidermissing_315',['ChatBotProviderMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7fa65206da7db03314c84ab71978b824',1,'Tgstation::Server::Api::Models']]], - ['chatbotrights_316',['ChatBotRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a940fa0780621d08d50f1e961bb79a87b',1,'Tgstation.Server.Api.Models.InstanceUser.ChatBotRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72',1,'Tgstation.Server.Api.Rights.ChatBotRights()']]], - ['chatbotrights_2ecs_317',['ChatBotRights.cs',['../_chat_bot_rights_8cs.html',1,'']]], - ['chatbots_318',['ChatBots',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#aca06567ce5a36c7e6b2ac09d5e6d9a38',1,'Tgstation.Server.Client.Components.IInstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a8b8ccd6c8cb8f046bc1c94e4220df1c8',1,'Tgstation.Server.Client.Components.InstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad4cf2228c8dae3c2641251070fee76af',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatBots()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a9c47b161bd7cdb3b7bf2e6cf8ad7cbba',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatBots()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab21b0ca8cd1ea61dd71a2b3fd8879e6e',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatBots()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a11eee75253579a31252ca13f9a271873',1,'Tgstation.Server.Api.Rights.ChatBots()']]], - ['chatbotsclient_319',['ChatBotsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html',1,'Tgstation.Server.Client.Components.ChatBotsClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a322c40d10b0b8b65802c71a899a555d9',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBotsClient()']]], - ['chatbotsclient_2ecs_320',['ChatBotsClient.cs',['../_chat_bots_client_8cs.html',1,'']]], - ['chatbotscollection_321',['chatBotsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac6ec4fcf56661fc47e9d2abe9322924b',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['chatbotwhitespaceconnectionstring_322',['ChatBotWhitespaceConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7ef7f2f115b34ad156dd0ca621b7dd66',1,'Tgstation::Server::Api::Models']]], - ['chatbotwhitespacename_323',['ChatBotWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97ecb2f61aca1686c3720f9d3134a75f',1,'Tgstation::Server::Api::Models']]], - ['chatbotwrongchanneltype_324',['ChatBotWrongChannelType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abd8569dcf6e1e7cce0c99dbbb9f25785',1,'Tgstation::Server::Api::Models']]], - ['chatcannotconnectprovider_325',['ChatCannotConnectProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf876d87e92badc0f5d3e4d42395257e',1,'Tgstation::Server::Api::Models']]], - ['chatchannel_326',['ChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Host.Models.ChatChannel'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Api.Models.ChatChannel']]], - ['chatchannel_2ecs_327',['ChatChannel.cs',['../_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)']]], - ['chatchannelextensions_328',['ChatChannelExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['chatchannelextensions_2ecs_329',['ChatChannelExtensions.cs',['../_chat_channel_extensions_8cs.html',1,'']]], - ['chatchannels_330',['ChatChannels',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a78702d5654098ab15997e27830ee3700',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a251c974bd768cebdc7a1e6941e735c3a',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a1b4b0a39df2b5009142fbced4a3b431d',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatChannels()']]], - ['chatchannelscollection_331',['chatChannelsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa0c86a05a421da7e93e6a628d8332376',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['chatchannelsupdate_332',['ChatChannelsUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8aeaf3081408237420ee1bfae603db3569',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['chatcommand_333',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae601a706f441dab0b1b606652e6bf479',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.ChatCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a1737c025e35743a0f2be00fba48521c4',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.ChatCommand()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a08bf4bffdf0d4d5d711861504cb540a4',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand()']]], - ['chatcommand_2ecs_334',['ChatCommand.cs',['../_chat_command_8cs.html',1,'']]], - ['chatconnectionstringbuilder_335',['ChatConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['chatconnectionstringbuilder_2ecs_336',['ChatConnectionStringBuilder.cs',['../_chat_connection_string_builder_8cs.html',1,'']]], - ['chatcontroller_337',['ChatController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html',1,'Tgstation.Server.Host.Controllers.ChatController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#aeb8a6d7b46b068d26e685b7b22e78cb4',1,'Tgstation.Server.Host.Controllers.ChatController.ChatController()']]], - ['chatcontroller_2ecs_338',['ChatController.cs',['../_chat_controller_8cs.html',1,'']]], - ['chatfactory_339',['chatFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a86c6ee3938a05c7ce3adf413911345ce',1,'Tgstation::Server::Host::Components::InstanceFactory']]], - ['chathandler_340',['chatHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ada23a21c30710b64e7c9ee85e82e32d4',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['chatmanager_341',['ChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html',1,'Tgstation.Server.Host.Components.Chat.ChatManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae0a718f1cae22fe94e31e1c6103ddbed',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChatManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad8f8e86f9e52a3f5e027b9570c5f32df',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.chatManager()']]], - ['chatmanager_2ecs_342',['ChatManager.cs',['../_chat_manager_8cs.html',1,'']]], - ['chatmanagerfactory_343',['ChatManagerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a664778f38f54960c97b79cb3bcd97651',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.ChatManagerFactory()']]], - ['chatmanagerfactory_2ecs_344',['ChatManagerFactory.cs',['../_chat_manager_factory_8cs.html',1,'']]], - ['chatmessage_345',['ChatMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html',1,'Tgstation.Server.Host.Components.Interop.ChatMessage'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a5c439c5d7dcadaa0c3dddaca1b07046e',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.ChatMessage()']]], - ['chatmessage_2ecs_346',['ChatMessage.cs',['../_chat_message_8cs.html',1,'']]], - ['chatprovider_347',['ChatProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cc',1,'Tgstation::Server::Api::Models']]], - ['chatprovider_2ecs_348',['ChatProvider.cs',['../_chat_provider_8cs.html',1,'']]], - ['chatresponses_349',['ChatResponses',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a18c82501c779543e0aea47992f683bd3',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], - ['chatsend_350',['ChatSend',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da81b6f76d520249aef397ecdc007c821c',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['chatsettings_351',['ChatSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a082ce7e1f98a393dc31eed005abc5002',1,'Tgstation.Server.Host.Models.ChatChannel.ChatSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#aeca6d03d53690be83a3efc3634b702fe',1,'Tgstation.Server.Host.Models.Instance.ChatSettings()']]], - ['chatsettingsid_352',['ChatSettingsId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#aa81eda97809d3993ebf0d34f77fc0c1b',1,'Tgstation::Server::Host::Models::ChatChannel']]], - ['chattrackingcontext_353',['ChatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a849ce62757e342b5ec34bccbd4a98f75',1,'Tgstation.Server.Host.Components.Session.SessionController.chatTrackingContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a930d4047b0c065fa25b3a149bb541648',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.ChatTrackingContext()']]], - ['chattrackingcontext_2ecs_354',['ChatTrackingContext.cs',['../_chat_tracking_context_8cs.html',1,'']]], - ['chatupdate_355',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ab3602746a6cf5978f869fbbd3ec35021',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.ChatUpdate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#aad6730fe7ca3dfdf9b037bdc07a97c91',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate.ChatUpdate()']]], - ['chatupdate_2ecs_356',['ChatUpdate.cs',['../_chat_update_8cs.html',1,'']]], - ['chatuser_357',['ChatUser',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['chatuser_2ecs_358',['ChatUser.cs',['../_chat_user_8cs.html',1,'']]], - ['checkavailable_359',['CheckAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a6556df91ef25960c814f583b71996a9f',1,'Tgstation::Server::Host::IO::Console']]], - ['checkcompatibility_360',['CheckCompatibility',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3c5df000903796a032fe6a4cafdc8a73',1,'Tgstation.Server.Api.ApiHeaders.CheckCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0dff52d3ac52e100397122e63e1337ee',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.CheckCompatibility()']]], - ['checkdisposed_361',['CheckDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab0660ae6440a38aa85f8473a8220533a',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['checkexceptionpropagation_362',['CheckExceptionPropagation',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab5cd879190ac2d9764b9849eb31985f8',1,'Tgstation::Server::Host::Server']]], - ['checkgetjob_363',['CheckGetJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ae129c81a2e2ad2ecf8838e03a5a7db07',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['checklaunchresult_364',['CheckLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a96ad9302ae812f4ba3bbbaed2f7adbd0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['checkout_365',['Checkout',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a193582291ff43c0841b5c75f77f50fcb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Checkout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a6bd416c14953fd88906f93050249e705',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Checkout()']]], - ['checkoutobject_366',['CheckoutObject',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab069c1ee11c48955e51956ff31a0d0fc',1,'Tgstation.Server.Host.Components.Repository.IRepository.CheckoutObject()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a26b2fb935f0fd74a479231085029ce86',1,'Tgstation.Server.Host.Components.Repository.Repository.CheckoutObject()']]], - ['checkoutprogresshandler_367',['CheckoutProgressHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae8ee5ac2942a57e05ec5c7e238e75977',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['checkoutsha_368',['CheckoutSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#af2aad262f13b94c7aa30deee98862384',1,'Tgstation::Server::Api::Models::Repository']]], - ['checkpagerisnotrunning_369',['CheckPagerIsNotRunning',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3937a00c1b51549531faec1248595cf0',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['checkreleasesandapplyupdate_370',['CheckReleasesAndApplyUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a136149ffd1e19c77776bf08ad6f019d8',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['checkrunwizard_371',['CheckRunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a3b92be081e2beac876e749532a6d1d87',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['checksanity_372',['CheckSanity',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a5307337e3bb84c45327e8a856b7f425f',1,'Tgstation::Server::Host::Server']]], - ['checksystemcompatibility_373',['CheckSystemCompatibility',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ade02e9746380fbab6b087a74bd701dbe',1,'Tgstation.Server.Host.Components.InstanceFactory.CheckSystemCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a3e875f6dd7bf0458e6d54e0dcf7bfe44',1,'Tgstation.Server.Host.Components.InstanceManager.CheckSystemCompatibility()']]], - ['checkuserpassword_374',['CheckUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a020220485dde96985ea6bfe224a85d89',1,'Tgstation.Server.Host.Security.CryptographySuite.CheckUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac23fd656dc42cf07e64a62844f8bcfbc',1,'Tgstation.Server.Host.Security.ICryptographySuite.CheckUserPassword()']]], - ['checkvalidname_375',['CheckValidName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7d6d50ff837b991a62dd2664cc0577ad',1,'Tgstation::Server::Host::Controllers::UserController']]], - ['claimsinjector_376',['ClaimsInjector',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html',1,'Tgstation.Server.Host.Security.ClaimsInjector'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a9308e0623ef273d2009436d144cbe5bb',1,'Tgstation.Server.Host.Security.ClaimsInjector.ClaimsInjector()']]], - ['claimsinjector_2ecs_377',['ClaimsInjector.cs',['../_claims_injector_8cs.html',1,'']]], - ['clamp_3c_20tright_20_3e_378',['Clamp< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a3ff2a4a6158c2a8f6264fabd88d8cdff',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['cleancache_379',['CleanCache',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a26fd27ae8ad551f07cb655309bed6830',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.CleanCache()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad014a7849a1246dc316a9ac3d8a43d16',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.CleanCache()']]], - ['cleanjob_380',['CleanJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#abc5644c8a944e0cebe2599d910f6df18',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['cleanunusedcompilejobs_381',['CleanUnusedCompileJobs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a4bc1df0d137c1e026997a89262530182',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a1c5532c254d0eadf738379a4c0c33c62',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.CleanUnusedCompileJobs()']]], - ['cleanupcts_382',['cleanupCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#adc133e7ea90f5d87f12c0621959ded92',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['cleanupfailedcompile_383',['CleanupFailedCompile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae0e53f455a17d18db864b9b7896372c9',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['cleanuptask_384',['cleanupTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#afcf8224ef94997af93339db4d69f34a3',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['client_385',['client',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a059457d72470d29c3530d489adb91d1c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.client()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a01ba0df08b2b2139b417352c28cabc2f',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.client()']]], - ['client_5fmessagereceived_386',['Client_MessageReceived',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3866a830f4cedcfdc6b2d1ca7e87ab4d',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], - ['client_5fonchannelmessage_387',['Client_OnChannelMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ad5b2c312d6d9703edbeb60825cfb1602',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['client_5fonquerymessage_388',['Client_OnQueryMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6709ea88022cc7f1ed175e5f863e79c9',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['clientexception_389',['ClientException',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html',1,'Tgstation.Server.Client.ClientException'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a3f17ba166b12061604c4324017a8b82b',1,'Tgstation.Server.Client.ClientException.ClientException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#aa609a0cde59451054984705078125700',1,'Tgstation.Server.Client.ClientException.ClientException()'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a9195a6bc325e3df79e9ae9490c90a0a4',1,'Tgstation.Server.Client.ClientException.ClientException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a8864363a43d30e891b54cc46d75bdce4',1,'Tgstation.Server.Client.ClientException.ClientException(string message, Exception innerException)']]], - ['clientexception_2ecs_390',['ClientException.cs',['../_client_exception_8cs.html',1,'']]], - ['clone_391',['Clone',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#ad1443ff74ddf28de61129c0c98e2abc2',1,'Tgstation.Server.Client.Components.IRepositoryClient.Clone()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a5e84a3b8d18e965718b2c37386c6aede',1,'Tgstation.Server.Client.Components.RepositoryClient.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a0a6ed81450e50013e2ec1bae65e5f8cb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ac40ab8e01d38e4283f2b108b6cf3d4e4',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a1cb40673b65fa830543c69461449953a',1,'Tgstation.Server.Host.Security.ISystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a59df57ef35247cd92739a0617e1b967c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aa3df6c34f2e2c1a5755b21595bc6f1a5',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Clone()']]], - ['cloneinprogress_392',['CloneInProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a3e57f020cf906b3c04f3fc81084a98d3',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneInProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#adb8787a8636ea92edd721e4e1eb7c97c',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneInProgress()']]], - ['clonemetadata_393',['CloneMetadata',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#af41bc4f3fadb8aa31a7d2950f1906383',1,'Tgstation::Server::Api::Models::Instance']]], - ['clonerepository_394',['CloneRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#af808580132ffdf6fdd6d35a02894489a',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad629e70450172a215353ac97029fd5ba',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneRepository()']]], - ['closehandle_395',['CloseHandle',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a5cc6468cad981968d6edbeec40aea81e',1,'Tgstation::Server::Host::NativeMethods']]], - ['closeportonreboot_396',['ClosePortOnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#abe1552b921cee4e80af4f59b6862a8c8',1,'Tgstation.Server.Host.Components.Session.ISessionController.ClosePortOnReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a8a5265d0101bec2eb37f2f65fb4a6ef9',1,'Tgstation.Server.Host.Components.Session.SessionController.ClosePortOnReboot()']]], - ['codemodificationsheadfile_397',['CodeModificationsHeadFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#aa146572ec12e2444819edb99be402a91',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['codemodificationssubdirectory_398',['CodeModificationsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a7e19fd0432fd7b61f30a015a477eeb74',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['codemodificationstailfile_399',['CodeModificationsTailFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac2b6e06f4a91a2f4fc5f8f93210ee941',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['combinedstringbuilder_400',['combinedStringBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a2b6851fe998b0764f198a17f05c411b0',1,'Tgstation::Server::Host::System::Process']]], - ['combinedtopicresponse_401',['CombinedTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html',1,'Tgstation.Server.Host.Components.Session.CombinedTopicResponse'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#aae9b5be94a1f68b17db56b3bdaf2fbbb',1,'Tgstation.Server.Host.Components.Session.CombinedTopicResponse.CombinedTopicResponse()']]], - ['combinedtopicresponse_2ecs_402',['CombinedTopicResponse.cs',['../_combined_topic_response_8cs.html',1,'']]], - ['commandfactory_403',['CommandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa6a9c74750f2d7681b3e2f2a2913d0b3',1,'Tgstation.Server.Host.Components.Chat.ChatManager.commandFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac2c9597d5999233e2e8e138ea59f8808',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.CommandFactory()']]], - ['commandfactory_2ecs_404',['CommandFactory.cs',['../_command_factory_8cs.html',1,'']]], - ['commandresponsemessage_405',['CommandResponseMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a5e4edc24d276cd6f04ac5f9ca341854e',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], - ['commands_406',['commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a0430493b4192fa846e3bd01855bded49',1,'Tgstation.Server.Host.Components.Repository.Repository.commands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8216cd27859d7fffa1c3f2d22d76fc62',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.commands()']]], - ['commandtype_407',['CommandType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a1d4ee9b9e14b762f89c37089f5e95adc',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CommandType()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a4ff929e0039bac0fc761fdc518fb3cd2',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.CommandType()']]], - ['comment_408',['Comment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a556ffae15694a68aa1c78f851407eb5b',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], - ['commitsha_409',['CommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#ac93d5aef3a8222c5b5ceed6df8e7b309',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], - ['committeremail_410',['CommitterEmail',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ae28a981004bc61c95a4cdd2668d0d3e9',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['committername_411',['CommitterName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad6554d43c365ca4df2122315420cb456',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['commonmention_412',['CommonMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0b5b0d03d129b21de29dc2c2bbf17edf',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['compatible_413',['Compatible',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a305abd5b6b16230fb32f779af0a07d61',1,'Tgstation::Server::Api::ApiHeaders']]], - ['compile_414',['Compile',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af9d90085714117a3109d6f7af3fdc1cc',1,'Tgstation.Server.Client.Components.DreamMakerClient.Compile()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a548a8f4daed30ab49f77a23b1c125078',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Compile()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a6e1e847a00e2387bf4bd43522c64ddd0',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da3de9387fc230ce74214446e58c4fefde',1,'Tgstation.Server.Api.Rights.Compile()']]], - ['compilecancelled_415',['CompileCancelled',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aac05aa67f7da74bd470018801530d560',1,'Tgstation::Server::Host::Components::Events']]], - ['compilecomplete_416',['CompileComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a32558503790304b9e722550831898633',1,'Tgstation::Server::Host::Components::Events']]], - ['compilefailure_417',['CompileFailure',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aaef5e71e3b260e64d5349d6e04e7a0bd',1,'Tgstation::Server::Host::Components::Events']]], - ['compilejob_418',['CompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.Internal.CompileJob'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Host.Models.CompileJob'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.CompileJob'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a7b45683d68a5cdfe0f19c7524d6b8863',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#aa70dea09833e84fe4b5fead42a9067a6',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a53eeda8cf6068e5865575b8df220e44a',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#ae2b375dacb3108f70f05d66a4b659dbc',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a8db55041002deed3d1abfbc1d16db7eb',1,'Tgstation.Server.Host.Components.Session.ISessionController.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a5f6e66519f87716705d220c627f8da',1,'Tgstation.Server.Host.Components.Session.SessionController.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a02ee6eb05943c4bbfed4aca64692fa80',1,'Tgstation.Server.Host.Models.ReattachInformation.CompileJob()']]], - ['compilejob_2ecs_419',['CompileJob.cs',['../_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html',1,'(Global Namespace)']]], - ['compilejobconsumer_420',['compileJobConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab01d9cb0fcd270eea9ec47a4e0684f4a',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['compilejobid_421',['CompileJobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#af8d154d1976539dbca0a4dc0bc597366',1,'Tgstation::Server::Host::Models::ReattachInformation']]], - ['compilejobs_422',['CompileJobs',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#afa502454260e6df15dbdaf7ef487f897',1,'Tgstation.Server.Api.Models.RevisionInformation.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa72d8f36af92d91080acf1af4d971420',1,'Tgstation.Server.Host.Database.DatabaseContext.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#acba8ecba062c4f42b79e7e66dc0028b6',1,'Tgstation.Server.Host.Database.DatabaseContext.CompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9f93949abe42bddbbf9134946c7f5be5',1,'Tgstation.Server.Host.Database.IDatabaseContext.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ad4106b5ca8b17dc7ff82ceb681a94b2c',1,'Tgstation.Server.Host.Models.RevisionInformation.CompileJobs()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7c63725727d75ca94b3b395198026acb',1,'Tgstation.Server.Api.Rights.CompileJobs()']]], - ['compilejobscollection_423',['compileJobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac8e8b25dfc7e50721f457a5cdbe5f1c5',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['compilestart_424',['CompileStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7abec1242b376ffdd3ca51b65b2106e843',1,'Tgstation::Server::Host::Components::Events']]], - ['concatpath_425',['ConcatPath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#abd68930642dbf40df272b35dc438312e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ConcatPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a286f4eb5c679683b7e519847a6c3574e',1,'Tgstation.Server.Host.IO.IIOManager.ConcatPath()']]], - ['configuration_426',['Configuration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a8aaca6b84ee519e26c8351c2b5929c18',1,'Tgstation.Server.Api.Routes.Configuration()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a16626c6a13892319d3f24e0c57dd9394',1,'Tgstation.Server.Client.Components.IInstanceClient.Configuration()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a32339ec5eab6e79b673bed2aca4dbceb',1,'Tgstation.Server.Client.Components.InstanceClient.Configuration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#af59817cc9aa5a4ca776200c7c0b9206c',1,'Tgstation.Server.Host.Components.IInstanceCore.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a49c2073606768819b91a401c21fe3555',1,'Tgstation.Server.Host.Components.Instance.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ad987739dcc836bd5861d4dd3c868515e',1,'Tgstation.Server.Host.Components.InstanceWrapper.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#abecd5329f7937e822959734f3c5272d1',1,'Tgstation.Server.Host.Setup.SetupApplication.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae5932bea40716ebcc3145ccfd2c48aa3',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2fe7ecccab0b5b1be9fdda8cbf097d9b',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a50e81e8ba4fb2abd36df79dfc922b3d0',1,'Tgstation.Server.Host.Components.Events.EventConsumer.configuration()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a254f642527b45bc260048e30704edb39',1,'Tgstation.Server.Api.Rights.Configuration()']]], - ['configuration_2ecs_427',['Configuration.cs',['../_configuration_8cs.html',1,'']]], - ['configurationclient_428',['ConfigurationClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html',1,'Tgstation.Server.Client.Components.ConfigurationClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#aed092908af675dfdec16528492815010',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationClient()']]], - ['configurationclient_2ecs_429',['ConfigurationClient.cs',['../_configuration_client_8cs.html',1,'']]], - ['configurationcontroller_430',['ConfigurationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html',1,'Tgstation.Server.Host.Controllers.ConfigurationController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a9ed3e9d430a0a4dbe5b2a3e3298089ca',1,'Tgstation.Server.Host.Controllers.ConfigurationController.ConfigurationController()']]], - ['configurationcontroller_2ecs_431',['ConfigurationController.cs',['../_configuration_controller_8cs.html',1,'']]], - ['configurationdirectorynotempty_432',['ConfigurationDirectoryNotEmpty',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab6aac8a71757f5fdf164188595806e72',1,'Tgstation::Server::Api::Models']]], - ['configurationfile_433',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html',1,'Tgstation.Server.Api.Models.ConfigurationFile'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa983574bbb6d05042ad2f96d30ffa824',1,'Tgstation.Server.Api.Routes.ConfigurationFile()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a60002e47d604a7189fea03b3a4720787',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, directory, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a804b1608adc364d167bf1224e4490642',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, file ?? throw new ArgumentNullException(nameof(file)), instance.Id, cancellationToken)']]], - ['configurationfile_2ecs_434',['ConfigurationFile.cs',['../_configuration_file_8cs.html',1,'']]], - ['configurationfileupdated_435',['ConfigurationFileUpdated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5c0d6072f109fa92c30019b66bbceeaf',1,'Tgstation::Server::Api::Models']]], - ['configurationrights_436',['ConfigurationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ae62017841e15071fb5d7652fc60d159a',1,'Tgstation.Server.Api.Models.InstanceUser.ConfigurationRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0c',1,'Tgstation.Server.Api.Rights.ConfigurationRights()']]], - ['configurationrights_2ecs_437',['ConfigurationRights.cs',['../_configuration_rights_8cs.html',1,'']]], - ['configurationtype_438',['ConfigurationType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6183efad1d4344d06e59ea8bc2072a19',1,'Tgstation.Server.Api.Models.Instance.ConfigurationType()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440',1,'Tgstation.Server.Api.Models.ConfigurationType()']]], - ['configurationtype_2ecs_439',['ConfigurationType.cs',['../_configuration_type_8cs.html',1,'']]], - ['configure_440',['Configure',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#aaba3eb445c2c2c0f8a11d150096b7457',1,'Tgstation.Server.Host.Service.Program.Configure()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2c2b516c6696a0390b37c4983a52a235',1,'Tgstation.Server.Host.Core.Application.Configure()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a58ef7bff279e5663448d9c5e9fa81e89',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Configure()']]], - ['configurecontrolpanel_441',['ConfigureControlPanel',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a4395ef504696978cdc743b50121456f7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configuredatabase_442',['ConfigureDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a1deda504d8ba5d227a51c83564b72ca1',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configuregeneral_443',['ConfigureGeneral',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae6f4a68f9543e70ef9b01c4f1088aa1b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configurehostedservice_444',['ConfigureHostedService',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a1d6e849d4a69fe90f23f60aaeb2bc960',1,'Tgstation.Server.Host.Core.Application.ConfigureHostedService()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a03097b9f375ae721b318fc2aaf970b9b',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureHostedService()']]], - ['configurelogging_445',['ConfigureLogging',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a95d031c71d5219c0d2327191b220311b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configureservices_446',['ConfigureServices',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2b610f9600937f97857f303dcfe41823',1,'Tgstation.Server.Host.Core.Application.ConfigureServices()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a1225384501e2dfd8dd509a1f96ea2fa6',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureServices()']]], - ['configurewith_447',['ConfigureWith',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a7f6de62bd38ebbe07636d0157900a38e',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a3d07b96c19d7b70b69c4e8d946b7cced',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#aa805cd8652307d8a0a2995d745af8ace',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#ac5686cbb48dd4d5fae19a104daa4e6a9',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext.ConfigureWith()']]], - ['configversion_448',['ConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a5625c8cc148d7d33019735915d440ec7',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['conflictexception_449',['ConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html',1,'Tgstation.Server.Client.ConflictException'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a71a13b722965b9a2e3b0b0b667d59b54',1,'Tgstation.Server.Client.ConflictException.ConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a6f35d432dfaab891a7652e2fc636c258',1,'Tgstation.Server.Client.ConflictException.ConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a5577bc93af2abe799a86b0c383902ea2',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a08028d33db9e62104c77df9ef3f673af',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message, Exception innerException)']]], - ['conflictexception_2ecs_450',['ConflictException.cs',['../_conflict_exception_8cs.html',1,'']]], - ['connect_451',['Connect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#aaa5c800b8dc532cb596ebd075e14e48e',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6329a704d61a9d05333408279b044d50',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a96305dc74c77224130e4067f19b59407',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connect()']]], - ['connected_452',['Connected',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac2744da20824177724b971eb20a6d5a0',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connected()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acc07a6bfb2fbb35243aa1e147d92dd87',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa22564e0346747e2c00dfcab7a48141c',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afab0213888c139dbb1786d7f5c0d8680',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connected()']]], - ['connectionname_453',['ConnectionName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a0d68ca440d98dc89941ef3c5781f2f61',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], - ['connectionstring_454',['ConnectionString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a7875f395e72be4fada0a0ed86282156f',1,'Tgstation.Server.Api.Models.Internal.ChatBot.ConnectionString()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a53a14b4a89de73b8ea223804c4aea365',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ConnectionString()']]], - ['connectionsupdated_455',['connectionsUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a179b0d01333a267410199e524601dc84',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['console_456',['Console',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html',1,'Tgstation.Server.Host.IO.Console'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aadeb44bb71d804e15c6a6bd0c3131bd7',1,'Tgstation.Server.Host.Setup.SetupWizard.console()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aba874ec794084e164acb19d73c7c1dee',1,'Tgstation.Server.Host.IO.Console.Console()']]], - ['console_2ecs_457',['Console.cs',['../_console_8cs.html',1,'']]], - ['content_458',['Content',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html#a5f8416b44a3708f47e438ea192b9b7ed',1,'Tgstation.Server.Api.Models.Internal.RawData.Content()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a3a4a159c1b7b4ff0a163f4bb29ea4844',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.Content()']]], - ['continue_459',['Continue',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812aa0bfb8e59e6c13fc8d990781f77694fe',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['controller_460',['Controller',['../class_controller.html',1,'']]], - ['controllerdisposesemaphore_461',['controllerDisposeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5f9cfb67111bbc5ec1d954e4ed4bf913',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['controlpanelconfiguration_462',['ControlPanelConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html',1,'Tgstation.Server.Host.Configuration.ControlPanelConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a81d7f216e77a45eed438ee3e88d0677c',1,'Tgstation.Server.Host.Controllers.HomeController.controlPanelConfiguration()']]], - ['controlpanelconfiguration_2ecs_463',['ControlPanelConfiguration.cs',['../_control_panel_configuration_8cs.html',1,'']]], - ['convertapichatchannel_464',['ConvertApiChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a30fce4a18499c3c89b4b153b9805ce85',1,'Tgstation::Server::Host::Controllers::ChatController']]], - ['copydirectory_465',['CopyDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac24671c0d1ce1f6787304c5f4bcccf7c',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aab4ec78e2b2d66ad39642ed92a66250c',1,'Tgstation.Server.Host.IO.IIOManager.CopyDirectory()']]], - ['copydirectoryimpl_466',['CopyDirectoryImpl',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a32ca1367eadecb45e671aa509f3ce058',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['copydmfilesto_467',['CopyDMFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab1a680d6faed5978ce9cd0b7e4d9701b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CopyDMFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a0b26ca1668b405574bd7662965c7ebb7',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CopyDMFilesTo()']]], - ['copyfile_468',['CopyFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac3523b10f3affcd57a6e94ba5297e8fb',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aff4f7354934126bbc9516b04bc882ef3',1,'Tgstation.Server.Host.IO.IIOManager.CopyFile()']]], - ['copyto_469',['CopyTo',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ada48f9615977d839874139999fdd69ef',1,'Tgstation.Server.Host.Components.Repository.IRepository.CopyTo()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a09369ceb3b7c2c2562d546b9daebd42b',1,'Tgstation.Server.Host.Components.Repository.Repository.CopyTo()']]], - ['create_470',['Create',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2683730461ef575dbaab18fb01a10162',1,'Tgstation.Server.Client.Components.ChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a781f11da2fc0bc852e57544872e2f47e',1,'Tgstation.Server.Client.Components.IChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a8f315515848f8b7397e71255fa1055c9',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#af62bfee4e1cdca8a216bdade995a57b7',1,'Tgstation.Server.Client.Components.InstanceUserClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#a60a4f54b4b6cb61d3c0054b9b7a04604',1,'Tgstation.Server.Client.IUsersClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a68a9c4aea0859ef158ef8146e22d0fd6',1,'Tgstation.Server.Client.UsersClient.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a38a75a3f14b37983b1e5a76f2186e0ad',1,'Tgstation.Server.Host.Controllers.ChatController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a111121fa22f2648803f8f890c8a6305b',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a5fe34841f9b648b042096e51dba7be4e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a7231f4980bd98c9a033e805c90e92c95',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8712ba6603139064d68520e16c076901',1,'Tgstation.Server.Host.Controllers.InstanceController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a3a26d7b7a1b8c8c8c0ade33893f24b09',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a30a5b00625419334b1d51ae4a51aebda',1,'Tgstation.Server.Host.Controllers.RepositoryController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a99457477cad4b6adcedbba47d939f005',1,'Tgstation.Server.Host.Controllers.UserController.Create()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()']]], - ['create_3c_20tbody_2c_20tresult_20_3e_471',['Create< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a73701939b0af1ee33b46c931829200fc',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ab5fc54acd429e50a254fccaf23e52299',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0448d3803d9f45d2e67295cef2096174',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a726cb2cf80d2499c3e6ff8ae67bbc0ed',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], - ['create_3c_20tresult_20_3e_472',['Create< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a5c7201add0fadb2be2851aa749a0c3c6',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a70d6c289a7e07426ff72c36eb2502819',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ac4bbf7c3cc9ff87beda2b13f018a25f5',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a16d32f00e49bed861bcbd1c6c9325727',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], - ['createapiclient_473',['CreateApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html#a953819c1f71266c5d8657a8222afe2d1',1,'Tgstation.Server.Client.ApiClientFactory.CreateApiClient()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html#a26c11e29c0d4c3e2bded15672ecd4cf3',1,'Tgstation.Server.Client.IApiClientFactory.CreateApiClient()']]], - ['createauthenticationcontext_474',['CreateAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a2d25109494770497244333f385bd5d7e',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CreateAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6ed924f10ee271ccc8d2ea840c095e23',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CreateAuthenticationContext()']]], - ['createbaseclient_475',['CreateBaseClient',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a0d2033f1157b71089477c1383ed77e09',1,'Tgstation::Server::Host::Core::GitHubClientFactory']]], - ['createchatmanager_476',['CreateChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#ab7cb1f1ac63ad00a080ec4cb65b03ac6',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.CreateChatManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html#a2da119ff14c5553f07a8e0c3b3d43755',1,'Tgstation.Server.Host.Components.Chat.IChatManagerFactory.CreateChatManager()']]], - ['createclient_477',['CreateClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a89d0d8409ead36832135461bb544ad09',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aad7c5289f672bb2598084276d583a1f9',1,'Tgstation.Server.Client.InstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#ab32f8e03603c878ebc0affdc144facd0',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#aa2f86d385b449ccf9b4d9011c0479e34',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient(string accessToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9043597fb0563f7fb0ed751819aa7525',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9b084c659f289f370933fe1b53e55ce9',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient(string accessToken)']]], - ['createconnection_478',['CreateConnection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html#abce25a599c920bf792f33fcc352f99b3',1,'Tgstation.Server.Host.Database.DatabaseConnectionFactory.CreateConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html#a0f383d25a87d76938ddafd924c5fa517',1,'Tgstation.Server.Host.Database.IDatabaseConnectionFactory.CreateConnection()']]], - ['createconnectionstringbuilder_479',['CreateConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#af2e5b18a1f41b8c75c8504f745db9d92',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['created_480',['Created',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae0fcee33c7b7341bc3bf0c0e66e1ebf4',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['createdat_481',['CreatedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ab0d92bcf1b5b9afbb0f7ab1e5952acff',1,'Tgstation::Server::Api::Models::Internal::User']]], - ['createdatabasecontextoptions_3c_20tdatabasecontext_20_3e_482',['CreateDatabaseContextOptions< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html#a45ce56300f6ce4d136326452c493353c',1,'Tgstation::Server::Host::Database::Design::DesignTimeDbContextFactoryHelpers']]], - ['createdbcontext_483',['CreateDbContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html#a8c2173be2b6fa289a8bfcf8da59de797',1,'Tgstation.Server.Host.Database.Design.MySqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html#a36ff3f3ef52311c0fa45971cc3156bb1',1,'Tgstation.Server.Host.Database.Design.PostgresSqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html#a88c77d7409d55231d096416130531e93',1,'Tgstation.Server.Host.Database.Design.SqliteDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html#aff56794443746e5d8d0c08389d7cd8a5',1,'Tgstation.Server.Host.Database.Design.SqlServerDesignTimeDbContextFactory.CreateDbContext()']]], - ['createdby_484',['CreatedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#af535560432c40c4da118e84e810c5cf0',1,'Tgstation.Server.Api.Models.User.CreatedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8f1821d1c00f73eff7324bf8fc9c1c7e',1,'Tgstation.Server.Host.Models.User.CreatedBy()']]], - ['createdefaultinstance_485',['CreateDefaultInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8bf721ab3f71056d9e5556b1b6c438de',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['createdefaultserverfactory_486',['CreateDefaultServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a6720ad4775ff4751c0d2e00b36f0c31f',1,'Tgstation::Server::Host::Core::Application']]], - ['createdirectory_487',['CreateDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#ad3f4cf594c24523ba3717b926843c078',1,'Tgstation.Server.Client.Components.ConfigurationClient.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab7b97489e1cb6307e417f6ecc22b9260',1,'Tgstation.Server.Client.Components.IConfigurationClient.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9e6d3a7af0e253142f6ea1fe932f6002',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aac9d5ed7fad37fc5f29295f4a3445449',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a35975e796c564e8b5dd5d4a601d0c2e3',1,'Tgstation.Server.Host.IO.DefaultIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a69aa1b9dbeb6af3744e568095c4376e7',1,'Tgstation.Server.Host.IO.IIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a87b99f131bf6b48d725561414d4ddfcb',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a595b31e7065ee0d3431903fa0ac55156',1,'Tgstation.Server.Host.IO.SynchronousIOManager.CreateDirectory()']]], - ['createdump_488',['CreateDump',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aaa1081740725a60d8a78b5db2143f304',1,'Tgstation.Server.Api.Models.DreamDaemon.CreateDump()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ae3caf6b9a60ad0a3dc2f9019865f0a81',1,'Tgstation.Server.Client.Components.DreamDaemonClient.CreateDump()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a48394b257252091cbcd25caa49891fa5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27cbf6cebc4f18d796bc0e0a77c5d755',1,'Tgstation.Server.Host.Components.Session.SessionController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a67f97ee77ae892e162173be45d7522f7',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad8489bee0d96bcaf87eba19adee17149',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a9131baefd94f4bf123ef1901cb37565e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#acf8d9dfdf49269e33dd78e634b741620',1,'Tgstation.Server.Host.System.IProcessBase.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad576ba0ef666881ed6059180a0522a09',1,'Tgstation.Server.Host.System.IProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#adb55624c50c7c2ac7fedb4c64737b0db',1,'Tgstation.Server.Host.System.PosixProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#add49679c161683221749ee9962b98f49',1,'Tgstation.Server.Host.System.Process.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a1f0c6b3671ac06b34d885c295d1971ee',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.CreateDump()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a14e9adc4994501d29b832109c5a7f14b',1,'Tgstation.Server.Api.Rights.CreateDump()']]], - ['createdusers_489',['CreatedUsers',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#af7088656a7ce8f84c103abef89a0ac52',1,'Tgstation::Server::Host::Models::User']]], - ['createfromexistinghandle_490',['CreateFromExistingHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ab8ce5d8354aea3fec89a1d7687acb877',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['createfromlogin_491',['CreateFromLogin',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#a092382c5ce194b7f7cade97451a1e504',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromLogin()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a9002a789598c8fab690514d9dc9cfbcf',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromLogin()']]], - ['createfrompath_492',['CreateFromPath',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a855673b50e2639242bea6d6770c39773',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateFromPath()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#aff825ad3b4e4f4de83285d3cf2281e7b',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateFromPath()']]], - ['createfromtoken_493',['CreateFromToken',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#ada7a9fcb461c62ddb534a57e1d3791c7',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromToken()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#abc81fe410ef4bbf999e7531505cac7e1',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromToken()']]], - ['createinmemory_494',['CreateInMemory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#af08df14e3a5e9e63b14a6d65cc47abd6',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateInMemory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ad04e55b87e2ea16c68210ce73a80cebd',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateInMemory()']]], - ['createinstance_495',['CreateInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html#af404cbb63284897baafdeb6316d45293',1,'Tgstation.Server.Host.Components.IInstanceFactory.CreateInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a009ffff68f9d96d360cde0fefe4c8b5e',1,'Tgstation.Server.Host.Components.InstanceFactory.CreateInstance()']]], - ['createorattach_496',['CreateOrAttach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#af937af9989159b8d9336cffa4f3b578a',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateOrAttach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a1a1428f9a34d1cec0fa1bc3fe6b8a3a8',1,'Tgstation.Server.Client.InstanceManagerClient.CreateOrAttach()']]], - ['createprovider_497',['CreateProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html#a4250fc0dc09258c391507fbf29977758',1,'Tgstation.Server.Host.Components.Chat.Providers.IProviderFactory.CreateProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a52f360a24dd9085562ee7137ed0ea28d',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.CreateProvider()']]], - ['createruntimeinformation_498',['CreateRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a04f638e9803b002f5242947ec6491f6b',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['createserver_499',['CreateServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a063542cb78195a507feb3c0e6921b01b',1,'Tgstation.Server.Host.IServerFactory.CreateServer()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a4234b15ede546c23f9b5d35bc5c8749b',1,'Tgstation.Server.Host.ServerFactory.CreateServer()']]], - ['createsymboliclink_500',['CreateSymbolicLink',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html#a35bd8c53ef36c4a655e827750a40699c',1,'Tgstation.Server.Host.IO.ISymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html#ac487bf33d9a5821fb30bfd7b74915fbe',1,'Tgstation.Server.Host.IO.PosixSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html#a87a0b1b31b48f65e53e4b3b6f476a2c0',1,'Tgstation.Server.Host.IO.WindowsSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a668c437c860fb2eafcee04a1a2a613c9',1,'Tgstation.Server.Host.NativeMethods.CreateSymbolicLink()']]], - ['createsymboliclinkflags_501',['CreateSymbolicLinkFlags',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556',1,'Tgstation::Server::Host::NativeMethods']]], - ['createsystemidentity_502',['CreateSystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#adaf274d215700bf692b1c3964ff32103',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6dd83aca91cf43c7236afd22dc512b0a',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a8e2c85e4ed45d68065f86749afa4651d',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a4621a750f1d0592586d26323af215d93',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a5c140611a428b663c3a3f76623f825c2',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a24c82be81ba5cda6c975a931e8bfe6f1',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)']]], - ['createtoken_503',['CreateToken',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afe4c43b884ebd0e9c4b60e39d4e1c162',1,'Tgstation.Server.Host.Controllers.HomeController.CreateToken()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a57edffc2d8c63352fbf4ebd0b5991b45',1,'Tgstation.Server.Host.Security.ITokenFactory.CreateToken()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a17610f96f7e87136d957e8ba3c1f5d4a',1,'Tgstation.Server.Host.Security.TokenFactory.CreateToken()']]], - ['createtopicclient_504',['CreateTopicClient',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html#a950569e357f1d6e51722d4894792c555',1,'Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a4e452e6c92e14627b7194cd33d11b6ed',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.CreateTopicClient()']]], - ['createtrackingcontext_505',['CreateTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aadf2ea0ffdbf567ac24cc5c45f6f66b6',1,'Tgstation.Server.Host.Components.Chat.ChatManager.CreateTrackingContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a5b3b4e9ab7d03bd8020ee9dfa9bebbbe',1,'Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext()']]], - ['createusers_506',['CreateUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a90212f132b4b808fe81b7022759031d9',1,'Tgstation::Server::Api::Rights']]], - ['createwatchdog_507',['CreateWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html#a4e0ea5f477f968e4f64902e6ad1ae032',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#a55c35d3407232ef352cedfed89dfdda4',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a7417b9b6823272f9c4452dfd818ed804',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#ac7577c15b657467c12af75e719feccc6',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.CreateWatchdog()'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html#a4610f9c60c131dab81a56aa23abdfbb8',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html#ae25446ee2a7bb19d9208695d18621914',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory.CreateWatchdog()']]], - ['credentialsprovider_508',['credentialsProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afdb8ee82eed9e1b0251d71af2c3ff612',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['cryptographysuite_509',['CryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html',1,'Tgstation.Server.Host.Security.CryptographySuite'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae61c8c28bfce67853a5b1acbcd095533',1,'Tgstation.Server.Host.Components.InstanceFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a483ed37a018bd66106dbed87ce8adc13',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78651298906fc1500952310c49c96e06',1,'Tgstation.Server.Host.Controllers.HomeController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#aba1ed8b3befb54640af05c3694eeb278',1,'Tgstation.Server.Host.Controllers.UserController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a88f644df987dce53ffa2e26a763f5974',1,'Tgstation.Server.Host.Database.DatabaseSeeder.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a57c7a5016e948842f6d52697f806614b',1,'Tgstation.Server.Host.Security.CryptographySuite.CryptographySuite()']]], - ['cryptographysuite_2ecs_510',['CryptographySuite.cs',['../_cryptography_suite_8cs.html',1,'']]], - ['currentallowwebclient_511',['CurrentAllowWebclient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a5ec4c59c00dccb5e0b87e4bf2c2d9566',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['currentauthenticationcontext_512',['CurrentAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a37a564f1b33b53dc2af9fb751b5a7e9b',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CurrentAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6c1be0fe695cf57fa21674373868f709',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CurrentAuthenticationContext()']]], - ['currentchatcallback_513',['currentChatCallback',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa8260c1a7b05630b5411ded96c3648cd',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['currentconfigversion_514',['CurrentConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a11cacc87b093badf8b45cc9fd858df54',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['currentdirectory_515',['CurrentDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a984a32ee93a073036f63d543ad9a6cdd',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['currentdreammakeroutput_516',['currentDreamMakerOutput',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0e3523b8ef4f0d5c93f108c0de792977',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['currentport_517',['CurrentPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a3740443b5c26f64b1b4f516399219040',1,'Tgstation.Server.Api.Models.DreamDaemon.CurrentPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a6dacbc68c2a5f471a5540afc3150ddc7',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CurrentPort()']]], - ['currentsecurity_518',['CurrentSecurity',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aea8a6590efc3c90d0e57f532902a149e',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['customcommand_519',['CustomCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['customcommand_2ecs_520',['CustomCommand.cs',['../_custom_command_8cs.html',1,'']]], - ['customcommandhandler_521',['customCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a32ce1266bccc40aebf2f9c284ed6e69a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.customCommandHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a198bebe94c736431862c137cbb3d0ea8',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.customCommandHandler()']]], - ['customcommands_522',['CustomCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#abfda6bc1a90add9d6bff98456cf550ec',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.CustomCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a09fedbbe7a7681b0e28fe47158af766d',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a86c0726e12e80ae3c6f2b3742d3a229c',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a32fa34e507879cfa556254e8ec7f1fb9',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicResponse.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a0dfced9917f1bf96b1b46f511e643709',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.customCommands()']]] + ['cachedidentities_279',['cachedIdentities',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#ab9206118af46526c3bb89c95c5197bd8',1,'Tgstation::Server::Host::Security::IdentityCache']]], + ['cachedirectoryname_280',['CacheDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a4f8d03c61dfdd7c1a60c6b495288806f',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], + ['cachesystemidentity_281',['CacheSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#acbbad46e8e5ac5cae600edce613f9cf5',1,'Tgstation.Server.Host.Security.IdentityCache.CacheSystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#a40f3695ec18d3df1bea7b230b75dabbb',1,'Tgstation.Server.Host.Security.IIdentityCache.CacheSystemIdentity()']]], + ['calculateexpecteddeploymenttime_282',['CalculateExpectedDeploymentTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2365f1b05cb4cea83027efaea9580f83',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['canapplywithoutreboot_283',['CanApplyWithoutReboot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#ad1c56d38c1a48c110765c99a72619e13',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['cancel_284',['Cancel',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a060a731a0c221146d5d81d7890e1cd42',1,'Tgstation.Server.Client.Components.IJobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a50456aace539b2c54afc8f8218278c49',1,'Tgstation.Server.Client.Components.JobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a674342b0dc8050c0ab42a299aa4a7762',1,'Tgstation.Server.Host.Jobs.JobHandler.Cancel()']]], + ['cancelclone_285',['CancelClone',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a8863765f0ecf9b3004e8051a28251d6a',1,'Tgstation::Server::Api::Rights']]], + ['cancelcompile_286',['CancelCompile',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5daadc2d374d8bb5ae840bbb0145868fc1f',1,'Tgstation::Server::Api::Rights']]], + ['cancelinstall_287',['CancelInstall',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a9557127a4ed0a1726e4b32579364083b',1,'Tgstation::Server::Api::Rights']]], + ['canceljob_288',['CancelJob',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a02ff92fbece1f77bc9d34216d1ffa7ce',1,'Tgstation.Server.Host.Jobs.IJobManager.CancelJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#afab851d16b36dadeb5d7afdc40e7a740',1,'Tgstation.Server.Host.Jobs.JobManager.CancelJob()']]], + ['cancelkeycts_289',['cancelKeyCts',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a10d46881a4846e87d58bac73d392d665',1,'Tgstation::Server::Host::IO::Console']]], + ['cancelkeypress_290',['CancelKeyPress',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab866e78375ea43803c7d8a64b181e21c',1,'Tgstation.Server.Host.IO.Console.CancelKeyPress()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a850a82073bea75fd1c0011f92aa91191',1,'Tgstation.Server.Host.IO.IConsole.CancelKeyPress()']]], + ['cancellationtokensource_291',['cancellationTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ac30004f8ba4f9497c9f81cf26c4c2d24',1,'Tgstation.Server.Host.Jobs.JobHandler.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#ac8422fda839cd16fd8b467bb4947f8a1',1,'Tgstation.Server.Host.Security.IdentityCacheObject.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a80bf6f84e712996ae1d8894ec96e9ba3',1,'Tgstation.Server.Host.Server.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a2b51b208174b00545d40d6cf58d82a6e',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a23cc7eb8e4b7ca1d16f8a3bbb220c8b8',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a4f65e767919ae007c07ef7b3b715b498',1,'Tgstation.Server.Host.Service.ServerService.cancellationTokenSource()']]], + ['cancelled_292',['Cancelled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab68caae8a7e5bd3bfd7764cab7b8773d',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['cancelledby_293',['CancelledBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a8bba62b605a9b135cc02a76edab12d8a',1,'Tgstation.Server.Api.Models.Job.CancelledBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#a11070d5a55b77aa91f23403d17c4d224',1,'Tgstation.Server.Host.Models.Job.CancelledBy()']]], + ['cancelpendingchanges_294',['CancelPendingChanges',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a84be61baa3a948e65891036fdaba4ab7',1,'Tgstation::Server::Api::Rights']]], + ['cancelright_295',['CancelRight',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#af210e7bef88bdc5ca203c8f0931c520a',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['cancelrightstype_296',['CancelRightsType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a796c6a9e900858ec0084648e9b375609',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['canconvert_297',['CanConvert',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a06799ee353b6539298ae9157a94447d7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.CanConvert()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a4179b3dce37ebd3e673c0d3326c08624',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.CanConvert()']]], + ['cancreatesymlinks_298',['CanCreateSymlinks',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a372abf6465e892a3fee94c1aa32aaf3f',1,'Tgstation.Server.Host.Security.ISystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a9b80b72e3694f14852de2d3fdb252472',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#ae0e95b11dc35386e5a276bd9b24b3312',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#afe60cf0ed06def30a229734840a69a33',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.canCreateSymlinks()']]], + ['cannotchangeserversuite_299',['CannotChangeServerSuite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ad27cb08b02e194991882f231d87b9030',1,'Tgstation::Server::Api::Models']]], + ['canonicalizename_300',['CanonicalizeName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a4b139051d0d6db501e37590fa1eabf16',1,'Tgstation::Server::Host::Models::User']]], + ['canonicalname_301',['CanonicalName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6882aa0e73af174efc9a7d843888a242',1,'Tgstation::Server::Host::Models::User']]], + ['cfgdirectoryname_302',['CfgDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#adbe97e65b8edae12e2f41947ed94dfc1',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['changeautoupdatesettings_303',['ChangeAutoUpdateSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a548b817c7c02c2f62dd3794933b0920c',1,'Tgstation::Server::Api::Rights']]], + ['changechannels_304',['ChangeChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a29ba2842fd3cf2c5532acc07966eb1a9',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#ab9ba3beba537518b1f68ca31ae9dea25',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeChannels()']]], + ['changecommitter_305',['ChangeCommitter',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39abae6cf87a3261b8f904b3943525f3043',1,'Tgstation::Server::Api::Rights']]], + ['changecredentials_306',['ChangeCredentials',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39adbc2b36c5f0ed08b2f62378225d078d6',1,'Tgstation::Server::Api::Rights']]], + ['changeport_307',['ChangePort',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a49bb93f8d7ab9097f73beb67a897a210',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['changerebootstate_308',['ChangeRebootState',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a852ce2e98903f54e64f9a11df8b2668f',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['changesettings_309',['ChangeSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0821ad5d467ff2ea9216eadd33273104',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a2ae0c2190435e3c65914eaec63dd2db6',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afab0aa088dc77e54e978c730645d8d00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ChangeSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a390fcde5ed6ed30d6e5b5b2ebc8273dc',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ChangeSettings()']]], + ['changetestmergecommits_310',['ChangeTestMergeCommits',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a5ad384c7de5c2f6d816c4d652462625b',1,'Tgstation::Server::Api::Rights']]], + ['changeversion_311',['ChangeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a431f006cfe5e1d2ab2efb346d6556705',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ChangeVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#af3559b76b9c7faff35cd8eadaac75c0b',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ChangeVersion()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a55c267b42a4e2d36d46ff358ff822968',1,'Tgstation.Server.Api.Rights.ChangeVersion()']]], + ['channel_312',['Channel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a38d8a714d5e64f7ec0864400c47af3d9',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.Channel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae40aff12bbf1b190b66a8f8f274dbdba',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Channel()']]], + ['channelidcounter_313',['channelIdCounter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a9f8c4d78e74aa61eb4aaa13cc1a88bbf',1,'Tgstation.Server.Host.Components.Chat.ChatManager.channelIdCounter()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a3170ebdb4e8568868efd3b1c1764bf38',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.channelIdCounter()']]], + ['channelidmap_314',['channelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a403b3ff6bccc4b1e3f7e9e8729f84908',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['channelids_315',['ChannelIds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ae0f13f64bd97247dd98165a6a4b7e4af',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], + ['channellimit_316',['ChannelLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8dbeaca6b993adef66fa1e1a01530f4b',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['channelmapping_317',['ChannelMapping',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['channelmapping_2ecs_318',['ChannelMapping.cs',['../_channel_mapping_8cs.html',1,'']]], + ['channelrepresentation_319',['ChannelRepresentation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['channelrepresentation_2ecs_320',['ChannelRepresentation.cs',['../_channel_representation_8cs.html',1,'']]], + ['channels_321',['Channels',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a7ca486417cb39a2dd44af4c3b9ca9caf',1,'Tgstation.Server.Api.Models.ChatBot.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#af0d278930e8e0b2779444e406bbfdbb6',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Channels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a7f7c9a94446c1b5e1afc9156705b6777',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#a280793bb9606d15ac3291b491db28fa2',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a3f9609cc720dfdb4c40ae553c658982a',1,'Tgstation.Server.Host.Models.ChatBot.Channels()']]], + ['channelsink_322',['channelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a5b89c6d03b5b49c2444ae5e815a537a2',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], + ['chat_323',['chat',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a77bc03b5ce1a16453e6a4311c1aca57f',1,'Tgstation.Server.Host.Components.Session.SessionController.chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8aec2da2210588cce0c937b97ff94d46',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat()'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6cf0d5e4d1f8ed76d2cf84a56392ed2d',1,'Tgstation.Server.Api.Routes.Chat()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a002488e85cb75fc56937cabff464be4c',1,'Tgstation.Server.Host.Components.IInstanceCore.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a33d0e17d96ba16ead347ff8fb1bf6b45',1,'Tgstation.Server.Host.Components.Instance.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a74598ceeefd01162e1eb45193fd6c760',1,'Tgstation.Server.Host.Components.InstanceWrapper.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec24ff5e3b22b40e62f4a2443eb8cec9',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Chat()']]], + ['chatbot_324',['ChatBot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.Internal.ChatBot'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Host.Models.ChatBot'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.ChatBot'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#af4c3c897c6aadc96dfbb08ff893dc602',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.ChatBot()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)']]], + ['chatbot_2ecs_325',['ChatBot.cs',['../_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)']]], + ['chatbotlimit_326',['ChatBotLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#ae07e119a1bd8ddbcf2641a8f7b734c2b',1,'Tgstation::Server::Api::Models::Instance']]], + ['chatbotmax_327',['ChatBotMax',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3363706f321199130f484868fd4dab2d',1,'Tgstation::Server::Api::Models']]], + ['chatbotmaxchannels_328',['ChatBotMaxChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefde5659eb82d8943cf3a4e4638c5aaf',1,'Tgstation::Server::Api::Models']]], + ['chatbotprovidermissing_329',['ChatBotProviderMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7fa65206da7db03314c84ab71978b824',1,'Tgstation::Server::Api::Models']]], + ['chatbotrights_330',['ChatBotRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a940fa0780621d08d50f1e961bb79a87b',1,'Tgstation.Server.Api.Models.InstanceUser.ChatBotRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72',1,'Tgstation.Server.Api.Rights.ChatBotRights()']]], + ['chatbotrights_2ecs_331',['ChatBotRights.cs',['../_chat_bot_rights_8cs.html',1,'']]], + ['chatbots_332',['ChatBots',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#aca06567ce5a36c7e6b2ac09d5e6d9a38',1,'Tgstation.Server.Client.Components.IInstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a8b8ccd6c8cb8f046bc1c94e4220df1c8',1,'Tgstation.Server.Client.Components.InstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad4cf2228c8dae3c2641251070fee76af',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatBots()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a9c47b161bd7cdb3b7bf2e6cf8ad7cbba',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatBots()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab21b0ca8cd1ea61dd71a2b3fd8879e6e',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatBots()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a11eee75253579a31252ca13f9a271873',1,'Tgstation.Server.Api.Rights.ChatBots()']]], + ['chatbotsclient_333',['ChatBotsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html',1,'Tgstation.Server.Client.Components.ChatBotsClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a322c40d10b0b8b65802c71a899a555d9',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBotsClient()']]], + ['chatbotsclient_2ecs_334',['ChatBotsClient.cs',['../_chat_bots_client_8cs.html',1,'']]], + ['chatbotscollection_335',['chatBotsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac6ec4fcf56661fc47e9d2abe9322924b',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['chatbotwhitespaceconnectionstring_336',['ChatBotWhitespaceConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7ef7f2f115b34ad156dd0ca621b7dd66',1,'Tgstation::Server::Api::Models']]], + ['chatbotwhitespacename_337',['ChatBotWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97ecb2f61aca1686c3720f9d3134a75f',1,'Tgstation::Server::Api::Models']]], + ['chatbotwrongchanneltype_338',['ChatBotWrongChannelType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abd8569dcf6e1e7cce0c99dbbb9f25785',1,'Tgstation::Server::Api::Models']]], + ['chatcannotconnectprovider_339',['ChatCannotConnectProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf876d87e92badc0f5d3e4d42395257e',1,'Tgstation::Server::Api::Models']]], + ['chatchannel_340',['ChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Host.Models.ChatChannel'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Api.Models.ChatChannel']]], + ['chatchannel_2ecs_341',['ChatChannel.cs',['../_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)']]], + ['chatchannelextensions_342',['ChatChannelExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['chatchannelextensions_2ecs_343',['ChatChannelExtensions.cs',['../_chat_channel_extensions_8cs.html',1,'']]], + ['chatchannels_344',['ChatChannels',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a78702d5654098ab15997e27830ee3700',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a251c974bd768cebdc7a1e6941e735c3a',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a1b4b0a39df2b5009142fbced4a3b431d',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatChannels()']]], + ['chatchannelscollection_345',['chatChannelsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa0c86a05a421da7e93e6a628d8332376',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['chatchannelsupdate_346',['ChatChannelsUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8aeaf3081408237420ee1bfae603db3569',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['chatcommand_347',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae601a706f441dab0b1b606652e6bf479',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.ChatCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a1737c025e35743a0f2be00fba48521c4',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.ChatCommand()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a08bf4bffdf0d4d5d711861504cb540a4',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand()']]], + ['chatcommand_2ecs_348',['ChatCommand.cs',['../_chat_command_8cs.html',1,'']]], + ['chatconnectionstringbuilder_349',['ChatConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['chatconnectionstringbuilder_2ecs_350',['ChatConnectionStringBuilder.cs',['../_chat_connection_string_builder_8cs.html',1,'']]], + ['chatcontroller_351',['ChatController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html',1,'Tgstation.Server.Host.Controllers.ChatController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#aeb8a6d7b46b068d26e685b7b22e78cb4',1,'Tgstation.Server.Host.Controllers.ChatController.ChatController()']]], + ['chatcontroller_2ecs_352',['ChatController.cs',['../_chat_controller_8cs.html',1,'']]], + ['chatfactory_353',['chatFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a86c6ee3938a05c7ce3adf413911345ce',1,'Tgstation::Server::Host::Components::InstanceFactory']]], + ['chathandler_354',['chatHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ada23a21c30710b64e7c9ee85e82e32d4',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['chatmanager_355',['ChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html',1,'Tgstation.Server.Host.Components.Chat.ChatManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae0a718f1cae22fe94e31e1c6103ddbed',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChatManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad8f8e86f9e52a3f5e027b9570c5f32df',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.chatManager()']]], + ['chatmanager_2ecs_356',['ChatManager.cs',['../_chat_manager_8cs.html',1,'']]], + ['chatmanagerfactory_357',['ChatManagerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a664778f38f54960c97b79cb3bcd97651',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.ChatManagerFactory()']]], + ['chatmanagerfactory_2ecs_358',['ChatManagerFactory.cs',['../_chat_manager_factory_8cs.html',1,'']]], + ['chatmessage_359',['ChatMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html',1,'Tgstation.Server.Host.Components.Interop.ChatMessage'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a5c439c5d7dcadaa0c3dddaca1b07046e',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.ChatMessage()']]], + ['chatmessage_2ecs_360',['ChatMessage.cs',['../_chat_message_8cs.html',1,'']]], + ['chatprovider_361',['ChatProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cc',1,'Tgstation::Server::Api::Models']]], + ['chatprovider_2ecs_362',['ChatProvider.cs',['../_chat_provider_8cs.html',1,'']]], + ['chatresponses_363',['ChatResponses',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a18c82501c779543e0aea47992f683bd3',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], + ['chatsend_364',['ChatSend',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da81b6f76d520249aef397ecdc007c821c',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['chatsettings_365',['ChatSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a082ce7e1f98a393dc31eed005abc5002',1,'Tgstation.Server.Host.Models.ChatChannel.ChatSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#aeca6d03d53690be83a3efc3634b702fe',1,'Tgstation.Server.Host.Models.Instance.ChatSettings()']]], + ['chatsettingsid_366',['ChatSettingsId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#aa81eda97809d3993ebf0d34f77fc0c1b',1,'Tgstation::Server::Host::Models::ChatChannel']]], + ['chattrackingcontext_367',['ChatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a930d4047b0c065fa25b3a149bb541648',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.ChatTrackingContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a849ce62757e342b5ec34bccbd4a98f75',1,'Tgstation.Server.Host.Components.Session.SessionController.chatTrackingContext()']]], + ['chattrackingcontext_2ecs_368',['ChatTrackingContext.cs',['../_chat_tracking_context_8cs.html',1,'']]], + ['chatupdate_369',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ab3602746a6cf5978f869fbbd3ec35021',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.ChatUpdate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#aad6730fe7ca3dfdf9b037bdc07a97c91',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate.ChatUpdate()']]], + ['chatupdate_2ecs_370',['ChatUpdate.cs',['../_chat_update_8cs.html',1,'']]], + ['chatuser_371',['ChatUser',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['chatuser_2ecs_372',['ChatUser.cs',['../_chat_user_8cs.html',1,'']]], + ['checkavailable_373',['CheckAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a6556df91ef25960c814f583b71996a9f',1,'Tgstation::Server::Host::IO::Console']]], + ['checkcompatibility_374',['CheckCompatibility',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3c5df000903796a032fe6a4cafdc8a73',1,'Tgstation.Server.Api.ApiHeaders.CheckCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0dff52d3ac52e100397122e63e1337ee',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.CheckCompatibility()']]], + ['checkdisposed_375',['CheckDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab0660ae6440a38aa85f8473a8220533a',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['checkexceptionpropagation_376',['CheckExceptionPropagation',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab5cd879190ac2d9764b9849eb31985f8',1,'Tgstation::Server::Host::Server']]], + ['checkgetjob_377',['CheckGetJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ae129c81a2e2ad2ecf8838e03a5a7db07',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['checklaunchresult_378',['CheckLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a96ad9302ae812f4ba3bbbaed2f7adbd0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['checkout_379',['Checkout',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a193582291ff43c0841b5c75f77f50fcb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Checkout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a6bd416c14953fd88906f93050249e705',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Checkout()']]], + ['checkoutobject_380',['CheckoutObject',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab069c1ee11c48955e51956ff31a0d0fc',1,'Tgstation.Server.Host.Components.Repository.IRepository.CheckoutObject()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a26b2fb935f0fd74a479231085029ce86',1,'Tgstation.Server.Host.Components.Repository.Repository.CheckoutObject()']]], + ['checkoutprogresshandler_381',['CheckoutProgressHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae8ee5ac2942a57e05ec5c7e238e75977',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['checkoutsha_382',['CheckoutSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#af2aad262f13b94c7aa30deee98862384',1,'Tgstation::Server::Api::Models::Repository']]], + ['checkpagerisnotrunning_383',['CheckPagerIsNotRunning',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3937a00c1b51549531faec1248595cf0',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['checkreleasesandapplyupdate_384',['CheckReleasesAndApplyUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a136149ffd1e19c77776bf08ad6f019d8',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['checkrunwizard_385',['CheckRunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a3b92be081e2beac876e749532a6d1d87',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['checksanity_386',['CheckSanity',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a5307337e3bb84c45327e8a856b7f425f',1,'Tgstation::Server::Host::Server']]], + ['checksystemcompatibility_387',['CheckSystemCompatibility',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ade02e9746380fbab6b087a74bd701dbe',1,'Tgstation.Server.Host.Components.InstanceFactory.CheckSystemCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a3e875f6dd7bf0458e6d54e0dcf7bfe44',1,'Tgstation.Server.Host.Components.InstanceManager.CheckSystemCompatibility()']]], + ['checkuserpassword_388',['CheckUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a020220485dde96985ea6bfe224a85d89',1,'Tgstation.Server.Host.Security.CryptographySuite.CheckUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac23fd656dc42cf07e64a62844f8bcfbc',1,'Tgstation.Server.Host.Security.ICryptographySuite.CheckUserPassword()']]], + ['checkvalidname_389',['CheckValidName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7d6d50ff837b991a62dd2664cc0577ad',1,'Tgstation::Server::Host::Controllers::UserController']]], + ['claimsinjector_390',['ClaimsInjector',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html',1,'Tgstation.Server.Host.Security.ClaimsInjector'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a9308e0623ef273d2009436d144cbe5bb',1,'Tgstation.Server.Host.Security.ClaimsInjector.ClaimsInjector()']]], + ['claimsinjector_2ecs_391',['ClaimsInjector.cs',['../_claims_injector_8cs.html',1,'']]], + ['clamp_3c_20tright_20_3e_392',['Clamp< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a3ff2a4a6158c2a8f6264fabd88d8cdff',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['cleancache_393',['CleanCache',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a26fd27ae8ad551f07cb655309bed6830',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.CleanCache()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad014a7849a1246dc316a9ac3d8a43d16',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.CleanCache()']]], + ['cleanjob_394',['CleanJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#abc5644c8a944e0cebe2599d910f6df18',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['cleanunusedcompilejobs_395',['CleanUnusedCompileJobs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a4bc1df0d137c1e026997a89262530182',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a1c5532c254d0eadf738379a4c0c33c62',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.CleanUnusedCompileJobs()']]], + ['cleanupcts_396',['cleanupCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#adc133e7ea90f5d87f12c0621959ded92',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['cleanupfailedcompile_397',['CleanupFailedCompile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa5f70760f3e069c36e2515cc2d68d9a8',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['cleanuptask_398',['cleanupTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#afcf8224ef94997af93339db4d69f34a3',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['client_399',['client',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a059457d72470d29c3530d489adb91d1c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.client()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a01ba0df08b2b2139b417352c28cabc2f',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.client()']]], + ['client_5fmessagereceived_400',['Client_MessageReceived',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3866a830f4cedcfdc6b2d1ca7e87ab4d',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], + ['client_5fonchannelmessage_401',['Client_OnChannelMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ad5b2c312d6d9703edbeb60825cfb1602',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['client_5fonquerymessage_402',['Client_OnQueryMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6709ea88022cc7f1ed175e5f863e79c9',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['clientexception_403',['ClientException',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html',1,'Tgstation.Server.Client.ClientException'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a3f17ba166b12061604c4324017a8b82b',1,'Tgstation.Server.Client.ClientException.ClientException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#aa609a0cde59451054984705078125700',1,'Tgstation.Server.Client.ClientException.ClientException()'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a9195a6bc325e3df79e9ae9490c90a0a4',1,'Tgstation.Server.Client.ClientException.ClientException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a8864363a43d30e891b54cc46d75bdce4',1,'Tgstation.Server.Client.ClientException.ClientException(string message, Exception innerException)']]], + ['clientexception_2ecs_404',['ClientException.cs',['../_client_exception_8cs.html',1,'']]], + ['clone_405',['Clone',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#ad1443ff74ddf28de61129c0c98e2abc2',1,'Tgstation.Server.Client.Components.IRepositoryClient.Clone()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a5e84a3b8d18e965718b2c37386c6aede',1,'Tgstation.Server.Client.Components.RepositoryClient.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a0a6ed81450e50013e2ec1bae65e5f8cb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ac40ab8e01d38e4283f2b108b6cf3d4e4',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a1cb40673b65fa830543c69461449953a',1,'Tgstation.Server.Host.Security.ISystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a59df57ef35247cd92739a0617e1b967c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aa3df6c34f2e2c1a5755b21595bc6f1a5',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Clone()']]], + ['cloneinprogress_406',['CloneInProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a3e57f020cf906b3c04f3fc81084a98d3',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneInProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#adb8787a8636ea92edd721e4e1eb7c97c',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneInProgress()']]], + ['clonemetadata_407',['CloneMetadata',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#af41bc4f3fadb8aa31a7d2950f1906383',1,'Tgstation::Server::Api::Models::Instance']]], + ['clonerepository_408',['CloneRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#af808580132ffdf6fdd6d35a02894489a',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad629e70450172a215353ac97029fd5ba',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneRepository()']]], + ['closehandle_409',['CloseHandle',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a5cc6468cad981968d6edbeec40aea81e',1,'Tgstation::Server::Host::NativeMethods']]], + ['closeportonreboot_410',['ClosePortOnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#abe1552b921cee4e80af4f59b6862a8c8',1,'Tgstation.Server.Host.Components.Session.ISessionController.ClosePortOnReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a8a5265d0101bec2eb37f2f65fb4a6ef9',1,'Tgstation.Server.Host.Components.Session.SessionController.ClosePortOnReboot()']]], + ['codemodificationsheadfile_411',['CodeModificationsHeadFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#aa146572ec12e2444819edb99be402a91',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['codemodificationssubdirectory_412',['CodeModificationsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a7e19fd0432fd7b61f30a015a477eeb74',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['codemodificationstailfile_413',['CodeModificationsTailFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac2b6e06f4a91a2f4fc5f8f93210ee941',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['combinedstringbuilder_414',['combinedStringBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a2b6851fe998b0764f198a17f05c411b0',1,'Tgstation::Server::Host::System::Process']]], + ['combinedtopicresponse_415',['CombinedTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html',1,'Tgstation.Server.Host.Components.Session.CombinedTopicResponse'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#aae9b5be94a1f68b17db56b3bdaf2fbbb',1,'Tgstation.Server.Host.Components.Session.CombinedTopicResponse.CombinedTopicResponse()']]], + ['combinedtopicresponse_2ecs_416',['CombinedTopicResponse.cs',['../_combined_topic_response_8cs.html',1,'']]], + ['commandfactory_417',['CommandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac2c9597d5999233e2e8e138ea59f8808',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.CommandFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa6a9c74750f2d7681b3e2f2a2913d0b3',1,'Tgstation.Server.Host.Components.Chat.ChatManager.commandFactory()']]], + ['commandfactory_2ecs_418',['CommandFactory.cs',['../_command_factory_8cs.html',1,'']]], + ['commandresponsemessage_419',['CommandResponseMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a5e4edc24d276cd6f04ac5f9ca341854e',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], + ['commands_420',['commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a0430493b4192fa846e3bd01855bded49',1,'Tgstation.Server.Host.Components.Repository.Repository.commands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8216cd27859d7fffa1c3f2d22d76fc62',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.commands()']]], + ['commandtype_421',['CommandType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a1d4ee9b9e14b762f89c37089f5e95adc',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CommandType()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a4ff929e0039bac0fc761fdc518fb3cd2',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.CommandType()']]], + ['comment_422',['Comment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a556ffae15694a68aa1c78f851407eb5b',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], + ['commitsha_423',['CommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#ac93d5aef3a8222c5b5ceed6df8e7b309',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], + ['committeremail_424',['CommitterEmail',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ae28a981004bc61c95a4cdd2668d0d3e9',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['committername_425',['CommitterName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad6554d43c365ca4df2122315420cb456',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['commonmention_426',['CommonMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0b5b0d03d129b21de29dc2c2bbf17edf',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['compatible_427',['Compatible',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a305abd5b6b16230fb32f779af0a07d61',1,'Tgstation::Server::Api::ApiHeaders']]], + ['compile_428',['Compile',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af9d90085714117a3109d6f7af3fdc1cc',1,'Tgstation.Server.Client.Components.DreamMakerClient.Compile()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a548a8f4daed30ab49f77a23b1c125078',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Compile()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a6e1e847a00e2387bf4bd43522c64ddd0',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da3de9387fc230ce74214446e58c4fefde',1,'Tgstation.Server.Api.Rights.Compile()']]], + ['compilecancelled_429',['CompileCancelled',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aac05aa67f7da74bd470018801530d560',1,'Tgstation::Server::Host::Components::Events']]], + ['compilecomplete_430',['CompileComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a32558503790304b9e722550831898633',1,'Tgstation::Server::Host::Components::Events']]], + ['compilefailure_431',['CompileFailure',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aaef5e71e3b260e64d5349d6e04e7a0bd',1,'Tgstation::Server::Host::Components::Events']]], + ['compilejob_432',['CompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.Internal.CompileJob'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Host.Models.CompileJob'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.CompileJob'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a7b45683d68a5cdfe0f19c7524d6b8863',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#aa70dea09833e84fe4b5fead42a9067a6',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a53eeda8cf6068e5865575b8df220e44a',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#ae2b375dacb3108f70f05d66a4b659dbc',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a8db55041002deed3d1abfbc1d16db7eb',1,'Tgstation.Server.Host.Components.Session.ISessionController.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a5f6e66519f87716705d220c627f8da',1,'Tgstation.Server.Host.Components.Session.SessionController.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a02ee6eb05943c4bbfed4aca64692fa80',1,'Tgstation.Server.Host.Models.ReattachInformation.CompileJob()']]], + ['compilejob_2ecs_433',['CompileJob.cs',['../_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html',1,'(Global Namespace)']]], + ['compilejobconsumer_434',['compileJobConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab01d9cb0fcd270eea9ec47a4e0684f4a',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['compilejobid_435',['CompileJobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#af8d154d1976539dbca0a4dc0bc597366',1,'Tgstation::Server::Host::Models::ReattachInformation']]], + ['compilejobs_436',['CompileJobs',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#afa502454260e6df15dbdaf7ef487f897',1,'Tgstation.Server.Api.Models.RevisionInformation.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa72d8f36af92d91080acf1af4d971420',1,'Tgstation.Server.Host.Database.DatabaseContext.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#acba8ecba062c4f42b79e7e66dc0028b6',1,'Tgstation.Server.Host.Database.DatabaseContext.CompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9f93949abe42bddbbf9134946c7f5be5',1,'Tgstation.Server.Host.Database.IDatabaseContext.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ad4106b5ca8b17dc7ff82ceb681a94b2c',1,'Tgstation.Server.Host.Models.RevisionInformation.CompileJobs()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7c63725727d75ca94b3b395198026acb',1,'Tgstation.Server.Api.Rights.CompileJobs()']]], + ['compilejobscollection_437',['compileJobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac8e8b25dfc7e50721f457a5cdbe5f1c5',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['compilestart_438',['CompileStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7abec1242b376ffdd3ca51b65b2106e843',1,'Tgstation::Server::Host::Components::Events']]], + ['concatpath_439',['ConcatPath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#abd68930642dbf40df272b35dc438312e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ConcatPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a286f4eb5c679683b7e519847a6c3574e',1,'Tgstation.Server.Host.IO.IIOManager.ConcatPath()']]], + ['configuration_440',['Configuration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a8aaca6b84ee519e26c8351c2b5929c18',1,'Tgstation.Server.Api.Routes.Configuration()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a16626c6a13892319d3f24e0c57dd9394',1,'Tgstation.Server.Client.Components.IInstanceClient.Configuration()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a32339ec5eab6e79b673bed2aca4dbceb',1,'Tgstation.Server.Client.Components.InstanceClient.Configuration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#af59817cc9aa5a4ca776200c7c0b9206c',1,'Tgstation.Server.Host.Components.IInstanceCore.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a49c2073606768819b91a401c21fe3555',1,'Tgstation.Server.Host.Components.Instance.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ad987739dcc836bd5861d4dd3c868515e',1,'Tgstation.Server.Host.Components.InstanceWrapper.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#abecd5329f7937e822959734f3c5272d1',1,'Tgstation.Server.Host.Setup.SetupApplication.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae5932bea40716ebcc3145ccfd2c48aa3',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2fe7ecccab0b5b1be9fdda8cbf097d9b',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a50e81e8ba4fb2abd36df79dfc922b3d0',1,'Tgstation.Server.Host.Components.Events.EventConsumer.configuration()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a254f642527b45bc260048e30704edb39',1,'Tgstation.Server.Api.Rights.Configuration()']]], + ['configuration_2ecs_441',['Configuration.cs',['../_configuration_8cs.html',1,'']]], + ['configurationclient_442',['ConfigurationClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html',1,'Tgstation.Server.Client.Components.ConfigurationClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#aed092908af675dfdec16528492815010',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationClient()']]], + ['configurationclient_2ecs_443',['ConfigurationClient.cs',['../_configuration_client_8cs.html',1,'']]], + ['configurationcontroller_444',['ConfigurationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html',1,'Tgstation.Server.Host.Controllers.ConfigurationController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a9ed3e9d430a0a4dbe5b2a3e3298089ca',1,'Tgstation.Server.Host.Controllers.ConfigurationController.ConfigurationController()']]], + ['configurationcontroller_2ecs_445',['ConfigurationController.cs',['../_configuration_controller_8cs.html',1,'']]], + ['configurationdirectorynotempty_446',['ConfigurationDirectoryNotEmpty',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab6aac8a71757f5fdf164188595806e72',1,'Tgstation::Server::Api::Models']]], + ['configurationfile_447',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html',1,'Tgstation.Server.Api.Models.ConfigurationFile'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa983574bbb6d05042ad2f96d30ffa824',1,'Tgstation.Server.Api.Routes.ConfigurationFile()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a60002e47d604a7189fea03b3a4720787',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, directory, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a804b1608adc364d167bf1224e4490642',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, file ?? throw new ArgumentNullException(nameof(file)), instance.Id, cancellationToken)']]], + ['configurationfile_2ecs_448',['ConfigurationFile.cs',['../_configuration_file_8cs.html',1,'']]], + ['configurationfileupdated_449',['ConfigurationFileUpdated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5c0d6072f109fa92c30019b66bbceeaf',1,'Tgstation::Server::Api::Models']]], + ['configurationrights_450',['ConfigurationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ae62017841e15071fb5d7652fc60d159a',1,'Tgstation.Server.Api.Models.InstanceUser.ConfigurationRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0c',1,'Tgstation.Server.Api.Rights.ConfigurationRights()']]], + ['configurationrights_2ecs_451',['ConfigurationRights.cs',['../_configuration_rights_8cs.html',1,'']]], + ['configurationtype_452',['ConfigurationType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6183efad1d4344d06e59ea8bc2072a19',1,'Tgstation.Server.Api.Models.Instance.ConfigurationType()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440',1,'Tgstation.Server.Api.Models.ConfigurationType()']]], + ['configurationtype_2ecs_453',['ConfigurationType.cs',['../_configuration_type_8cs.html',1,'']]], + ['configure_454',['Configure',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#aaba3eb445c2c2c0f8a11d150096b7457',1,'Tgstation.Server.Host.Service.Program.Configure()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2c2b516c6696a0390b37c4983a52a235',1,'Tgstation.Server.Host.Core.Application.Configure()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a58ef7bff279e5663448d9c5e9fa81e89',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Configure()']]], + ['configurecontrolpanel_455',['ConfigureControlPanel',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a4395ef504696978cdc743b50121456f7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configuredatabase_456',['ConfigureDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a1deda504d8ba5d227a51c83564b72ca1',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configuregeneral_457',['ConfigureGeneral',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae6f4a68f9543e70ef9b01c4f1088aa1b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configurehostedservice_458',['ConfigureHostedService',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a1d6e849d4a69fe90f23f60aaeb2bc960',1,'Tgstation.Server.Host.Core.Application.ConfigureHostedService()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a03097b9f375ae721b318fc2aaf970b9b',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureHostedService()']]], + ['configurelogging_459',['ConfigureLogging',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a95d031c71d5219c0d2327191b220311b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configureservices_460',['ConfigureServices',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2b610f9600937f97857f303dcfe41823',1,'Tgstation.Server.Host.Core.Application.ConfigureServices()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a1225384501e2dfd8dd509a1f96ea2fa6',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureServices()']]], + ['configurewith_461',['ConfigureWith',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a7f6de62bd38ebbe07636d0157900a38e',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a3d07b96c19d7b70b69c4e8d946b7cced',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#aa805cd8652307d8a0a2995d745af8ace',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#ac5686cbb48dd4d5fae19a104daa4e6a9',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext.ConfigureWith()']]], + ['configversion_462',['ConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a5625c8cc148d7d33019735915d440ec7',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['conflictexception_463',['ConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html',1,'Tgstation.Server.Client.ConflictException'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a71a13b722965b9a2e3b0b0b667d59b54',1,'Tgstation.Server.Client.ConflictException.ConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a6f35d432dfaab891a7652e2fc636c258',1,'Tgstation.Server.Client.ConflictException.ConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a5577bc93af2abe799a86b0c383902ea2',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a08028d33db9e62104c77df9ef3f673af',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message, Exception innerException)']]], + ['conflictexception_2ecs_464',['ConflictException.cs',['../_conflict_exception_8cs.html',1,'']]], + ['connect_465',['Connect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#aaa5c800b8dc532cb596ebd075e14e48e',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6329a704d61a9d05333408279b044d50',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a96305dc74c77224130e4067f19b59407',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connect()']]], + ['connected_466',['Connected',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac2744da20824177724b971eb20a6d5a0',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connected()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acc07a6bfb2fbb35243aa1e147d92dd87',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa22564e0346747e2c00dfcab7a48141c',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afab0213888c139dbb1786d7f5c0d8680',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connected()']]], + ['connectionname_467',['ConnectionName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a0d68ca440d98dc89941ef3c5781f2f61',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], + ['connectionstring_468',['ConnectionString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a7875f395e72be4fada0a0ed86282156f',1,'Tgstation.Server.Api.Models.Internal.ChatBot.ConnectionString()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a53a14b4a89de73b8ea223804c4aea365',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ConnectionString()']]], + ['connectionsupdated_469',['connectionsUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a179b0d01333a267410199e524601dc84',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['console_470',['Console',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html',1,'Tgstation.Server.Host.IO.Console'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aba874ec794084e164acb19d73c7c1dee',1,'Tgstation.Server.Host.IO.Console.Console()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aadeb44bb71d804e15c6a6bd0c3131bd7',1,'Tgstation.Server.Host.Setup.SetupWizard.console()']]], + ['console_2ecs_471',['Console.cs',['../_console_8cs.html',1,'']]], + ['content_472',['Content',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html#a5f8416b44a3708f47e438ea192b9b7ed',1,'Tgstation.Server.Api.Models.Internal.RawData.Content()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a3a4a159c1b7b4ff0a163f4bb29ea4844',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.Content()']]], + ['context_473',['Context',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#ad53ba750f37b4026388b3ece25768290',1,'Tgstation::Server::Host::Components::Chat::Providers::Message']]], + ['continue_474',['Continue',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812aa0bfb8e59e6c13fc8d990781f77694fe',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['controller_475',['Controller',['../class_controller.html',1,'']]], + ['controllerdisposesemaphore_476',['controllerDisposeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5f9cfb67111bbc5ec1d954e4ed4bf913',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['controlpanelconfiguration_477',['ControlPanelConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html',1,'Tgstation.Server.Host.Configuration.ControlPanelConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a81d7f216e77a45eed438ee3e88d0677c',1,'Tgstation.Server.Host.Controllers.HomeController.controlPanelConfiguration()']]], + ['controlpanelconfiguration_2ecs_478',['ControlPanelConfiguration.cs',['../_control_panel_configuration_8cs.html',1,'']]], + ['convertapichatchannel_479',['ConvertApiChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a30fce4a18499c3c89b4b153b9805ce85',1,'Tgstation::Server::Host::Controllers::ChatController']]], + ['copydirectory_480',['CopyDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac24671c0d1ce1f6787304c5f4bcccf7c',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aab4ec78e2b2d66ad39642ed92a66250c',1,'Tgstation.Server.Host.IO.IIOManager.CopyDirectory()']]], + ['copydirectoryimpl_481',['CopyDirectoryImpl',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a32ca1367eadecb45e671aa509f3ce058',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['copydmfilesto_482',['CopyDMFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab1a680d6faed5978ce9cd0b7e4d9701b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CopyDMFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a0b26ca1668b405574bd7662965c7ebb7',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CopyDMFilesTo()']]], + ['copyfile_483',['CopyFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac3523b10f3affcd57a6e94ba5297e8fb',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aff4f7354934126bbc9516b04bc882ef3',1,'Tgstation.Server.Host.IO.IIOManager.CopyFile()']]], + ['copyto_484',['CopyTo',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ada48f9615977d839874139999fdd69ef',1,'Tgstation.Server.Host.Components.Repository.IRepository.CopyTo()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a09369ceb3b7c2c2562d546b9daebd42b',1,'Tgstation.Server.Host.Components.Repository.Repository.CopyTo()']]], + ['create_485',['Create',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2683730461ef575dbaab18fb01a10162',1,'Tgstation.Server.Client.Components.ChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a781f11da2fc0bc852e57544872e2f47e',1,'Tgstation.Server.Client.Components.IChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a8f315515848f8b7397e71255fa1055c9',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#af62bfee4e1cdca8a216bdade995a57b7',1,'Tgstation.Server.Client.Components.InstanceUserClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#a60a4f54b4b6cb61d3c0054b9b7a04604',1,'Tgstation.Server.Client.IUsersClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a68a9c4aea0859ef158ef8146e22d0fd6',1,'Tgstation.Server.Client.UsersClient.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a38a75a3f14b37983b1e5a76f2186e0ad',1,'Tgstation.Server.Host.Controllers.ChatController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a111121fa22f2648803f8f890c8a6305b',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a5fe34841f9b648b042096e51dba7be4e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a7231f4980bd98c9a033e805c90e92c95',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8712ba6603139064d68520e16c076901',1,'Tgstation.Server.Host.Controllers.InstanceController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a3a26d7b7a1b8c8c8c0ade33893f24b09',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a30a5b00625419334b1d51ae4a51aebda',1,'Tgstation.Server.Host.Controllers.RepositoryController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a99457477cad4b6adcedbba47d939f005',1,'Tgstation.Server.Host.Controllers.UserController.Create()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()']]], + ['create_3c_20tbody_2c_20tresult_20_3e_486',['Create< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a73701939b0af1ee33b46c931829200fc',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ab5fc54acd429e50a254fccaf23e52299',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0448d3803d9f45d2e67295cef2096174',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a726cb2cf80d2499c3e6ff8ae67bbc0ed',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], + ['create_3c_20tresult_20_3e_487',['Create< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a5c7201add0fadb2be2851aa749a0c3c6',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a70d6c289a7e07426ff72c36eb2502819',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ac4bbf7c3cc9ff87beda2b13f018a25f5',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a16d32f00e49bed861bcbd1c6c9325727',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], + ['createapiclient_488',['CreateApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html#a953819c1f71266c5d8657a8222afe2d1',1,'Tgstation.Server.Client.ApiClientFactory.CreateApiClient()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html#a26c11e29c0d4c3e2bded15672ecd4cf3',1,'Tgstation.Server.Client.IApiClientFactory.CreateApiClient()']]], + ['createauthenticationcontext_489',['CreateAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a2d25109494770497244333f385bd5d7e',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CreateAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6ed924f10ee271ccc8d2ea840c095e23',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CreateAuthenticationContext()']]], + ['createbaseclient_490',['CreateBaseClient',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a0d2033f1157b71089477c1383ed77e09',1,'Tgstation::Server::Host::Core::GitHubClientFactory']]], + ['createchatmanager_491',['CreateChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#ab7cb1f1ac63ad00a080ec4cb65b03ac6',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.CreateChatManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html#a2da119ff14c5553f07a8e0c3b3d43755',1,'Tgstation.Server.Host.Components.Chat.IChatManagerFactory.CreateChatManager()']]], + ['createclient_492',['CreateClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a89d0d8409ead36832135461bb544ad09',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aad7c5289f672bb2598084276d583a1f9',1,'Tgstation.Server.Client.InstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#ab32f8e03603c878ebc0affdc144facd0',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#aa2f86d385b449ccf9b4d9011c0479e34',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient(string accessToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9043597fb0563f7fb0ed751819aa7525',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9b084c659f289f370933fe1b53e55ce9',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient(string accessToken)']]], + ['createconnection_493',['CreateConnection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html#abce25a599c920bf792f33fcc352f99b3',1,'Tgstation.Server.Host.Database.DatabaseConnectionFactory.CreateConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html#a0f383d25a87d76938ddafd924c5fa517',1,'Tgstation.Server.Host.Database.IDatabaseConnectionFactory.CreateConnection()']]], + ['createconnectionstringbuilder_494',['CreateConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#af2e5b18a1f41b8c75c8504f745db9d92',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['created_495',['Created',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae0fcee33c7b7341bc3bf0c0e66e1ebf4',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['createdat_496',['CreatedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ab0d92bcf1b5b9afbb0f7ab1e5952acff',1,'Tgstation::Server::Api::Models::Internal::User']]], + ['createdatabasecontextoptions_3c_20tdatabasecontext_20_3e_497',['CreateDatabaseContextOptions< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html#a45ce56300f6ce4d136326452c493353c',1,'Tgstation::Server::Host::Database::Design::DesignTimeDbContextFactoryHelpers']]], + ['createdbcontext_498',['CreateDbContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html#a8c2173be2b6fa289a8bfcf8da59de797',1,'Tgstation.Server.Host.Database.Design.MySqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html#a36ff3f3ef52311c0fa45971cc3156bb1',1,'Tgstation.Server.Host.Database.Design.PostgresSqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html#a88c77d7409d55231d096416130531e93',1,'Tgstation.Server.Host.Database.Design.SqliteDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html#aff56794443746e5d8d0c08389d7cd8a5',1,'Tgstation.Server.Host.Database.Design.SqlServerDesignTimeDbContextFactory.CreateDbContext()']]], + ['createdby_499',['CreatedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#af535560432c40c4da118e84e810c5cf0',1,'Tgstation.Server.Api.Models.User.CreatedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8f1821d1c00f73eff7324bf8fc9c1c7e',1,'Tgstation.Server.Host.Models.User.CreatedBy()']]], + ['createdefaultinstance_500',['CreateDefaultInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8bf721ab3f71056d9e5556b1b6c438de',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['createdefaultserverfactory_501',['CreateDefaultServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a6720ad4775ff4751c0d2e00b36f0c31f',1,'Tgstation::Server::Host::Core::Application']]], + ['createdirectory_502',['CreateDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#ad3f4cf594c24523ba3717b926843c078',1,'Tgstation.Server.Client.Components.ConfigurationClient.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab7b97489e1cb6307e417f6ecc22b9260',1,'Tgstation.Server.Client.Components.IConfigurationClient.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9e6d3a7af0e253142f6ea1fe932f6002',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aac9d5ed7fad37fc5f29295f4a3445449',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a35975e796c564e8b5dd5d4a601d0c2e3',1,'Tgstation.Server.Host.IO.DefaultIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a69aa1b9dbeb6af3744e568095c4376e7',1,'Tgstation.Server.Host.IO.IIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a87b99f131bf6b48d725561414d4ddfcb',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a595b31e7065ee0d3431903fa0ac55156',1,'Tgstation.Server.Host.IO.SynchronousIOManager.CreateDirectory()']]], + ['createdump_503',['CreateDump',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aaa1081740725a60d8a78b5db2143f304',1,'Tgstation.Server.Api.Models.DreamDaemon.CreateDump()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ae3caf6b9a60ad0a3dc2f9019865f0a81',1,'Tgstation.Server.Client.Components.DreamDaemonClient.CreateDump()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a48394b257252091cbcd25caa49891fa5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27cbf6cebc4f18d796bc0e0a77c5d755',1,'Tgstation.Server.Host.Components.Session.SessionController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a67f97ee77ae892e162173be45d7522f7',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad8489bee0d96bcaf87eba19adee17149',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a9131baefd94f4bf123ef1901cb37565e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#acf8d9dfdf49269e33dd78e634b741620',1,'Tgstation.Server.Host.System.IProcessBase.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad576ba0ef666881ed6059180a0522a09',1,'Tgstation.Server.Host.System.IProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#adb55624c50c7c2ac7fedb4c64737b0db',1,'Tgstation.Server.Host.System.PosixProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#add49679c161683221749ee9962b98f49',1,'Tgstation.Server.Host.System.Process.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a1f0c6b3671ac06b34d885c295d1971ee',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.CreateDump()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a14e9adc4994501d29b832109c5a7f14b',1,'Tgstation.Server.Api.Rights.CreateDump()']]], + ['createdusers_504',['CreatedUsers',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#af7088656a7ce8f84c103abef89a0ac52',1,'Tgstation::Server::Host::Models::User']]], + ['createfromexistinghandle_505',['CreateFromExistingHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ab8ce5d8354aea3fec89a1d7687acb877',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['createfromlogin_506',['CreateFromLogin',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#a092382c5ce194b7f7cade97451a1e504',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromLogin()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a9002a789598c8fab690514d9dc9cfbcf',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromLogin()']]], + ['createfrompath_507',['CreateFromPath',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a855673b50e2639242bea6d6770c39773',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateFromPath()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#aff825ad3b4e4f4de83285d3cf2281e7b',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateFromPath()']]], + ['createfromtoken_508',['CreateFromToken',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#ada7a9fcb461c62ddb534a57e1d3791c7',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromToken()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#abc81fe410ef4bbf999e7531505cac7e1',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromToken()']]], + ['creategithubdeployments_509',['CreateGitHubDeployments',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a4edd45186b8f63e5c4682599e4476df5',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['createinmemory_510',['CreateInMemory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#af08df14e3a5e9e63b14a6d65cc47abd6',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateInMemory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ad04e55b87e2ea16c68210ce73a80cebd',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateInMemory()']]], + ['createinstance_511',['CreateInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html#af404cbb63284897baafdeb6316d45293',1,'Tgstation.Server.Host.Components.IInstanceFactory.CreateInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a009ffff68f9d96d360cde0fefe4c8b5e',1,'Tgstation.Server.Host.Components.InstanceFactory.CreateInstance()']]], + ['createorattach_512',['CreateOrAttach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#af937af9989159b8d9336cffa4f3b578a',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateOrAttach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a1a1428f9a34d1cec0fa1bc3fe6b8a3a8',1,'Tgstation.Server.Client.InstanceManagerClient.CreateOrAttach()']]], + ['createprovider_513',['CreateProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html#a4250fc0dc09258c391507fbf29977758',1,'Tgstation.Server.Host.Components.Chat.Providers.IProviderFactory.CreateProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a52f360a24dd9085562ee7137ed0ea28d',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.CreateProvider()']]], + ['createruntimeinformation_514',['CreateRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a04f638e9803b002f5242947ec6491f6b',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['createserver_515',['CreateServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a063542cb78195a507feb3c0e6921b01b',1,'Tgstation.Server.Host.IServerFactory.CreateServer()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a4234b15ede546c23f9b5d35bc5c8749b',1,'Tgstation.Server.Host.ServerFactory.CreateServer()']]], + ['createsymboliclink_516',['CreateSymbolicLink',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html#a35bd8c53ef36c4a655e827750a40699c',1,'Tgstation.Server.Host.IO.ISymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html#ac487bf33d9a5821fb30bfd7b74915fbe',1,'Tgstation.Server.Host.IO.PosixSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html#a87a0b1b31b48f65e53e4b3b6f476a2c0',1,'Tgstation.Server.Host.IO.WindowsSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a668c437c860fb2eafcee04a1a2a613c9',1,'Tgstation.Server.Host.NativeMethods.CreateSymbolicLink()']]], + ['createsymboliclinkflags_517',['CreateSymbolicLinkFlags',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556',1,'Tgstation::Server::Host::NativeMethods']]], + ['createsystemidentity_518',['CreateSystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#adaf274d215700bf692b1c3964ff32103',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6dd83aca91cf43c7236afd22dc512b0a',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a8e2c85e4ed45d68065f86749afa4651d',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a4621a750f1d0592586d26323af215d93',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a5c140611a428b663c3a3f76623f825c2',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a24c82be81ba5cda6c975a931e8bfe6f1',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)']]], + ['createtoken_519',['CreateToken',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afe4c43b884ebd0e9c4b60e39d4e1c162',1,'Tgstation.Server.Host.Controllers.HomeController.CreateToken()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a57edffc2d8c63352fbf4ebd0b5991b45',1,'Tgstation.Server.Host.Security.ITokenFactory.CreateToken()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a17610f96f7e87136d957e8ba3c1f5d4a',1,'Tgstation.Server.Host.Security.TokenFactory.CreateToken()']]], + ['createtopicclient_520',['CreateTopicClient',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html#a950569e357f1d6e51722d4894792c555',1,'Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a4e452e6c92e14627b7194cd33d11b6ed',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.CreateTopicClient()']]], + ['createtrackingcontext_521',['CreateTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aadf2ea0ffdbf567ac24cc5c45f6f66b6',1,'Tgstation.Server.Host.Components.Chat.ChatManager.CreateTrackingContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a5b3b4e9ab7d03bd8020ee9dfa9bebbbe',1,'Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext()']]], + ['createusers_522',['CreateUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a90212f132b4b808fe81b7022759031d9',1,'Tgstation::Server::Api::Rights']]], + ['createwatchdog_523',['CreateWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html#a5a7c5f02df9f603fd21cd61fc3ebaf3e',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#abadff6c7e09b1dca214723704bd82de4',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a92e3fcfa39c13aae369b838d18fd00d4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a8e2e376b000fa966434d010d2c9946e3',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.CreateWatchdog()'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html#a4610f9c60c131dab81a56aa23abdfbb8',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html#ae25446ee2a7bb19d9208695d18621914',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory.CreateWatchdog()']]], + ['credentialsprovider_524',['credentialsProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afdb8ee82eed9e1b0251d71af2c3ff612',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['cryptographysuite_525',['CryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html',1,'Tgstation.Server.Host.Security.CryptographySuite'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae61c8c28bfce67853a5b1acbcd095533',1,'Tgstation.Server.Host.Components.InstanceFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a483ed37a018bd66106dbed87ce8adc13',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78651298906fc1500952310c49c96e06',1,'Tgstation.Server.Host.Controllers.HomeController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#aba1ed8b3befb54640af05c3694eeb278',1,'Tgstation.Server.Host.Controllers.UserController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a88f644df987dce53ffa2e26a763f5974',1,'Tgstation.Server.Host.Database.DatabaseSeeder.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a57c7a5016e948842f6d52697f806614b',1,'Tgstation.Server.Host.Security.CryptographySuite.CryptographySuite()']]], + ['cryptographysuite_2ecs_526',['CryptographySuite.cs',['../_cryptography_suite_8cs.html',1,'']]], + ['currentallowwebclient_527',['CurrentAllowWebclient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a5ec4c59c00dccb5e0b87e4bf2c2d9566',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['currentauthenticationcontext_528',['CurrentAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a37a564f1b33b53dc2af9fb751b5a7e9b',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CurrentAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6c1be0fe695cf57fa21674373868f709',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CurrentAuthenticationContext()']]], + ['currentchatcallback_529',['currentChatCallback',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa8260c1a7b05630b5411ded96c3648cd',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['currentconfigversion_530',['CurrentConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a11cacc87b093badf8b45cc9fd858df54',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['currentdirectory_531',['CurrentDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a984a32ee93a073036f63d543ad9a6cdd',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['currentdreammakeroutput_532',['currentDreamMakerOutput',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0e3523b8ef4f0d5c93f108c0de792977',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['currentport_533',['CurrentPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a3740443b5c26f64b1b4f516399219040',1,'Tgstation.Server.Api.Models.DreamDaemon.CurrentPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a6dacbc68c2a5f471a5540afc3150ddc7',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CurrentPort()']]], + ['currentsecurity_534',['CurrentSecurity',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aea8a6590efc3c90d0e57f532902a149e',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['customcommand_535',['CustomCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['customcommand_2ecs_536',['CustomCommand.cs',['../_custom_command_8cs.html',1,'']]], + ['customcommandhandler_537',['customCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a32ce1266bccc40aebf2f9c284ed6e69a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.customCommandHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a198bebe94c736431862c137cbb3d0ea8',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.customCommandHandler()']]], + ['customcommands_538',['CustomCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#abfda6bc1a90add9d6bff98456cf550ec',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.CustomCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a09fedbbe7a7681b0e28fe47158af766d',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a86c0726e12e80ae3c6f2b3742d3a229c',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a32fa34e507879cfa556254e8ec7f1fb9',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicResponse.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a0dfced9917f1bf96b1b46f511e643709',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.customCommands()']]], + ['customtokensigningkeybase64_539',['CustomTokenSigningKeyBase64',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a12d01d2e2c457d476ea7f6d2145b3218',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]] ]; diff --git a/search/all_4.html b/search/all_4.html index aa2c933f8a..cbf64ec53c 100644 --- a/search/all_4.html +++ b/search/all_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_4.js b/search/all_4.js index 4d704dbe79..d95fb727e7 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -1,167 +1,173 @@ var searchData= [ - ['databasecollection_523',['DatabaseCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html',1,'Tgstation.Server.Host.Database.DatabaseCollection< TModel >'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#ab45237330b1543809ec730ad8a5ba3af',1,'Tgstation.Server.Host.Database.DatabaseCollection.DatabaseCollection()']]], - ['databasecollection_2ecs_524',['DatabaseCollection.cs',['../_database_collection_8cs.html',1,'']]], - ['databasecollectionextensions_525',['DatabaseCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['databasecollectionextensions_2ecs_526',['DatabaseCollectionExtensions.cs',['../_database_collection_extensions_8cs.html',1,'']]], - ['databaseconfiguration_527',['DatabaseConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a9563b31eb4a36767bccf9cf0f347669c',1,'Tgstation.Server.Host.Setup.IPostSetupServices.DatabaseConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3c7b43c9d60c8b6cb97c7af1926eec28',1,'Tgstation.Server.Host.Setup.PostSetupServices.DatabaseConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a6c8e101a216a05b59a646260218b2467',1,'Tgstation.Server.Host.Database.DatabaseSeeder.databaseConfiguration()']]], - ['databaseconfiguration_2ecs_528',['DatabaseConfiguration.cs',['../_database_configuration_8cs.html',1,'']]], - ['databaseconfigurationoptions_529',['databaseConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#acd44c110eaede1bb441cd542a00200a6',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], - ['databaseconnectionfactory_530',['DatabaseConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], - ['databaseconnectionfactory_2ecs_531',['DatabaseConnectionFactory.cs',['../_database_connection_factory_8cs.html',1,'']]], - ['databasecontext_532',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html',1,'Tgstation.Server.Host.Database.DatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a4f3486b694a62f17ead5bfe84d20d8e0',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.databaseContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ab687e0fc0cb712708297c0c2b43ca849',1,'Tgstation.Server.Host.Controllers.ApiController.DatabaseContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a816a6a136cb720c30a89568a0d071a5b',1,'Tgstation.Server.Host.Database.DatabaseContext.DatabaseContext()']]], - ['databasecontext_2ecs_533',['DatabaseContext.cs',['../_database_context_8cs.html',1,'']]], - ['databasecontextfactory_534',['DatabaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html',1,'Tgstation.Server.Host.Database.DatabaseContextFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#ac543a4e3bf61cec7ef0cee9abab7d0e4',1,'Tgstation.Server.Host.Database.DatabaseContextFactory.DatabaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#abbd5571bc7db746a0f12add2f39e67de',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a092a4f6583f2101fbef0ec6caf5c41a0',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ad0b797ad2e348db517f20393acacdb65',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b570e9e9d997c7b93842a93f1a362d6',1,'Tgstation.Server.Host.Components.InstanceFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ab5c8e78bdae6eb6eb2ed289563c639cc',1,'Tgstation.Server.Host.Components.InstanceManager.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a2227915dc11711ab8eac49598f9bda08',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a3758020992c3c8e37a25439bc067e365',1,'Tgstation.Server.Host.Jobs.JobManager.databaseContextFactory()']]], - ['databasecontextfactory_2ecs_535',['DatabaseContextFactory.cs',['../_database_context_factory_8cs.html',1,'']]], - ['databaseintegrityconflict_536',['DatabaseIntegrityConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac9241b2a69ac456afa664e7c47ac9b39',1,'Tgstation::Server::Api::Models']]], - ['databaselogger_537',['databaseLogger',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a2bc9f345004fe0cd972d9275d771b948',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['databaseseeder_538',['DatabaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html',1,'Tgstation.Server.Host.Database.DatabaseSeeder'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#af3473c586a7c835b7708d18354f4d260',1,'Tgstation.Server.Host.Components.InstanceManager.databaseSeeder()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aadb06f4dafe423e9545a4e123c5e8abd',1,'Tgstation.Server.Host.Database.DatabaseSeeder.DatabaseSeeder()']]], - ['databaseseeder_2ecs_539',['DatabaseSeeder.cs',['../_database_seeder_8cs.html',1,'']]], - ['databasetype_540',['DatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#adab83eaad53afabdb2f7b43c23ece38a',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.DatabaseType()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617c',1,'Tgstation.Server.Host.Configuration.DatabaseType()']]], - ['databasetype_2ecs_541',['DatabaseType.cs',['../_database_type_8cs.html',1,'']]], - ['datetimeoffsetextensions_542',['DateTimeOffsetExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['datetimeoffsetextensions_2ecs_543',['DateTimeOffsetExtensions.cs',['../_date_time_offset_extensions_8cs.html',1,'']]], - ['dbconnectionfactory_544',['dbConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa4ea86a1328b845cac9d0fbeb15167fb',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['dbcontext_545',['DbContext',['../class_db_context.html',1,'']]], - ['dbset_546',['dbSet',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9ded40bd536adb9602f0c3733409eef3',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['debug_547',['Debug',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a938d576ceba93bf3cb1a32ae1dcccc52',1,'Tgstation::Server::Host::Service::Program']]], - ['defaultadminpassword_548',['DefaultAdminPassword',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a6d73f12df63e1cea9b3d011da9d9a14a',1,'Tgstation::Server::Api::Models::User']]], - ['defaultapiport_549',['DefaultApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a34554b3c3ec4b265081f7af8b8d99715',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultbuffersize_550',['DefaultBufferSize',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8d302b2be6862b23b9a18a9412fc7fc9',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['defaultbyondtopictimeout_551',['DefaultByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a9f825b6fe4bb53fd2c8317b271b57157',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultchannellimit_552',['DefaultChannelLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a9f693077cc6b7bca387dd46a08014c90',1,'Tgstation::Server::Host::Models::ChatBot']]], - ['defaultchatbotlimit_553',['DefaultChatBotLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6e95c489b01ba0ca06a8a803e2df9b9f',1,'Tgstation::Server::Host::Models::Instance']]], - ['defaultcommitteremail_554',['DefaultCommitterEmail',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1e8406665338bf41e4517f0680336bad',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['defaultcommittername_555',['DefaultCommitterName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#acfbf572f6b740f5df77fcf1af075b622',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['defaultgithubrepositoryid_556',['DefaultGitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f4f5cb3301033fd4dfebde47baf9c5a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['defaultgittagprefix_557',['DefaultGitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#ae004e4379b32596669db26f1bdffef84',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['defaultinstancelimit_558',['DefaultInstanceLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#aa4150fdf328588da7e2fdda649311d1a',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultiomanager_559',['DefaultIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['defaultiomanager_2ecs_560',['DefaultIOManager.cs',['../_default_i_o_manager_8cs.html',1,'']]], - ['defaultloglevel_561',['DefaultLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a20cad976d13ebead44836c2c73546eb1',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['defaultmicrosoftloglevel_562',['DefaultMicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a2ed7c15d2389baf4cb4aea475a33ee43',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['defaultminimumpasswordlength_563',['DefaultMinimumPasswordLength',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a2f4d695a6363f6d92a8adb8f7860e809',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultrestarttimeout_564',['DefaultRestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a8aada49cbc40077cf605dcb0ec00d259',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultupdatepackageassetname_565',['DefaultUpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2414ab0c1cbd67d474c6484d065ec90a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['defaultuserlimit_566',['DefaultUserLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a72a9ee77858ff9b03b66ffe774eb0931',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['delay_567',['Delay',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html#a28ea9fb35caed002bf15a67b03d5e0c7',1,'Tgstation.Server.Host.Core.AsyncDelayer.Delay()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html#afab931ac159bc999fee1e7eda917c7d6',1,'Tgstation.Server.Host.Core.IAsyncDelayer.Delay()']]], - ['delayedrestart_568',['DelayedRestart',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a0e6aa7a3fef294ba456c4aa38d7bc9bf',1,'Tgstation::Server::Api::Models']]], - ['delete_569',['Delete',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a79097c50707454b30e031a6cf53c1cca',1,'Tgstation.Server.Client.ApiClient.Delete(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ac4676e1e4197c8b3177738388a70db2e',1,'Tgstation.Server.Client.ApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af21f7f62a34e6486d979bf56f93ab522',1,'Tgstation.Server.Client.Components.ChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a9ce8f7309dd82e761f821939ad877036',1,'Tgstation.Server.Client.Components.IChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a1e57e5258ee0d519916cbf6e8452de12',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a66319c3cf70b1e17e7d03d00113680ef',1,'Tgstation.Server.Client.Components.InstanceUserClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a542817cc102394601ab78412d37f82ba',1,'Tgstation.Server.Client.Components.IRepositoryClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a53bf505d9df01bc1bccec11d00e44733',1,'Tgstation.Server.Client.Components.RepositoryClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a6954d79598a2d4498c99e201481dc6b1',1,'Tgstation.Server.Client.IApiClient.Delete(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a64cf5a4f7ea0ce4a99164906fcdfd19a',1,'Tgstation.Server.Client.IApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aacf3549e22bb38699d3226a156e3e0dc',1,'Tgstation.Server.Host.Controllers.AdministrationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a5c9497452013644a7b8b6d4ee09a65a3',1,'Tgstation.Server.Host.Controllers.ChatController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a70a6018d637cb3eb379b8949a4a754a8',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a42cbbc5eb5facf44f1d0df46664824f6',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a14134d386ac311c0f7a76b7ef312a2d6',1,'Tgstation.Server.Host.Controllers.InstanceController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a90a765f46e182acc2ce419f8787fcfa5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a1442deb8a2f3296b5125bb385aa3caf2',1,'Tgstation.Server.Host.Controllers.JobController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad5ffc737feb4385afff13146e336a910',1,'Tgstation.Server.Host.Controllers.RepositoryController.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0caf2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()']]], - ['delete_3c_20tbody_20_3e_570',['Delete< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a16602577e0ea7e639491f47873aa07c2',1,'Tgstation.Server.Client.ApiClient.Delete< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a59cd6ab3e15c7b5e35268a68e381dd5d',1,'Tgstation.Server.Client.IApiClient.Delete< TBody >()']]], - ['delete_3c_20tresult_20_3e_571',['Delete< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afa6dc92d38b59a7a6a2e44126bb5ad50',1,'Tgstation.Server.Client.ApiClient.Delete< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a70767f3f66d4486d4025835ece18d9ef',1,'Tgstation.Server.Client.IApiClient.Delete< TResult >()']]], - ['deleteconnection_572',['DeleteConnection',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae8f42e9fc59f0aa9d70de26a4b6600b7',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DeleteConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1593d7d3f8d4b3efe3412d6c96f6e411',1,'Tgstation.Server.Host.Components.Chat.IChatManager.DeleteConnection()']]], - ['deletedirectory_573',['DeleteDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a79f673d1a6c8868b648c0c3393e34d27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a38c2d45d551a853c4a1545dcf1996063',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a1c0202582bb5f80ba212bf7cceb2bd6d',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad3e0dda4b7fbad4c77f48ba3b2681dc7',1,'Tgstation.Server.Host.IO.IIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad7db8df684e3820376d161b6ac89804f',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a238b441b58a9da1b2e2821f203b65deb',1,'Tgstation.Server.Host.IO.SynchronousIOManager.DeleteDirectory()']]], - ['deleteemptydirectory_574',['DeleteEmptyDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a6b1c64f700e702c9944463c9cd7d4419',1,'Tgstation.Server.Client.Components.ConfigurationClient.DeleteEmptyDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab64268e03bd3451604bf4c4bdbbec2ba',1,'Tgstation.Server.Client.Components.IConfigurationClient.DeleteEmptyDirectory()']]], - ['deletefile_575',['DeleteFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad75df660abbe0d645edc657cf9910a1a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6ca322ea63f5693487917c1ee71c707a',1,'Tgstation.Server.Host.IO.IIOManager.DeleteFile()']]], - ['deleterepository_576',['DeleteRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a0476484a5f4909326dfd7edcf697716d',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.DeleteRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a48d21690a40164c4a11d81be94055395',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.DeleteRepository()']]], - ['deploying_577',['deploying',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a95745246c0a960bdec751c0e7f9559c8',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['deploymentcomplete_578',['DeploymentComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a85e9aaa4190eda60c749d9a4965afd50',1,'Tgstation::Server::Host::Components::Events']]], - ['deploymentlock_579',['deploymentLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae7ed5b30d84ba3a1f88262ccd524f280',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['deploymentpagerrunning_580',['DeploymentPagerRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0ff27c19e763c97ce46acb2cd8020bd3',1,'Tgstation::Server::Api::Models']]], - ['deploymentprocess_581',['DeploymentProcess',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab03690c5e8fd15c8d3f7c746a36a9f37',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DeploymentProcess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html#aeb470ac53fa295c9456606278c9f6e65',1,'Tgstation.Server.Host.Components.Deployment.IDreamMaker.DeploymentProcess()']]], - ['describe_582',['Describe',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html#a786e167f94f9d7bcfcdcfe4be812e162',1,'Tgstation::Server::Api::Models::ErrorCodeExtensions']]], - ['description_583',['Description',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a3898828f81135947949d8f1083a71a10',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['designtime_584',['DesignTime',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#ae179f5debc33b39375973abf2d91e99d',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.DesignTime()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a3b6658b7b9a33591ec03e0ad4c24bf09',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.DesignTime()']]], - ['designtimedbcontextfactoryhelpers_585',['DesignTimeDbContextFactoryHelpers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html',1,'Tgstation::Server::Host::Database::Design']]], - ['designtimedbcontextfactoryhelpers_2ecs_586',['DesignTimeDbContextFactoryHelpers.cs',['../_design_time_db_context_factory_helpers_8cs.html',1,'']]], - ['detach_587',['Detach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#abd45f73a94f3e25829be0e477c73caad',1,'Tgstation.Server.Client.IInstanceManagerClient.Detach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a9aaeff926049f5bc8c311fc67b4fb78c',1,'Tgstation.Server.Client.InstanceManagerClient.Detach()']]], - ['diagnostics_588',['Diagnostics',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a56e9bf1c7567f8f6ad1bf830eb4b158e',1,'Tgstation::Server::Api::Routes']]], - ['diagnosticsiomanager_589',['diagnosticsIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a8becb1115fe1c09c84534c798466e03f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['die_590',['Die',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a2eb5bdeb76bf1fbfdb297219af3ede45',1,'Tgstation.Server.Host.Core.IServerControl.Die()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ae61fcfdb226cd0f5126e29ffb6fff403',1,'Tgstation.Server.Host.Server.Die()']]], - ['differentcoreexceptionmessage_591',['DifferentCoreExceptionMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#acf180df4f51944cbf125d2eed9533e5d',1,'Tgstation::Server::Host::Components::Instance']]], - ['directory_592',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a449212c5178f0b1a56691b4c6ad2a810',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Directory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a7607fcc4f9d4667337c435fd2b96dc53',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a1fb8f30e13fa743332cc5512eebb1684',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f268f1281d32885a378d655e5b67df2',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#aad824931c595d0e0c5522892e9467499',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a048dc25d07e09e17d7f697cf6ded2dd7',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556ae73cda510e8bb947f7e61089e5581494',1,'Tgstation.Server.Host.NativeMethods.Directory()']]], - ['directoryappend_593',['directoryAppend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a4f911fc1337526e7842efd346990d716',1,'Tgstation::Server::Host::Components::Deployment::DmbProvider']]], - ['directoryexists_594',['DirectoryExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad1b0c2e2bdf35fa955cc62f13349f19a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DirectoryExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ae1f28b3b77349cbfbb9b3f9ba1271e5e',1,'Tgstation.Server.Host.IO.IIOManager.DirectoryExists()']]], - ['directoryhardlinked_595',['directoryHardLinked',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a9fb10900a2c61303f79d21e777d94836',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdog']]], - ['directoryname_596',['DirectoryName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#af7f70d7f52963a2b3c80537734ba7967',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], - ['disable_597',['Disable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#af1c69ac7d59ed1817d59b0022d86db15',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['disallowed_598',['Disallowed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ade99ae8770699a4725a85853a0790d24',1,'Tgstation::Server::Api::Models']]], - ['disconnect_599',['Disconnect',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ae24ff61d2fb16b41675498d0d95b67d8',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disconnect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab77ee1149c17f06af44755f54aa19880',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disconnect()']]], - ['disconnectimpl_600',['DisconnectImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ae4da9b25c89c74b4e2d70fdfb7f8c894',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ab7dc167a715c37ce3487b14e682a6b46',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a627edd03f216fa53e443b1901cf5599c',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisconnectImpl()']]], - ['disconnecting_601',['disconnecting',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a86767ec9cfd43611d9d5e00cad58197e',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['discord_602',['Discord',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca8f5cc6430613f1c12f36965050bb7197',1,'Tgstation::Server::Api::Models']]], - ['discordchannelid_603',['DiscordChannelId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a7d69363fd8b5b85e8a66d7c6d4aeb4ec',1,'Tgstation::Server::Api::Models::ChatChannel']]], - ['discordconnectionstringbuilder_604',['DiscordConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a6728e43a98a9f8a7e99cb4b286ae03af',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#acf0ae3d6a9370ce06e612d8edb6773e9',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder(string connectionString)']]], - ['discordconnectionstringbuilder_2ecs_605',['DiscordConnectionStringBuilder.cs',['../_discord_connection_string_builder_8cs.html',1,'']]], - ['discordprovider_606',['DiscordProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a887f42d3b818cf7e637057a0939ed639',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DiscordProvider()']]], - ['discordprovider_2ecs_607',['DiscordProvider.cs',['../_discord_provider_8cs.html',1,'']]], - ['dispose_608',['Dispose',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ad4afd612c75a7240f3aa27b49520a1bf',1,'Tgstation.Server.Client.ApiClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a01a43b38e92d4c35f303db4d24a2d27a',1,'Tgstation.Server.Client.HttpClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#abcacb02b4b6734d065f599659914c2ff',1,'Tgstation.Server.Client.ServerClient.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#af8246eaaf2299ebea9af766cad757790',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ad943befa858b57706c8fdeac1c93a7bc',1,'Tgstation.Server.Host.Components.Byond.ByondManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac28dcfb947617ce11f16c9812e4a5a22',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a405ff7157fc650643ebdc42571740706',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a5f4170ba6cb22e8497e1774cfa61fed2',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a3dffaa0728d657493bc0e2f637db142c',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a7750549dee1e98a8d5a2299fcf8fbd87',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a606fe532cfc8b19526857ffc63517637',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a154c4115a2c116b7b3dd3410fa894d29',1,'Tgstation.Server.Host.Components.InstanceWrapper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#aeef0e0b995b4616afa59974f820a40b9',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a3ea44742a122a7d74046017a02f5ea08',1,'Tgstation.Server.Host.Components.Repository.Repository.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a61b0a56eced0f9e75057c0c9f17b5d1d',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a490ea3b8f33527e6b1e348346195503a',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a1a4d9a4d259d03ff3f69b2b061c2e5df',1,'Tgstation.Server.Host.Core.RestartRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a7a90d285258c8e67e5a351c6b8854537',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a4094b920d3ba4aa6f3620b1fff15672c',1,'Tgstation.Server.Host.IO.Console.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a6ae06f68e5a74aefeb5ac12f832efcfe',1,'Tgstation.Server.Host.Jobs.JobHandler.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a16e8a7081a33c07a98ac25749e8de832',1,'Tgstation.Server.Host.Jobs.JobManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a4a5a80952341c5a9e0f3a84e27734f8a',1,'Tgstation.Server.Host.Security.AuthenticationContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#accc9334a642e563e47c5308df2d5149a',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a8a7ab89f157f77d9424c642587fd0460',1,'Tgstation.Server.Host.Security.IdentityCache.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#abf1fccfffa19349bb551ffe64c364387',1,'Tgstation.Server.Host.Security.IdentityCacheObject.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#afcbcff9ad24bfd3aaf29984f0f78bb4c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a69861e38af0e65778b2e6e5692fd87a4',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a110b26835967f72e89837e6f47f4b1a1',1,'Tgstation.Server.Host.System.Process.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a1c17ac001c62907054e00cf6216aba78',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab96927cd0efef08c6926838bc238d45a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a75ee7501b3cb59e3e34c05f382380292',1,'Tgstation.Server.Host.Service.ServerService.Dispose()']]], - ['disposeandnullcontrollers_609',['DisposeAndNullControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a875fe1589eb86e57a50a0e793b0d74f5',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['disposeandnullcontrollersimpl_610',['DisposeAndNullControllersImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a269e152d2acb113d8fd5db064c098162',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a2f8ea066a8ae2408f1c86f828d7974f8',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a4fbabec855f7dc736b0bd76e6c311be4',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.DisposeAndNullControllersImpl()']]], - ['disposeasync_611',['DisposeAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac0bd122a06d9a590adc983b3aedc7417',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ab650903107863653f1b637562f4813b4',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4fafe65b92ddf1b6fae01c5e479dce39',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afe2edd40c945bc526ccd5dfea7a062b1',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a923eeba6faee2b5573a1fa4bc37c2216',1,'Tgstation.Server.Host.Components.Instance.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a72f7ed3869c2397df900e5745be0befc',1,'Tgstation.Server.Host.Components.InstanceManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a6612e49a14544cad75292fba3798c1',1,'Tgstation.Server.Host.Components.Session.SessionController.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6f69db8c3ceae298404f5d8d5a7312b3',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAsync()']]], - ['disposed_612',['disposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a6ba869dae354db235f8518f7283a531c',1,'Tgstation.Server.Host.Components.InstanceManager.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a52f8570d6fbc195b3afaf8d402189503',1,'Tgstation.Server.Host.Components.Repository.Repository.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27e1964bd0549273b53af54a37a52891',1,'Tgstation.Server.Host.Components.Session.SessionController.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5c39f385b06058f4699503b492d2b743',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#aa3af81c7e35c2832f0f932a346a98d8a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab6d4a4d9769abaa77b2955d28ea66b1f',1,'Tgstation.Server.Host.IO.Console.disposed()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#aff3a0cd34a0dee8970516a0d06616053',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a12ea0f5bc6f3379005d924a42bd905d9',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disposed()']]], - ['disposelock_613',['disposeLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a12d6d4fe1bf5c033acfc95ffeb8bde7c',1,'Tgstation.Server.Host.Components.InstanceWrapper.disposeLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#afe091465f9c26cf65beaa4b49edc3a1a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposeLock()']]], - ['dmapiavailable_614',['DMApiAvailable',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a52229c39f084c0740bd42d0a775897bf',1,'Tgstation.Server.Host.Components.Session.ISessionController.DMApiAvailable()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ca9a908ef86e5a5296826095720a163',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiAvailable()']]], - ['dmapiconstants_615',['DMApiConstants',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['dmapiconstants_2ecs_616',['DMApiConstants.cs',['../_d_m_api_constants_8cs.html',1,'']]], - ['dmapimajorversion_617',['DMApiMajorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ab41a3af4b8f49c1d44aeb92aac0ac4fe',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['dmapiminorversion_618',['DMApiMinorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a02faf1cc1b9d9a9f0d38f86559b58141',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['dmapiparameters_619',['DMApiParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html',1,'Tgstation.Server.Host.Components.Interop.DMApiParameters'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html#a2898638d05a8b0550e390b89e672b81a',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeHandler.DMApiParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a46d01e2aea4190fdb683db240c398cf6',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiParameters()']]], - ['dmapiparameters_2ecs_620',['DMApiParameters.cs',['../_d_m_api_parameters_8cs.html',1,'']]], - ['dmapipatchversion_621',['DMApiPatchVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a5328176206b0fa9a2c7bb2ccb9d5e154',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['dmapiresponse_622',['DMApiResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['dmapiresponse_2ecs_623',['DMApiResponse.cs',['../_d_m_api_response_8cs.html',1,'']]], - ['dmapiversion_624',['DMApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#ab960ca771b3f1b5b1caabddb6286934b',1,'Tgstation.Server.Api.Models.Internal.CompileJob.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#ab41b1b31a44ddcdcc04f2f550f0046ef',1,'Tgstation.Server.Api.Models.ServerInformation.DMApiVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#afe95d6ef4c8fc3218ceb3099342f9046',1,'Tgstation.Server.Host.Components.Session.ISessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aa7a0a4d67b027a49d086c20e3639e5fd',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a1874072c230506695dae47cd11d28e4e',1,'Tgstation.Server.Host.Models.CompileJob.DMApiVersion()']]], - ['dmb_625',['Dmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ae9210ff3236e194682fabe36fe20620d',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], - ['dmbavailable_626',['DmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6072027691530ddea3454b05d1d6e322',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.DmbAvailable()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#ad6c02b7f5616833f82c02af6d8fe5bec',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.DmbAvailable()']]], - ['dmbextension_627',['DmbExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad68af0912872eba94733cb322b08ecb3',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['dmbfactory_628',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4c3746b0143784d232119fdb418263ba',1,'Tgstation.Server.Host.Components.Instance.dmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a732863bb9fd35fece0bb2c926b55f8e9',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.dmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a401d41a1b1b805f553f53b35f46275ef',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6792aff6d8b22ed0ac3f895676abbeab',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.DmbFactory()']]], - ['dmbfactory_2ecs_629',['DmbFactory.cs',['../_dmb_factory_8cs.html',1,'']]], - ['dmbname_630',['DmbName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad19fc1b2afa0669c86ba252638d8b9f9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.DmbName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a950ac6f5b0cbcb2680546968c79486a1',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a0f016a86340749d5ca335c0ebc5d39a7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a82633d2589d4ab55afdefe5be69bcd36',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.DmbName()']]], - ['dmbprovider_631',['DmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad43adafe380a7db4160c975f67340126',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.DmbProvider()']]], - ['dmbprovider_2ecs_632',['DmbProvider.cs',['../_dmb_provider_8cs.html',1,'']]], - ['dmeextension_633',['DmeExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a373e2cd0c56f6826367b9aebf150040f',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['dmename_634',['DmeName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#a62c90f6d2a9a109318bb3fba05afead0',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], - ['donotdeletethissession_635',['DoNotDeleteThisSession',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae54582fd5e1f354554c9a0402eb72a2b',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DoNotDeleteThisSession()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aefcf67dd06a656e319e6d6e42a2aef81',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DoNotDeleteThisSession()']]], - ['down_636',['Down',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#ae0f4cc2dd9b29f92f03b254d9411140b',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a1c0857d0051862bb633c92aa072e47bd',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a70b456f851dae6ac43d48e2170d975ce',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a9233da9df7bb2bbbf399a8225a77dfc5',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#a8c179cd8b856bf48a6ae1b5134ed5caf',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a5ce4a6670e01c07bc7e7f96e0834f201',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ad16a541bed641a4299ad34c836d35381',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a985c501dd70a3bde97d5664e32d6ec4f',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#ab73d9fedcdc7d6f8c1961984b60a6a74',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a65028283085928ece01cd4d4c43dd16c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ae8f00fc3a07d7375ce51b8f129369088',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#a75731f56be6e24f24ad159d275e16665',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a6d996f6780dc488d4cc7cb9d9804481e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a2ab30ec2c22da1e82035bd86885d0a19',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a0fd91dc305f512bb5c3d2a9d9bda2d6e',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a7913c39e263b705e6ed1ba52d4dad6ff',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#acf6df5f177b238f879d6cadc9c212c8f',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a08643345b848248c54f6391c441afca0',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7a360f89edab0412cbf2522317c503a7',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#ad60c496d7dec72affca9fac2b6131912',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ac0aa836ba342d7d6f1b775d354466f9a',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ac2a807dd610b05efff586abc8fc5838c',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#a69f92765673944b287c528ef67ac628f',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a051e7067eb3622929d13230cd270136a',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a46fc331b3a27bdc1a3220d16991fd676',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a2b882b3dc7c98709f515357624fd5c7d',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a7eb735e2cac5616d83e1fc523950a7a7',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a29c2467e5b26498fdc9be4daf32190e6',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#af59f624ac40ca4702a4ceee81043c686',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a6699ad0573ce9d6809adb8275aef1e4e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aecedd67bcc41584f5cc7ce3e43991e67',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a69db556c8f9816d01d3acfe308c32d0c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a452f5f223962a06f1f4aac9250a98f7a',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a00aad2d1a76c69ee46d01f608bec097b',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a79220430d6011f769ff13ab1eece5edd',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a91b4446c41d615ad2513be276114100e',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a75a8797a59d9d37f823c1e8141c48148',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a75b4c0c1b4dce285abf160ca70fa7ad0',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a65160a3abe4072ec1f844961f600b6da',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a71446c05ce0d2861a0a22e2a01f4d89d',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a0310dac83148c1460053a83c2b0a453b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#aeba16375a98e6314db22f48319e39d81',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4ecfa74d942bf845f49016ed7e0c01c9',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#ae854d9dd602db118b7711bf4a13b9b2a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aef19a599caab07370c84bf792cd002e8',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a3a5535279567ec208518789362b10040',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a23b83a4977a3869e6a5c1975586411f1',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a11dfa79c963f480b402307af39034789',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a835767cfae5418f6e289022d1d1ae7ac',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Down()']]], - ['downgrade_637',['Downgrade',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ae30cd4eb76ba111b3fcd0e1b3622716d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Downgrade()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a83bee4040049ba8768dcb04ae7f50deb',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Downgrade()']]], - ['downgradeversion_638',['downgradeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a909262eddcaca553541c052dbf98b325',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['downloadfile_639',['DownloadFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a509e05cc7905cda41869f57bee5c6c58',1,'Tgstation.Server.Host.IO.DefaultIOManager.DownloadFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a20647d9e4dd09b806e407cd5c8a23b9b',1,'Tgstation.Server.Host.IO.IIOManager.DownloadFile()']]], - ['downloadlogs_640',['DownloadLogs',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a58226070c23da85922d478f497efa9fd',1,'Tgstation::Server::Api::Rights']]], - ['downloadversion_641',['DownloadVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#af3c14961e49ea0fcc923d75ae1eec19a',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DownloadVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a827552d8311f380aecac2fd75beecc52',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DownloadVersion()']]], - ['dreamdaemon_642',['DreamDaemon',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html',1,'Tgstation.Server.Api.Models.DreamDaemon'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a42831355d8d0cd578680f7f8f3f1124a',1,'Tgstation.Server.Api.Routes.DreamDaemon()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a3d0fe52c8e2428ab13df3f14a4c9d36e',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamDaemon()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a6e49e9e7b6d23a95f9839ab4add778',1,'Tgstation.Server.Client.Components.InstanceClient.DreamDaemon()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab5eab4143b5b6250e72b4ea05b2a039c',1,'Tgstation.Server.Client.Components.DreamDaemonClient.DreamDaemon()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a82a60e2400e19cffe6b38b295e10d4c8',1,'Tgstation.Server.Api.Rights.DreamDaemon()']]], - ['dreamdaemon_2ecs_643',['DreamDaemon.cs',['../_dream_daemon_8cs.html',1,'']]], - ['dreamdaemonclient_644',['DreamDaemonClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html',1,'Tgstation.Server.Client.Components.DreamDaemonClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a8bf0ad726b61e3dbc31a53c7ea0822c2',1,'Tgstation.Server.Client.Components.DreamDaemonClient.DreamDaemonClient()']]], - ['dreamdaemonclient_2ecs_645',['DreamDaemonClient.cs',['../_dream_daemon_client_8cs.html',1,'']]], - ['dreamdaemoncontroller_646',['DreamDaemonController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html',1,'Tgstation.Server.Host.Controllers.DreamDaemonController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ad6d82fab816712a4c95163e0ee2a4d7d',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.DreamDaemonController()']]], - ['dreamdaemoncontroller_2ecs_647',['DreamDaemonController.cs',['../_dream_daemon_controller_8cs.html',1,'']]], - ['dreamdaemondoublesoft_648',['DreamDaemonDoubleSoft',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a226919045a54d1af86e0c8be046dcafd',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonduplicateports_649',['DreamDaemonDuplicatePorts',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac813e5aec42e9884126fecdecdf481ee',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonexecutablename_650',['DreamDaemonExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a0e3bcbe1b14ed825ea567a6f859884f7',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['dreamdaemonlaunchparameters_651',['DreamDaemonLaunchParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['dreamdaemonlaunchparameters_2ecs_652',['DreamDaemonLaunchParameters.cs',['../_dream_daemon_launch_parameters_8cs.html',1,'']]], - ['dreamdaemonname_653',['DreamDaemonName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a307f7487e7a407203c85b86bc9df4f8f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamDaemonName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad43d91cf402c0084067dee5d1b182cde',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamDaemonName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#aefaefa1cca8328a36996f286b42d310a',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamDaemonName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a3a29cd2508c8826713fc05095c87ee28',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamDaemonName()']]], - ['dreamdaemonoffline_654',['DreamDaemonOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8d6c57ae1b684c123fbc6598c0c3200e',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonpath_655',['DreamDaemonPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aebbd445eb581a534e4ad8ff6b0f6c1ce',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamDaemonPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#af7c6d39dcd1075f42e8721446b5e159f',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamDaemonPath()']]], - ['dreamdaemonportinuse_656',['DreamDaemonPortInUse',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a75219810993f7db0f15458d8c5fa71e5',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonrights_657',['DreamDaemonRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a8367896a1a9ff6e745d0c62b85d8fd0e',1,'Tgstation.Server.Api.Models.InstanceUser.DreamDaemonRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49',1,'Tgstation.Server.Api.Rights.DreamDaemonRights()']]], - ['dreamdaemonrights_2ecs_658',['DreamDaemonRights.cs',['../_dream_daemon_rights_8cs.html',1,'']]], - ['dreamdaemonsecurity_659',['DreamDaemonSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonsecurity_2ecs_660',['DreamDaemonSecurity.cs',['../_dream_daemon_security_8cs.html',1,'']]], - ['dreamdaemonsettings_661',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Host.Models.DreamDaemonSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae03574f8c27c8c179b6d1b8c6f71532e',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamDaemonSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab13ccb4c344a982d5af87d5b3f51bd79',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamDaemonSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a834db5965b255a765f7ae274e4104f36',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamDaemonSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a94cb9055338f1d52397f10aab18f554d',1,'Tgstation.Server.Host.Models.Instance.DreamDaemonSettings()']]], - ['dreamdaemonsettings_2ecs_662',['DreamDaemonSettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)']]], - ['dreamdaemonsettingscollection_663',['dreamDaemonSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8b4bad8f9cad725b02e88b98fef96e7a',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['dreammaker_664',['DreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html',1,'Tgstation.Server.Api.Models.DreamMaker'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#acc5a1421208a8e29080110f54b364ba8',1,'Tgstation.Server.Api.Routes.DreamMaker()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a5a505ae2d713942640558e34222b444b',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af92b0694efe4453eee2ea50d9c18616e',1,'Tgstation.Server.Client.Components.InstanceClient.DreamMaker()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#acbc6bed95fa79891224fc0b1c5255071',1,'Tgstation.Server.Host.Components.IInstanceCore.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a5774569e57a7e7b15ce6dafed0904ab0',1,'Tgstation.Server.Host.Components.Instance.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a0392aae240c5fe54f476cff7c6079581',1,'Tgstation.Server.Host.Components.InstanceWrapper.DreamMaker()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a62edd66a221c9b7044bd068dcf7324d9',1,'Tgstation.Server.Client.Components.DreamMakerClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a5037defb980ec8375313a1fa4a684187',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DreamMaker()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20af179dcd47770d7cc1eb149ee1a0d06af',1,'Tgstation.Server.Api.Rights.DreamMaker()']]], - ['dreammaker_2ecs_665',['DreamMaker.cs',['../_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html',1,'(Global Namespace)']]], - ['dreammakerclient_666',['DreamMakerClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html',1,'Tgstation.Server.Client.Components.DreamMakerClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a04dd94462a3bb8aad7469c84d53f78a9',1,'Tgstation.Server.Client.Components.DreamMakerClient.DreamMakerClient()']]], - ['dreammakerclient_2ecs_667',['DreamMakerClient.cs',['../_dream_maker_client_8cs.html',1,'']]], - ['dreammakercompilejobinprogress_668',['DreamMakerCompileJobInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8adef39f019c5381bcf05b550aa2ad853e',1,'Tgstation::Server::Api::Models']]], - ['dreammakercontroller_669',['DreamMakerController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html',1,'Tgstation.Server.Host.Controllers.DreamMakerController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a5434cff9c9fa15212f0630672f48de13',1,'Tgstation.Server.Host.Controllers.DreamMakerController.DreamMakerController()']]], - ['dreammakercontroller_2ecs_670',['DreamMakerController.cs',['../_dream_maker_controller_8cs.html',1,'']]], - ['dreammakerexecutablename_671',['DreamMakerExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a1563b9bcd5a68d5d2528475956e7d9e8',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['dreammakerexitcode_672',['DreamMakerExitCode',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a622e9926f7b9fb6f507c649d878cefd7',1,'Tgstation::Server::Api::Models']]], - ['dreammakerinvalidvalidation_673',['DreamMakerInvalidValidation',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf9ba51c8cb292981b8d5e89896aefc2',1,'Tgstation::Server::Api::Models']]], - ['dreammakermissingdme_674',['DreamMakerMissingDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab0b01b336cd620d6b988afb5e02b7370',1,'Tgstation::Server::Api::Models']]], - ['dreammakername_675',['DreamMakerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a676cee80ef384243348ee21cfc6a0f28',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamMakerName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a40f9cadd672f9e36c3a89be2df1cb4b5',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamMakerName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a402cdbabab1493b5d26781fa78151e87',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamMakerName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a86f71ff5e6ef8277a1867e81b8f5e42d',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamMakerName()']]], - ['dreammakernevervalidated_676',['DreamMakerNeverValidated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a030d0af385ee501b6475b0e75d733081',1,'Tgstation::Server::Api::Models']]], - ['dreammakernodme_677',['DreamMakerNoDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8f6b203dc15eb3288fc96f5f98ab7779',1,'Tgstation::Server::Api::Models']]], - ['dreammakerpath_678',['DreamMakerPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a4d5315a7648111cd6851fe47dfe859a2',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamMakerPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a45a3041c6d9e0ba81d361090549bb072',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamMakerPath()']]], - ['dreammakerrights_679',['DreamMakerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a51bb2f3a485f142fc1b60cc1c4c53052',1,'Tgstation.Server.Api.Models.InstanceUser.DreamMakerRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5d',1,'Tgstation.Server.Api.Rights.DreamMakerRights()']]], - ['dreammakerrights_2ecs_680',['DreamMakerRights.cs',['../_dream_maker_rights_8cs.html',1,'']]], - ['dreammakersettings_681',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html',1,'Tgstation.Server.Host.Models.DreamMakerSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a77fbed3e1799f2e4c6edec6dc2f415bb',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamMakerSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a670cf85f3bbc465d5c1f89cdef983f33',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamMakerSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aac927b14c117b14a4bafdf3811c2c859',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamMakerSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a09929f71b77a27fc5f609ff64cf190d6',1,'Tgstation.Server.Host.Models.Instance.DreamMakerSettings()']]], - ['dreammakersettings_2ecs_682',['DreamMakerSettings.cs',['../_dream_maker_settings_8cs.html',1,'']]], - ['dreammakersettingscollection_683',['dreamMakerSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a333d57bfa4adf560b11b6df69c110be9',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['dreammakervalidationtimeout_684',['DreamMakerValidationTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3706f3d8378fb4d2e3d1f1a6ea74dd56',1,'Tgstation::Server::Api::Models']]], - ['drop_685',['Drop',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#abd512a5dfbfbc3f64670a963ec808de5',1,'Tgstation.Server.Host.Database.DatabaseContext.Drop()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a6216e8a817ab6700a155699bb8013584',1,'Tgstation.Server.Host.Database.IDatabaseContext.Drop()']]], - ['dropdatabase_686',['DropDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a30f47f73075f305073ad72ef3ff44cd4',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]] + ['databasecollection_540',['DatabaseCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html',1,'Tgstation.Server.Host.Database.DatabaseCollection< TModel >'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#ab45237330b1543809ec730ad8a5ba3af',1,'Tgstation.Server.Host.Database.DatabaseCollection.DatabaseCollection()']]], + ['databasecollection_2ecs_541',['DatabaseCollection.cs',['../_database_collection_8cs.html',1,'']]], + ['databasecollectionextensions_542',['DatabaseCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['databasecollectionextensions_2ecs_543',['DatabaseCollectionExtensions.cs',['../_database_collection_extensions_8cs.html',1,'']]], + ['databaseconfiguration_544',['DatabaseConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a6c8e101a216a05b59a646260218b2467',1,'Tgstation.Server.Host.Database.DatabaseSeeder.databaseConfiguration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a9563b31eb4a36767bccf9cf0f347669c',1,'Tgstation.Server.Host.Setup.IPostSetupServices.DatabaseConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3c7b43c9d60c8b6cb97c7af1926eec28',1,'Tgstation.Server.Host.Setup.PostSetupServices.DatabaseConfiguration()']]], + ['databaseconfiguration_2ecs_545',['DatabaseConfiguration.cs',['../_database_configuration_8cs.html',1,'']]], + ['databaseconfigurationoptions_546',['databaseConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#acd44c110eaede1bb441cd542a00200a6',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], + ['databaseconnectionfactory_547',['DatabaseConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], + ['databaseconnectionfactory_2ecs_548',['DatabaseConnectionFactory.cs',['../_database_connection_factory_8cs.html',1,'']]], + ['databasecontext_549',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html',1,'Tgstation.Server.Host.Database.DatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a4f3486b694a62f17ead5bfe84d20d8e0',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.databaseContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ab687e0fc0cb712708297c0c2b43ca849',1,'Tgstation.Server.Host.Controllers.ApiController.DatabaseContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a816a6a136cb720c30a89568a0d071a5b',1,'Tgstation.Server.Host.Database.DatabaseContext.DatabaseContext()']]], + ['databasecontext_2ecs_550',['DatabaseContext.cs',['../_database_context_8cs.html',1,'']]], + ['databasecontextfactory_551',['DatabaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html',1,'Tgstation.Server.Host.Database.DatabaseContextFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#ac543a4e3bf61cec7ef0cee9abab7d0e4',1,'Tgstation.Server.Host.Database.DatabaseContextFactory.DatabaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#abbd5571bc7db746a0f12add2f39e67de',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a092a4f6583f2101fbef0ec6caf5c41a0',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ad0b797ad2e348db517f20393acacdb65',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#ab9a4d8a174effbee50c7ea653cd65724',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b570e9e9d997c7b93842a93f1a362d6',1,'Tgstation.Server.Host.Components.InstanceFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ab5c8e78bdae6eb6eb2ed289563c639cc',1,'Tgstation.Server.Host.Components.InstanceManager.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a2227915dc11711ab8eac49598f9bda08',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a3758020992c3c8e37a25439bc067e365',1,'Tgstation.Server.Host.Jobs.JobManager.databaseContextFactory()']]], + ['databasecontextfactory_2ecs_552',['DatabaseContextFactory.cs',['../_database_context_factory_8cs.html',1,'']]], + ['databaseintegrityconflict_553',['DatabaseIntegrityConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac9241b2a69ac456afa664e7c47ac9b39',1,'Tgstation::Server::Api::Models']]], + ['databaselogger_554',['databaseLogger',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a2bc9f345004fe0cd972d9275d771b948',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['databaseseeder_555',['DatabaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html',1,'Tgstation.Server.Host.Database.DatabaseSeeder'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#af3473c586a7c835b7708d18354f4d260',1,'Tgstation.Server.Host.Components.InstanceManager.databaseSeeder()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aadb06f4dafe423e9545a4e123c5e8abd',1,'Tgstation.Server.Host.Database.DatabaseSeeder.DatabaseSeeder()']]], + ['databaseseeder_2ecs_556',['DatabaseSeeder.cs',['../_database_seeder_8cs.html',1,'']]], + ['databasetype_557',['DatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#adab83eaad53afabdb2f7b43c23ece38a',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.DatabaseType()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617c',1,'Tgstation.Server.Host.Configuration.DatabaseType()']]], + ['databasetype_2ecs_558',['DatabaseType.cs',['../_database_type_8cs.html',1,'']]], + ['datetimeoffsetextensions_559',['DateTimeOffsetExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['datetimeoffsetextensions_2ecs_560',['DateTimeOffsetExtensions.cs',['../_date_time_offset_extensions_8cs.html',1,'']]], + ['dbconnectionfactory_561',['dbConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa4ea86a1328b845cac9d0fbeb15167fb',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['dbcontext_562',['DbContext',['../class_db_context.html',1,'']]], + ['dbset_563',['dbSet',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9ded40bd536adb9602f0c3733409eef3',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['debug_564',['Debug',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a938d576ceba93bf3cb1a32ae1dcccc52',1,'Tgstation::Server::Host::Service::Program']]], + ['defaultadminpassword_565',['DefaultAdminPassword',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a6d73f12df63e1cea9b3d011da9d9a14a',1,'Tgstation::Server::Api::Models::User']]], + ['defaultapiport_566',['DefaultApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a34554b3c3ec4b265081f7af8b8d99715',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultbuffersize_567',['DefaultBufferSize',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8d302b2be6862b23b9a18a9412fc7fc9',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['defaultbyondtopictimeout_568',['DefaultByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a9f825b6fe4bb53fd2c8317b271b57157',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultchannellimit_569',['DefaultChannelLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a9f693077cc6b7bca387dd46a08014c90',1,'Tgstation::Server::Host::Models::ChatBot']]], + ['defaultchatbotlimit_570',['DefaultChatBotLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6e95c489b01ba0ca06a8a803e2df9b9f',1,'Tgstation::Server::Host::Models::Instance']]], + ['defaultcommitteremail_571',['DefaultCommitterEmail',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1e8406665338bf41e4517f0680336bad',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['defaultcommittername_572',['DefaultCommitterName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#acfbf572f6b740f5df77fcf1af075b622',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['defaultgithubrepositoryid_573',['DefaultGitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f4f5cb3301033fd4dfebde47baf9c5a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['defaultgittagprefix_574',['DefaultGitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#ae004e4379b32596669db26f1bdffef84',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['defaultinstancelimit_575',['DefaultInstanceLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#aa4150fdf328588da7e2fdda649311d1a',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultiomanager_576',['DefaultIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['defaultiomanager_2ecs_577',['DefaultIOManager.cs',['../_default_i_o_manager_8cs.html',1,'']]], + ['defaultloglevel_578',['DefaultLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a20cad976d13ebead44836c2c73546eb1',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['defaultmicrosoftloglevel_579',['DefaultMicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a2ed7c15d2389baf4cb4aea475a33ee43',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['defaultminimumpasswordlength_580',['DefaultMinimumPasswordLength',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a2f4d695a6363f6d92a8adb8f7860e809',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultrestarttimeout_581',['DefaultRestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a8aada49cbc40077cf605dcb0ec00d259',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaulttokenclockskewminutes_582',['DefaultTokenClockSkewMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#aca00b4c5b85393830515491a8ec92144',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['defaulttokenexpiryminutes_583',['DefaultTokenExpiryMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#af332c0d93d7388e590f0a61be193211c',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['defaulttokensigningkeybyteamount_584',['DefaultTokenSigningKeyByteAmount',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a643425150df8884182f4c165b14f27c0',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['defaultupdatepackageassetname_585',['DefaultUpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2414ab0c1cbd67d474c6484d065ec90a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['defaultuserlimit_586',['DefaultUserLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a72a9ee77858ff9b03b66ffe774eb0931',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['delay_587',['Delay',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html#a28ea9fb35caed002bf15a67b03d5e0c7',1,'Tgstation.Server.Host.Core.AsyncDelayer.Delay()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html#afab931ac159bc999fee1e7eda917c7d6',1,'Tgstation.Server.Host.Core.IAsyncDelayer.Delay()']]], + ['delayedrestart_588',['DelayedRestart',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a0e6aa7a3fef294ba456c4aa38d7bc9bf',1,'Tgstation::Server::Api::Models']]], + ['delete_589',['Delete',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a79097c50707454b30e031a6cf53c1cca',1,'Tgstation.Server.Client.ApiClient.Delete(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ac4676e1e4197c8b3177738388a70db2e',1,'Tgstation.Server.Client.ApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af21f7f62a34e6486d979bf56f93ab522',1,'Tgstation.Server.Client.Components.ChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a9ce8f7309dd82e761f821939ad877036',1,'Tgstation.Server.Client.Components.IChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a1e57e5258ee0d519916cbf6e8452de12',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a66319c3cf70b1e17e7d03d00113680ef',1,'Tgstation.Server.Client.Components.InstanceUserClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a542817cc102394601ab78412d37f82ba',1,'Tgstation.Server.Client.Components.IRepositoryClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a53bf505d9df01bc1bccec11d00e44733',1,'Tgstation.Server.Client.Components.RepositoryClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a6954d79598a2d4498c99e201481dc6b1',1,'Tgstation.Server.Client.IApiClient.Delete(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a64cf5a4f7ea0ce4a99164906fcdfd19a',1,'Tgstation.Server.Client.IApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aacf3549e22bb38699d3226a156e3e0dc',1,'Tgstation.Server.Host.Controllers.AdministrationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a5c9497452013644a7b8b6d4ee09a65a3',1,'Tgstation.Server.Host.Controllers.ChatController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a70a6018d637cb3eb379b8949a4a754a8',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a42cbbc5eb5facf44f1d0df46664824f6',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a14134d386ac311c0f7a76b7ef312a2d6',1,'Tgstation.Server.Host.Controllers.InstanceController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a90a765f46e182acc2ce419f8787fcfa5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a1442deb8a2f3296b5125bb385aa3caf2',1,'Tgstation.Server.Host.Controllers.JobController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad5ffc737feb4385afff13146e336a910',1,'Tgstation.Server.Host.Controllers.RepositoryController.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0caf2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()']]], + ['delete_3c_20tbody_20_3e_590',['Delete< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a16602577e0ea7e639491f47873aa07c2',1,'Tgstation.Server.Client.ApiClient.Delete< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a59cd6ab3e15c7b5e35268a68e381dd5d',1,'Tgstation.Server.Client.IApiClient.Delete< TBody >()']]], + ['delete_3c_20tresult_20_3e_591',['Delete< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afa6dc92d38b59a7a6a2e44126bb5ad50',1,'Tgstation.Server.Client.ApiClient.Delete< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a70767f3f66d4486d4025835ece18d9ef',1,'Tgstation.Server.Client.IApiClient.Delete< TResult >()']]], + ['deleteconnection_592',['DeleteConnection',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae8f42e9fc59f0aa9d70de26a4b6600b7',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DeleteConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1593d7d3f8d4b3efe3412d6c96f6e411',1,'Tgstation.Server.Host.Components.Chat.IChatManager.DeleteConnection()']]], + ['deletedirectory_593',['DeleteDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a79f673d1a6c8868b648c0c3393e34d27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a38c2d45d551a853c4a1545dcf1996063',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a1c0202582bb5f80ba212bf7cceb2bd6d',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad3e0dda4b7fbad4c77f48ba3b2681dc7',1,'Tgstation.Server.Host.IO.IIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad7db8df684e3820376d161b6ac89804f',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a238b441b58a9da1b2e2821f203b65deb',1,'Tgstation.Server.Host.IO.SynchronousIOManager.DeleteDirectory()']]], + ['deleteemptydirectory_594',['DeleteEmptyDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a6b1c64f700e702c9944463c9cd7d4419',1,'Tgstation.Server.Client.Components.ConfigurationClient.DeleteEmptyDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab64268e03bd3451604bf4c4bdbbec2ba',1,'Tgstation.Server.Client.Components.IConfigurationClient.DeleteEmptyDirectory()']]], + ['deletefile_595',['DeleteFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad75df660abbe0d645edc657cf9910a1a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6ca322ea63f5693487917c1ee71c707a',1,'Tgstation.Server.Host.IO.IIOManager.DeleteFile()']]], + ['deleterepository_596',['DeleteRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a0476484a5f4909326dfd7edcf697716d',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.DeleteRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a48d21690a40164c4a11d81be94055395',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.DeleteRepository()']]], + ['deploying_597',['deploying',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a95745246c0a960bdec751c0e7f9559c8',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['deploymentcomplete_598',['DeploymentComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a85e9aaa4190eda60c749d9a4965afd50',1,'Tgstation::Server::Host::Components::Events']]], + ['deploymentlock_599',['deploymentLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae7ed5b30d84ba3a1f88262ccd524f280',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['deploymentpagerrunning_600',['DeploymentPagerRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0ff27c19e763c97ce46acb2cd8020bd3',1,'Tgstation::Server::Api::Models']]], + ['deploymentprocess_601',['DeploymentProcess',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab03690c5e8fd15c8d3f7c746a36a9f37',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DeploymentProcess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html#aeb470ac53fa295c9456606278c9f6e65',1,'Tgstation.Server.Host.Components.Deployment.IDreamMaker.DeploymentProcess()']]], + ['describe_602',['Describe',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html#a786e167f94f9d7bcfcdcfe4be812e162',1,'Tgstation::Server::Api::Models::ErrorCodeExtensions']]], + ['description_603',['Description',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a3898828f81135947949d8f1083a71a10',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['designtime_604',['DesignTime',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#ae179f5debc33b39375973abf2d91e99d',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.DesignTime()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a3b6658b7b9a33591ec03e0ad4c24bf09',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.DesignTime()']]], + ['designtimedbcontextfactoryhelpers_605',['DesignTimeDbContextFactoryHelpers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html',1,'Tgstation::Server::Host::Database::Design']]], + ['designtimedbcontextfactoryhelpers_2ecs_606',['DesignTimeDbContextFactoryHelpers.cs',['../_design_time_db_context_factory_helpers_8cs.html',1,'']]], + ['detach_607',['Detach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#abd45f73a94f3e25829be0e477c73caad',1,'Tgstation.Server.Client.IInstanceManagerClient.Detach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a9aaeff926049f5bc8c311fc67b4fb78c',1,'Tgstation.Server.Client.InstanceManagerClient.Detach()']]], + ['diagnostics_608',['Diagnostics',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a56e9bf1c7567f8f6ad1bf830eb4b158e',1,'Tgstation::Server::Api::Routes']]], + ['diagnosticsiomanager_609',['diagnosticsIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a8becb1115fe1c09c84534c798466e03f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['die_610',['Die',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a2eb5bdeb76bf1fbfdb297219af3ede45',1,'Tgstation.Server.Host.Core.IServerControl.Die()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ae61fcfdb226cd0f5126e29ffb6fff403',1,'Tgstation.Server.Host.Server.Die()']]], + ['differentcoreexceptionmessage_611',['DifferentCoreExceptionMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#acf180df4f51944cbf125d2eed9533e5d',1,'Tgstation::Server::Host::Components::Instance']]], + ['directory_612',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556ae73cda510e8bb947f7e61089e5581494',1,'Tgstation.Server.Host.NativeMethods.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a449212c5178f0b1a56691b4c6ad2a810',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Directory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a7607fcc4f9d4667337c435fd2b96dc53',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a1fb8f30e13fa743332cc5512eebb1684',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f268f1281d32885a378d655e5b67df2',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#aad824931c595d0e0c5522892e9467499',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a048dc25d07e09e17d7f697cf6ded2dd7',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Directory()']]], + ['directoryappend_613',['directoryAppend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a4f911fc1337526e7842efd346990d716',1,'Tgstation::Server::Host::Components::Deployment::DmbProvider']]], + ['directoryexists_614',['DirectoryExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad1b0c2e2bdf35fa955cc62f13349f19a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DirectoryExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ae1f28b3b77349cbfbb9b3f9ba1271e5e',1,'Tgstation.Server.Host.IO.IIOManager.DirectoryExists()']]], + ['directoryhardlinked_615',['directoryHardLinked',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a9fb10900a2c61303f79d21e777d94836',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdog']]], + ['directoryname_616',['DirectoryName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#af7f70d7f52963a2b3c80537734ba7967',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], + ['disable_617',['Disable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#af1c69ac7d59ed1817d59b0022d86db15',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['disallowed_618',['Disallowed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ade99ae8770699a4725a85853a0790d24',1,'Tgstation::Server::Api::Models']]], + ['disconnect_619',['Disconnect',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ae24ff61d2fb16b41675498d0d95b67d8',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disconnect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab77ee1149c17f06af44755f54aa19880',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disconnect()']]], + ['disconnectimpl_620',['DisconnectImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ae4da9b25c89c74b4e2d70fdfb7f8c894',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ab7dc167a715c37ce3487b14e682a6b46',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a627edd03f216fa53e443b1901cf5599c',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisconnectImpl()']]], + ['disconnecting_621',['disconnecting',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a86767ec9cfd43611d9d5e00cad58197e',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['discord_622',['Discord',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca8f5cc6430613f1c12f36965050bb7197',1,'Tgstation::Server::Api::Models']]], + ['discordchannelid_623',['DiscordChannelId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a7d69363fd8b5b85e8a66d7c6d4aeb4ec',1,'Tgstation::Server::Api::Models::ChatChannel']]], + ['discordconnectionstringbuilder_624',['DiscordConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a6728e43a98a9f8a7e99cb4b286ae03af',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#acf0ae3d6a9370ce06e612d8edb6773e9',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder(string connectionString)']]], + ['discordconnectionstringbuilder_2ecs_625',['DiscordConnectionStringBuilder.cs',['../_discord_connection_string_builder_8cs.html',1,'']]], + ['discorddmoutputdisplaytype_626',['DiscordDMOutputDisplayType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221',1,'Tgstation::Server::Api::Models']]], + ['discorddmoutputdisplaytype_2ecs_627',['DiscordDMOutputDisplayType.cs',['../_discord_d_m_output_display_type_8cs.html',1,'']]], + ['discordprovider_628',['DiscordProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a887f42d3b818cf7e637057a0939ed639',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DiscordProvider()']]], + ['discordprovider_2ecs_629',['DiscordProvider.cs',['../_discord_provider_8cs.html',1,'']]], + ['dispose_630',['Dispose',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ad4afd612c75a7240f3aa27b49520a1bf',1,'Tgstation.Server.Client.ApiClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a01a43b38e92d4c35f303db4d24a2d27a',1,'Tgstation.Server.Client.HttpClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#abcacb02b4b6734d065f599659914c2ff',1,'Tgstation.Server.Client.ServerClient.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#af8246eaaf2299ebea9af766cad757790',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ad943befa858b57706c8fdeac1c93a7bc',1,'Tgstation.Server.Host.Components.Byond.ByondManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac28dcfb947617ce11f16c9812e4a5a22',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a405ff7157fc650643ebdc42571740706',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a5f4170ba6cb22e8497e1774cfa61fed2',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a3dffaa0728d657493bc0e2f637db142c',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a7750549dee1e98a8d5a2299fcf8fbd87',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a606fe532cfc8b19526857ffc63517637',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a154c4115a2c116b7b3dd3410fa894d29',1,'Tgstation.Server.Host.Components.InstanceWrapper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#aeef0e0b995b4616afa59974f820a40b9',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a3ea44742a122a7d74046017a02f5ea08',1,'Tgstation.Server.Host.Components.Repository.Repository.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a61b0a56eced0f9e75057c0c9f17b5d1d',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a490ea3b8f33527e6b1e348346195503a',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a1a4d9a4d259d03ff3f69b2b061c2e5df',1,'Tgstation.Server.Host.Core.RestartRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a7a90d285258c8e67e5a351c6b8854537',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a4094b920d3ba4aa6f3620b1fff15672c',1,'Tgstation.Server.Host.IO.Console.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a6ae06f68e5a74aefeb5ac12f832efcfe',1,'Tgstation.Server.Host.Jobs.JobHandler.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a16e8a7081a33c07a98ac25749e8de832',1,'Tgstation.Server.Host.Jobs.JobManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a4a5a80952341c5a9e0f3a84e27734f8a',1,'Tgstation.Server.Host.Security.AuthenticationContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#accc9334a642e563e47c5308df2d5149a',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a8a7ab89f157f77d9424c642587fd0460',1,'Tgstation.Server.Host.Security.IdentityCache.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#abf1fccfffa19349bb551ffe64c364387',1,'Tgstation.Server.Host.Security.IdentityCacheObject.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#afcbcff9ad24bfd3aaf29984f0f78bb4c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a69861e38af0e65778b2e6e5692fd87a4',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a110b26835967f72e89837e6f47f4b1a1',1,'Tgstation.Server.Host.System.Process.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a1c17ac001c62907054e00cf6216aba78',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab96927cd0efef08c6926838bc238d45a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a75ee7501b3cb59e3e34c05f382380292',1,'Tgstation.Server.Host.Service.ServerService.Dispose()']]], + ['disposeandnullcontrollers_631',['DisposeAndNullControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a875fe1589eb86e57a50a0e793b0d74f5',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['disposeandnullcontrollersimpl_632',['DisposeAndNullControllersImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a269e152d2acb113d8fd5db064c098162',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a2f8ea066a8ae2408f1c86f828d7974f8',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a4fbabec855f7dc736b0bd76e6c311be4',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.DisposeAndNullControllersImpl()']]], + ['disposeasync_633',['DisposeAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac0bd122a06d9a590adc983b3aedc7417',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ab650903107863653f1b637562f4813b4',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4fafe65b92ddf1b6fae01c5e479dce39',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afe2edd40c945bc526ccd5dfea7a062b1',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a923eeba6faee2b5573a1fa4bc37c2216',1,'Tgstation.Server.Host.Components.Instance.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a72f7ed3869c2397df900e5745be0befc',1,'Tgstation.Server.Host.Components.InstanceManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a6612e49a14544cad75292fba3798c1',1,'Tgstation.Server.Host.Components.Session.SessionController.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6f69db8c3ceae298404f5d8d5a7312b3',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAsync()']]], + ['disposed_634',['Disposed',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#aff3a0cd34a0dee8970516a0d06616053',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a12ea0f5bc6f3379005d924a42bd905d9',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a6ba869dae354db235f8518f7283a531c',1,'Tgstation.Server.Host.Components.InstanceManager.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a52f8570d6fbc195b3afaf8d402189503',1,'Tgstation.Server.Host.Components.Repository.Repository.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27e1964bd0549273b53af54a37a52891',1,'Tgstation.Server.Host.Components.Session.SessionController.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5c39f385b06058f4699503b492d2b743',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#aa3af81c7e35c2832f0f932a346a98d8a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab6d4a4d9769abaa77b2955d28ea66b1f',1,'Tgstation.Server.Host.IO.Console.disposed()']]], + ['disposelock_635',['disposeLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a12d6d4fe1bf5c033acfc95ffeb8bde7c',1,'Tgstation.Server.Host.Components.InstanceWrapper.disposeLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#afe091465f9c26cf65beaa4b49edc3a1a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposeLock()']]], + ['dmapiavailable_636',['DMApiAvailable',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a52229c39f084c0740bd42d0a775897bf',1,'Tgstation.Server.Host.Components.Session.ISessionController.DMApiAvailable()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ca9a908ef86e5a5296826095720a163',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiAvailable()']]], + ['dmapiconstants_637',['DMApiConstants',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['dmapiconstants_2ecs_638',['DMApiConstants.cs',['../_d_m_api_constants_8cs.html',1,'']]], + ['dmapimajorversion_639',['DMApiMajorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ab41a3af4b8f49c1d44aeb92aac0ac4fe',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['dmapiminorversion_640',['DMApiMinorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a02faf1cc1b9d9a9f0d38f86559b58141',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['dmapiparameters_641',['DMApiParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html',1,'Tgstation.Server.Host.Components.Interop.DMApiParameters'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html#a2898638d05a8b0550e390b89e672b81a',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeHandler.DMApiParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a46d01e2aea4190fdb683db240c398cf6',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiParameters()']]], + ['dmapiparameters_2ecs_642',['DMApiParameters.cs',['../_d_m_api_parameters_8cs.html',1,'']]], + ['dmapipatchversion_643',['DMApiPatchVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a5328176206b0fa9a2c7bb2ccb9d5e154',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['dmapiresponse_644',['DMApiResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['dmapiresponse_2ecs_645',['DMApiResponse.cs',['../_d_m_api_response_8cs.html',1,'']]], + ['dmapiversion_646',['DMApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#ab960ca771b3f1b5b1caabddb6286934b',1,'Tgstation.Server.Api.Models.Internal.CompileJob.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#ab41b1b31a44ddcdcc04f2f550f0046ef',1,'Tgstation.Server.Api.Models.ServerInformation.DMApiVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#afe95d6ef4c8fc3218ceb3099342f9046',1,'Tgstation.Server.Host.Components.Session.ISessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aa7a0a4d67b027a49d086c20e3639e5fd',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a1874072c230506695dae47cd11d28e4e',1,'Tgstation.Server.Host.Models.CompileJob.DMApiVersion()']]], + ['dmb_647',['Dmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ae9210ff3236e194682fabe36fe20620d',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], + ['dmbavailable_648',['DmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6072027691530ddea3454b05d1d6e322',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.DmbAvailable()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#ad6c02b7f5616833f82c02af6d8fe5bec',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.DmbAvailable()']]], + ['dmbextension_649',['DmbExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad68af0912872eba94733cb322b08ecb3',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['dmbfactory_650',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a401d41a1b1b805f553f53b35f46275ef',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#acf5589df4ced5b0683e045870001fb18',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.DmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4c3746b0143784d232119fdb418263ba',1,'Tgstation.Server.Host.Components.Instance.dmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a732863bb9fd35fece0bb2c926b55f8e9',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.dmbFactory()']]], + ['dmbfactory_2ecs_651',['DmbFactory.cs',['../_dmb_factory_8cs.html',1,'']]], + ['dmbname_652',['DmbName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad19fc1b2afa0669c86ba252638d8b9f9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.DmbName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a950ac6f5b0cbcb2680546968c79486a1',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a0f016a86340749d5ca335c0ebc5d39a7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a82633d2589d4ab55afdefe5be69bcd36',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.DmbName()']]], + ['dmbprovider_653',['DmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad43adafe380a7db4160c975f67340126',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.DmbProvider()']]], + ['dmbprovider_2ecs_654',['DmbProvider.cs',['../_dmb_provider_8cs.html',1,'']]], + ['dmeextension_655',['DmeExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a373e2cd0c56f6826367b9aebf150040f',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['dmename_656',['DmeName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#a62c90f6d2a9a109318bb3fba05afead0',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], + ['dmoutputdisplay_657',['DMOutputDisplay',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#ab200c057753396a5087484aa9d677af8',1,'Tgstation::Server::Api::Models::DiscordConnectionStringBuilder']]], + ['donotdeletethissession_658',['DoNotDeleteThisSession',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae54582fd5e1f354554c9a0402eb72a2b',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DoNotDeleteThisSession()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aefcf67dd06a656e319e6d6e42a2aef81',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DoNotDeleteThisSession()']]], + ['down_659',['Down',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#ae0f4cc2dd9b29f92f03b254d9411140b',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a1c0857d0051862bb633c92aa072e47bd',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a70b456f851dae6ac43d48e2170d975ce',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a9233da9df7bb2bbbf399a8225a77dfc5',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#a8c179cd8b856bf48a6ae1b5134ed5caf',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a5ce4a6670e01c07bc7e7f96e0834f201',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ad16a541bed641a4299ad34c836d35381',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a985c501dd70a3bde97d5664e32d6ec4f',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#ab73d9fedcdc7d6f8c1961984b60a6a74',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a65028283085928ece01cd4d4c43dd16c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ae8f00fc3a07d7375ce51b8f129369088',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#a75731f56be6e24f24ad159d275e16665',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a6d996f6780dc488d4cc7cb9d9804481e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a2ab30ec2c22da1e82035bd86885d0a19',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a0fd91dc305f512bb5c3d2a9d9bda2d6e',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a7913c39e263b705e6ed1ba52d4dad6ff',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#acf6df5f177b238f879d6cadc9c212c8f',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a08643345b848248c54f6391c441afca0',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7a360f89edab0412cbf2522317c503a7',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#ad60c496d7dec72affca9fac2b6131912',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ac0aa836ba342d7d6f1b775d354466f9a',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ac2a807dd610b05efff586abc8fc5838c',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#a69f92765673944b287c528ef67ac628f',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a051e7067eb3622929d13230cd270136a',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a46fc331b3a27bdc1a3220d16991fd676',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a2b882b3dc7c98709f515357624fd5c7d',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a7eb735e2cac5616d83e1fc523950a7a7',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a29c2467e5b26498fdc9be4daf32190e6',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#af59f624ac40ca4702a4ceee81043c686',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a6699ad0573ce9d6809adb8275aef1e4e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aecedd67bcc41584f5cc7ce3e43991e67',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a69db556c8f9816d01d3acfe308c32d0c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a452f5f223962a06f1f4aac9250a98f7a',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a00aad2d1a76c69ee46d01f608bec097b',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a79220430d6011f769ff13ab1eece5edd',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a91b4446c41d615ad2513be276114100e',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a75a8797a59d9d37f823c1e8141c48148',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a75b4c0c1b4dce285abf160ca70fa7ad0',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a65160a3abe4072ec1f844961f600b6da',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a71446c05ce0d2861a0a22e2a01f4d89d',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a0310dac83148c1460053a83c2b0a453b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#aeba16375a98e6314db22f48319e39d81',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4ecfa74d942bf845f49016ed7e0c01c9',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#ae854d9dd602db118b7711bf4a13b9b2a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aef19a599caab07370c84bf792cd002e8',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a3a5535279567ec208518789362b10040',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a23b83a4977a3869e6a5c1975586411f1',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a11dfa79c963f480b402307af39034789',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a835767cfae5418f6e289022d1d1ae7ac',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html#a792df9e381ad5ed9bfc9441487ce6ea0',1,'Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html#a38931c1859c59c0991c6a54b2dff560c',1,'Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html#added5a11d65c29997659a974ce398362',1,'Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html#a64a95198e3162f8c094904534dbb3fd9',1,'Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Down()']]], + ['downgrade_660',['Downgrade',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ae30cd4eb76ba111b3fcd0e1b3622716d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Downgrade()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a83bee4040049ba8768dcb04ae7f50deb',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Downgrade()']]], + ['downgradeversion_661',['downgradeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a909262eddcaca553541c052dbf98b325',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['downloadfile_662',['DownloadFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a509e05cc7905cda41869f57bee5c6c58',1,'Tgstation.Server.Host.IO.DefaultIOManager.DownloadFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a20647d9e4dd09b806e407cd5c8a23b9b',1,'Tgstation.Server.Host.IO.IIOManager.DownloadFile()']]], + ['downloadlogs_663',['DownloadLogs',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a58226070c23da85922d478f497efa9fd',1,'Tgstation::Server::Api::Rights']]], + ['downloadversion_664',['DownloadVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#af3c14961e49ea0fcc923d75ae1eec19a',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DownloadVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a827552d8311f380aecac2fd75beecc52',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DownloadVersion()']]], + ['dreamdaemon_665',['DreamDaemon',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html',1,'Tgstation.Server.Api.Models.DreamDaemon'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a42831355d8d0cd578680f7f8f3f1124a',1,'Tgstation.Server.Api.Routes.DreamDaemon()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a3d0fe52c8e2428ab13df3f14a4c9d36e',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamDaemon()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a6e49e9e7b6d23a95f9839ab4add778',1,'Tgstation.Server.Client.Components.InstanceClient.DreamDaemon()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab5eab4143b5b6250e72b4ea05b2a039c',1,'Tgstation.Server.Client.Components.DreamDaemonClient.DreamDaemon()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a82a60e2400e19cffe6b38b295e10d4c8',1,'Tgstation.Server.Api.Rights.DreamDaemon()']]], + ['dreamdaemon_2ecs_666',['DreamDaemon.cs',['../_dream_daemon_8cs.html',1,'']]], + ['dreamdaemonclient_667',['DreamDaemonClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html',1,'Tgstation.Server.Client.Components.DreamDaemonClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a8bf0ad726b61e3dbc31a53c7ea0822c2',1,'Tgstation.Server.Client.Components.DreamDaemonClient.DreamDaemonClient()']]], + ['dreamdaemonclient_2ecs_668',['DreamDaemonClient.cs',['../_dream_daemon_client_8cs.html',1,'']]], + ['dreamdaemoncontroller_669',['DreamDaemonController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html',1,'Tgstation.Server.Host.Controllers.DreamDaemonController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ad6d82fab816712a4c95163e0ee2a4d7d',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.DreamDaemonController()']]], + ['dreamdaemoncontroller_2ecs_670',['DreamDaemonController.cs',['../_dream_daemon_controller_8cs.html',1,'']]], + ['dreamdaemondoublesoft_671',['DreamDaemonDoubleSoft',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a226919045a54d1af86e0c8be046dcafd',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonduplicateports_672',['DreamDaemonDuplicatePorts',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac813e5aec42e9884126fecdecdf481ee',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonexecutablename_673',['DreamDaemonExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a0e3bcbe1b14ed825ea567a6f859884f7',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['dreamdaemonlaunchparameters_674',['DreamDaemonLaunchParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['dreamdaemonlaunchparameters_2ecs_675',['DreamDaemonLaunchParameters.cs',['../_dream_daemon_launch_parameters_8cs.html',1,'']]], + ['dreamdaemonname_676',['DreamDaemonName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a307f7487e7a407203c85b86bc9df4f8f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamDaemonName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad43d91cf402c0084067dee5d1b182cde',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamDaemonName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#aefaefa1cca8328a36996f286b42d310a',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamDaemonName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a3a29cd2508c8826713fc05095c87ee28',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamDaemonName()']]], + ['dreamdaemonoffline_677',['DreamDaemonOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8d6c57ae1b684c123fbc6598c0c3200e',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonpath_678',['DreamDaemonPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aebbd445eb581a534e4ad8ff6b0f6c1ce',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamDaemonPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#af7c6d39dcd1075f42e8721446b5e159f',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamDaemonPath()']]], + ['dreamdaemonportinuse_679',['DreamDaemonPortInUse',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a75219810993f7db0f15458d8c5fa71e5',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonrights_680',['DreamDaemonRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a8367896a1a9ff6e745d0c62b85d8fd0e',1,'Tgstation.Server.Api.Models.InstanceUser.DreamDaemonRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49',1,'Tgstation.Server.Api.Rights.DreamDaemonRights()']]], + ['dreamdaemonrights_2ecs_681',['DreamDaemonRights.cs',['../_dream_daemon_rights_8cs.html',1,'']]], + ['dreamdaemonsecurity_682',['DreamDaemonSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonsecurity_2ecs_683',['DreamDaemonSecurity.cs',['../_dream_daemon_security_8cs.html',1,'']]], + ['dreamdaemonsettings_684',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Host.Models.DreamDaemonSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae03574f8c27c8c179b6d1b8c6f71532e',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamDaemonSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab13ccb4c344a982d5af87d5b3f51bd79',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamDaemonSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a834db5965b255a765f7ae274e4104f36',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamDaemonSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a94cb9055338f1d52397f10aab18f554d',1,'Tgstation.Server.Host.Models.Instance.DreamDaemonSettings()']]], + ['dreamdaemonsettings_2ecs_685',['DreamDaemonSettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)']]], + ['dreamdaemonsettingscollection_686',['dreamDaemonSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8b4bad8f9cad725b02e88b98fef96e7a',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['dreammaker_687',['DreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html',1,'Tgstation.Server.Api.Models.DreamMaker'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#acc5a1421208a8e29080110f54b364ba8',1,'Tgstation.Server.Api.Routes.DreamMaker()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a5a505ae2d713942640558e34222b444b',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af92b0694efe4453eee2ea50d9c18616e',1,'Tgstation.Server.Client.Components.InstanceClient.DreamMaker()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#acbc6bed95fa79891224fc0b1c5255071',1,'Tgstation.Server.Host.Components.IInstanceCore.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a5774569e57a7e7b15ce6dafed0904ab0',1,'Tgstation.Server.Host.Components.Instance.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a0392aae240c5fe54f476cff7c6079581',1,'Tgstation.Server.Host.Components.InstanceWrapper.DreamMaker()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a62edd66a221c9b7044bd068dcf7324d9',1,'Tgstation.Server.Client.Components.DreamMakerClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae0e8004e9266522f60980b7724eb9252',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DreamMaker()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20af179dcd47770d7cc1eb149ee1a0d06af',1,'Tgstation.Server.Api.Rights.DreamMaker()']]], + ['dreammaker_2ecs_688',['DreamMaker.cs',['../_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html',1,'(Global Namespace)']]], + ['dreammakerclient_689',['DreamMakerClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html',1,'Tgstation.Server.Client.Components.DreamMakerClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a04dd94462a3bb8aad7469c84d53f78a9',1,'Tgstation.Server.Client.Components.DreamMakerClient.DreamMakerClient()']]], + ['dreammakerclient_2ecs_690',['DreamMakerClient.cs',['../_dream_maker_client_8cs.html',1,'']]], + ['dreammakercompilejobinprogress_691',['DreamMakerCompileJobInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8adef39f019c5381bcf05b550aa2ad853e',1,'Tgstation::Server::Api::Models']]], + ['dreammakercontroller_692',['DreamMakerController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html',1,'Tgstation.Server.Host.Controllers.DreamMakerController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a5434cff9c9fa15212f0630672f48de13',1,'Tgstation.Server.Host.Controllers.DreamMakerController.DreamMakerController()']]], + ['dreammakercontroller_2ecs_693',['DreamMakerController.cs',['../_dream_maker_controller_8cs.html',1,'']]], + ['dreammakerexecutablename_694',['DreamMakerExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a1563b9bcd5a68d5d2528475956e7d9e8',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['dreammakerexitcode_695',['DreamMakerExitCode',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a622e9926f7b9fb6f507c649d878cefd7',1,'Tgstation::Server::Api::Models']]], + ['dreammakerinvalidvalidation_696',['DreamMakerInvalidValidation',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf9ba51c8cb292981b8d5e89896aefc2',1,'Tgstation::Server::Api::Models']]], + ['dreammakermissingdme_697',['DreamMakerMissingDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab0b01b336cd620d6b988afb5e02b7370',1,'Tgstation::Server::Api::Models']]], + ['dreammakername_698',['DreamMakerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a676cee80ef384243348ee21cfc6a0f28',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamMakerName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a40f9cadd672f9e36c3a89be2df1cb4b5',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamMakerName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a402cdbabab1493b5d26781fa78151e87',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamMakerName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a86f71ff5e6ef8277a1867e81b8f5e42d',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamMakerName()']]], + ['dreammakernevervalidated_699',['DreamMakerNeverValidated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a030d0af385ee501b6475b0e75d733081',1,'Tgstation::Server::Api::Models']]], + ['dreammakernodme_700',['DreamMakerNoDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8f6b203dc15eb3288fc96f5f98ab7779',1,'Tgstation::Server::Api::Models']]], + ['dreammakerpath_701',['DreamMakerPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a4d5315a7648111cd6851fe47dfe859a2',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamMakerPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a45a3041c6d9e0ba81d361090549bb072',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamMakerPath()']]], + ['dreammakerrights_702',['DreamMakerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a51bb2f3a485f142fc1b60cc1c4c53052',1,'Tgstation.Server.Api.Models.InstanceUser.DreamMakerRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5d',1,'Tgstation.Server.Api.Rights.DreamMakerRights()']]], + ['dreammakerrights_2ecs_703',['DreamMakerRights.cs',['../_dream_maker_rights_8cs.html',1,'']]], + ['dreammakersettings_704',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html',1,'Tgstation.Server.Host.Models.DreamMakerSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a77fbed3e1799f2e4c6edec6dc2f415bb',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamMakerSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a670cf85f3bbc465d5c1f89cdef983f33',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamMakerSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aac927b14c117b14a4bafdf3811c2c859',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamMakerSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a09929f71b77a27fc5f609ff64cf190d6',1,'Tgstation.Server.Host.Models.Instance.DreamMakerSettings()']]], + ['dreammakersettings_2ecs_705',['DreamMakerSettings.cs',['../_dream_maker_settings_8cs.html',1,'']]], + ['dreammakersettingscollection_706',['dreamMakerSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a333d57bfa4adf560b11b6df69c110be9',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['dreammakervalidationtimeout_707',['DreamMakerValidationTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3706f3d8378fb4d2e3d1f1a6ea74dd56',1,'Tgstation::Server::Api::Models']]], + ['drop_708',['Drop',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#abd512a5dfbfbc3f64670a963ec808de5',1,'Tgstation.Server.Host.Database.DatabaseContext.Drop()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a6216e8a817ab6700a155699bb8013584',1,'Tgstation.Server.Host.Database.IDatabaseContext.Drop()']]], + ['dropdatabase_709',['DropDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a30f47f73075f305073ad72ef3ff44cd4',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]] ]; diff --git a/search/all_5.html b/search/all_5.html index 71848afa5d..cc7d974ec0 100644 --- a/search/all_5.html +++ b/search/all_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_5.js b/search/all_5.js index 0da0f44ad8..cebc405a0d 100644 --- a/search/all_5.js +++ b/search/all_5.js @@ -1,37 +1,37 @@ var searchData= [ - ['editownpassword_687',['EditOwnPassword',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6ca04cb3c1c0f79210a1e67312debeb5',1,'Tgstation::Server::Api::Rights']]], - ['elementtype_688',['ElementType',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#af1bfffe1d81ce602ed10b17359361cff',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['enable_689',['Enable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a15564859b17400f1bcc723a5fbee8121',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], - ['enablecustomchatcommands_690',['EnableCustomChatCommands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a2059702d832059ed0ce009413cb646af',1,'Tgstation.Server.Host.Components.Session.ISessionController.EnableCustomChatCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab7fa60010e2afa686bc6447c0df77704',1,'Tgstation.Server.Host.Components.Session.SessionController.EnableCustomChatCommands()']]], - ['enabled_691',['Enabled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a4d973efbcdc9eee5597989f2667c42b3',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Enabled()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a4a0a4bb6e68f049511123dbb5f1dc094',1,'Tgstation.Server.Api.Models.Internal.User.Enabled()']]], - ['enqueuemessage_692',['EnqueueMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac45c189505744c6f1012461193fca877',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['ensuredirectories_693',['EnsureDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a067086b7757d904b99cabe914a925c',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['entityid_694',['EntityId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html',1,'Tgstation::Server::Api::Models']]], - ['entityid_2ecs_695',['EntityId.cs',['../_entity_id_8cs.html',1,'']]], - ['enumchildwindows_696',['EnumChildWindows',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a6b4b37ca121784ecd63c477cc022415d',1,'Tgstation::Server::Host::NativeMethods']]], - ['enumtype_697',['enumType',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a0c48471ab4bf2fb0959307c17de7c35b',1,'Tgstation::Server::Host::Core::OpenApiEnumVarNamesExtension']]], - ['enumwindow_698',['EnumWindow',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a8ebd64b49b87ea79d0b6b6fd5d4290b4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['enumwindowproc_699',['EnumWindowProc',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a865bfe43e7d4085326ccf40500eb4222',1,'Tgstation::Server::Host::NativeMethods']]], - ['errorcode_700',['ErrorCode',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a7a9f529323e53df2815e3c1e7fc1d51b',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorCode()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab248f62271e87c90f007c40058c06032',1,'Tgstation.Server.Api.Models.Internal.Job.ErrorCode()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a48a3f168920dc3f7c5643f2c3cf51a41',1,'Tgstation.Server.Client.ApiException.ErrorCode()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a9eeebff62f994dcfe5159662f611056b',1,'Tgstation.Server.Host.Jobs.JobException.ErrorCode()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8',1,'Tgstation.Server.Api.Models.ErrorCode()']]], - ['errorcode_2ecs_701',['ErrorCode.cs',['../_error_code_8cs.html',1,'']]], - ['errorcodeextensions_702',['ErrorCodeExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html',1,'Tgstation::Server::Api::Models']]], - ['errorcodeextensions_2ecs_703',['ErrorCodeExtensions.cs',['../_error_code_extensions_8cs.html',1,'']]], - ['errormessage_704',['ErrorMessage',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html',1,'Tgstation.Server.Api.Models.ErrorMessage'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html#a1d831028e8763f5adea930f2b7ea0661',1,'Tgstation.Server.Host.Components.Interop.DMApiResponse.ErrorMessage()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a594af171f50f98e2be8481692c6584cc',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#abfbfef9f57a4e2d279cd3fa227b32711',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage(ErrorCode errorCode)']]], - ['errormessage_2ecs_705',['ErrorMessage.cs',['../_error_message_8cs.html',1,'']]], - ['eventconsumer_706',['EventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html',1,'Tgstation.Server.Host.Components.Events.EventConsumer'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a8954b7610df4c6ad14ccf71126651044',1,'Tgstation.Server.Host.Components.Events.EventConsumer.EventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a089219b6d371df8777befb66d5ca9ff7',1,'Tgstation.Server.Host.Components.Byond.ByondManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#abfcbd4e2f809faa445f7ea56fe4e5f0e',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a16093d1600746a3ab9c232461c5d7da6',1,'Tgstation.Server.Host.Components.Instance.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aeee0875d15975270e6f16417f78423a6',1,'Tgstation.Server.Host.Components.Repository.Repository.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad06470fddc597f80d4cef6b96c30b3e0',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5768c37124d54e80c66dc63d28d0dea4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.eventConsumer()']]], - ['eventconsumer_2ecs_707',['EventConsumer.cs',['../_event_consumer_8cs.html',1,'']]], - ['eventnotification_708',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html',1,'Tgstation.Server.Host.Components.Interop.Topic.EventNotification'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a78e5accbd43c2910f2be9ee87946afa2',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.EventNotification()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#af7bba6883ff8690cb16cf257291aca02',1,'Tgstation.Server.Host.Components.Interop.Topic.EventNotification.EventNotification()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8af524c541ecdd65058d3982874f110deb',1,'Tgstation.Server.Host.Components.Interop.Topic.EventNotification()']]], - ['eventnotification_2ecs_709',['EventNotification.cs',['../_event_notification_8cs.html',1,'']]], - ['eventscriptattribute_710',['EventScriptAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html',1,'Tgstation.Server.Host.Components.Events.EventScriptAttribute'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a014125f7696774d3ab87e2377d6d779f',1,'Tgstation.Server.Host.Components.Events.EventScriptAttribute.EventScriptAttribute()']]], - ['eventscriptattribute_2ecs_711',['EventScriptAttribute.cs',['../_event_script_attribute_8cs.html',1,'']]], - ['eventscriptssubdirectory_712',['EventScriptsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af5dbdc7fa9d0999905d214a98c4604ee',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['eventtype_713',['EventType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7',1,'Tgstation::Server::Host::Components::Events']]], - ['eventtype_2ecs_714',['EventType.cs',['../_event_type_8cs.html',1,'']]], - ['eventtypescriptfilenamemap_715',['EventTypeScriptFileNameMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a595152ecd2fd978f124506abce9250b3',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['exceptiondetails_716',['ExceptionDetails',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#afb20366fa3c290f5478e92e18cc94317',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['exit_717',['Exit',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812afef46e5063ce3dc78b8ae64fa474241d',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['exitcode_718',['ExitCode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a255d1c77cd0332b3a433415bfb01c4cd',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], - ['expiresat_719',['ExpiresAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#a086733898b6eace9e4955bcec93f60e0',1,'Tgstation::Server::Api::Models::Token']]], - ['expression_720',['Expression',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a4d6cac39c1f26701c9dddeaa880efdc6',1,'Tgstation::Server::Host::Database::DatabaseCollection']]] + ['editownpassword_710',['EditOwnPassword',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6ca04cb3c1c0f79210a1e67312debeb5',1,'Tgstation::Server::Api::Rights']]], + ['elementtype_711',['ElementType',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#af1bfffe1d81ce602ed10b17359361cff',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['enable_712',['Enable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a15564859b17400f1bcc723a5fbee8121',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], + ['enablecustomchatcommands_713',['EnableCustomChatCommands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a2059702d832059ed0ce009413cb646af',1,'Tgstation.Server.Host.Components.Session.ISessionController.EnableCustomChatCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab7fa60010e2afa686bc6447c0df77704',1,'Tgstation.Server.Host.Components.Session.SessionController.EnableCustomChatCommands()']]], + ['enabled_714',['Enabled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a4d973efbcdc9eee5597989f2667c42b3',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Enabled()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a4a0a4bb6e68f049511123dbb5f1dc094',1,'Tgstation.Server.Api.Models.Internal.User.Enabled()']]], + ['enqueuemessage_715',['EnqueueMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac45c189505744c6f1012461193fca877',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['ensuredirectories_716',['EnsureDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a067086b7757d904b99cabe914a925c',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['entityid_717',['EntityId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html',1,'Tgstation::Server::Api::Models']]], + ['entityid_2ecs_718',['EntityId.cs',['../_entity_id_8cs.html',1,'']]], + ['enumchildwindows_719',['EnumChildWindows',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a6b4b37ca121784ecd63c477cc022415d',1,'Tgstation::Server::Host::NativeMethods']]], + ['enumtype_720',['enumType',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a0c48471ab4bf2fb0959307c17de7c35b',1,'Tgstation::Server::Host::Core::OpenApiEnumVarNamesExtension']]], + ['enumwindow_721',['EnumWindow',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a8ebd64b49b87ea79d0b6b6fd5d4290b4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['enumwindowproc_722',['EnumWindowProc',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a865bfe43e7d4085326ccf40500eb4222',1,'Tgstation::Server::Host::NativeMethods']]], + ['errorcode_723',['ErrorCode',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a7a9f529323e53df2815e3c1e7fc1d51b',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorCode()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab248f62271e87c90f007c40058c06032',1,'Tgstation.Server.Api.Models.Internal.Job.ErrorCode()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a48a3f168920dc3f7c5643f2c3cf51a41',1,'Tgstation.Server.Client.ApiException.ErrorCode()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a9eeebff62f994dcfe5159662f611056b',1,'Tgstation.Server.Host.Jobs.JobException.ErrorCode()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8',1,'Tgstation.Server.Api.Models.ErrorCode()']]], + ['errorcode_2ecs_724',['ErrorCode.cs',['../_error_code_8cs.html',1,'']]], + ['errorcodeextensions_725',['ErrorCodeExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html',1,'Tgstation::Server::Api::Models']]], + ['errorcodeextensions_2ecs_726',['ErrorCodeExtensions.cs',['../_error_code_extensions_8cs.html',1,'']]], + ['errormessage_727',['ErrorMessage',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html',1,'Tgstation.Server.Api.Models.ErrorMessage'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html#a1d831028e8763f5adea930f2b7ea0661',1,'Tgstation.Server.Host.Components.Interop.DMApiResponse.ErrorMessage()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a594af171f50f98e2be8481692c6584cc',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#abfbfef9f57a4e2d279cd3fa227b32711',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage(ErrorCode errorCode)']]], + ['errormessage_2ecs_728',['ErrorMessage.cs',['../_error_message_8cs.html',1,'']]], + ['eventconsumer_729',['EventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html',1,'Tgstation.Server.Host.Components.Events.EventConsumer'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a089219b6d371df8777befb66d5ca9ff7',1,'Tgstation.Server.Host.Components.Byond.ByondManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#abfcbd4e2f809faa445f7ea56fe4e5f0e',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a16093d1600746a3ab9c232461c5d7da6',1,'Tgstation.Server.Host.Components.Instance.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aeee0875d15975270e6f16417f78423a6',1,'Tgstation.Server.Host.Components.Repository.Repository.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad06470fddc597f80d4cef6b96c30b3e0',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5768c37124d54e80c66dc63d28d0dea4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a8954b7610df4c6ad14ccf71126651044',1,'Tgstation.Server.Host.Components.Events.EventConsumer.EventConsumer()']]], + ['eventconsumer_2ecs_730',['EventConsumer.cs',['../_event_consumer_8cs.html',1,'']]], + ['eventnotification_731',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html',1,'Tgstation.Server.Host.Components.Interop.Topic.EventNotification'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a78e5accbd43c2910f2be9ee87946afa2',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.EventNotification()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#af7bba6883ff8690cb16cf257291aca02',1,'Tgstation.Server.Host.Components.Interop.Topic.EventNotification.EventNotification()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8af524c541ecdd65058d3982874f110deb',1,'Tgstation.Server.Host.Components.Interop.Topic.EventNotification()']]], + ['eventnotification_2ecs_732',['EventNotification.cs',['../_event_notification_8cs.html',1,'']]], + ['eventscriptattribute_733',['EventScriptAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html',1,'Tgstation.Server.Host.Components.Events.EventScriptAttribute'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a014125f7696774d3ab87e2377d6d779f',1,'Tgstation.Server.Host.Components.Events.EventScriptAttribute.EventScriptAttribute()']]], + ['eventscriptattribute_2ecs_734',['EventScriptAttribute.cs',['../_event_script_attribute_8cs.html',1,'']]], + ['eventscriptssubdirectory_735',['EventScriptsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af5dbdc7fa9d0999905d214a98c4604ee',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['eventtype_736',['EventType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7',1,'Tgstation::Server::Host::Components::Events']]], + ['eventtype_2ecs_737',['EventType.cs',['../_event_type_8cs.html',1,'']]], + ['eventtypescriptfilenamemap_738',['EventTypeScriptFileNameMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a595152ecd2fd978f124506abce9250b3',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['exceptiondetails_739',['ExceptionDetails',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#afb20366fa3c290f5478e92e18cc94317',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['exit_740',['Exit',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812afef46e5063ce3dc78b8ae64fa474241d',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['exitcode_741',['ExitCode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a255d1c77cd0332b3a433415bfb01c4cd',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], + ['expiresat_742',['ExpiresAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#a086733898b6eace9e4955bcec93f60e0',1,'Tgstation::Server::Api::Models::Token']]], + ['expression_743',['Expression',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a4d6cac39c1f26701c9dddeaa880efdc6',1,'Tgstation::Server::Host::Database::DatabaseCollection']]] ]; diff --git a/search/all_6.html b/search/all_6.html index a24601b907..8c675b468a 100644 --- a/search/all_6.html +++ b/search/all_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_6.js b/search/all_6.js index 0a1b54e703..2e25ead3b0 100644 --- a/search/all_6.js +++ b/search/all_6.js @@ -1,17 +1,19 @@ var searchData= [ - ['features_721',['Features',['../features.html',1,'']]], - ['features_2edox_722',['Features.dox',['../_features_8dox.html',1,'']]], - ['fetch_723',['Fetch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a3660f1ded05e762c347ffc43c6d71700',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Fetch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a24fb43b841e486d791dc52078ec1d870',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Fetch()']]], - ['fetchorigin_724',['FetchOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a749160f7ea74fc975303e46d5ad196e0',1,'Tgstation.Server.Host.Components.Repository.IRepository.FetchOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a9e88ae9848a65008f544cfd34071f115',1,'Tgstation.Server.Host.Components.Repository.Repository.FetchOrigin()']]], - ['file_725',['File',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6e67fe387a01c4d8e686734ad936f8b0',1,'Tgstation.Server.Api.Routes.File()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a51d11df3997c7f49c6fb8e7784d3f2d0',1,'Tgstation.Server.Host.Controllers.ConfigurationController.File()']]], - ['fileexists_726',['FileExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab1b31bbcb5d4bdc0650d81a19af5d6ae',1,'Tgstation.Server.Host.IO.DefaultIOManager.FileExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4088b7924c694d628acd99b5a0829c86',1,'Tgstation.Server.Host.IO.IIOManager.FileExists()']]], - ['fileloggingconfiguration_727',['FileLoggingConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a7eed5e4e0e006cb826ef2043e8f022ad',1,'Tgstation.Server.Host.Setup.IPostSetupServices.FileLoggingConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a4be1377bd389e012f4a1ce6251c5bc8b',1,'Tgstation.Server.Host.Setup.PostSetupServices.FileLoggingConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a3a7e9c7e19c93ccfac6f3cf1df6ddcfc',1,'Tgstation.Server.Host.Controllers.AdministrationController.fileLoggingConfiguration()']]], - ['fileloggingconfiguration_2ecs_728',['FileLoggingConfiguration.cs',['../_file_logging_configuration_8cs.html',1,'']]], - ['fileloggingconfigurationoptions_729',['fileLoggingConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a7a7c03faa8541f6a8d2a54d62542799c',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], - ['findwindow_730',['FindWindow',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aaff201757860dd95c1ab3047ac6e2ec8',1,'Tgstation::Server::Host::NativeMethods']]], - ['forbidduetomodeconflicts_731',['ForbidDueToModeConflicts',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a3478628e5a443b65c9ffb565d4da2cde',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], - ['force_732',['Force',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a9eb6b78a99cdb6ffd3d40d18621d9f80',1,'Tgstation::Server::Host::Configuration']]], - ['friendlyname_733',['FriendlyName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a8e131ca82dfe8f7a86adac27ff1f5ab8',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.FriendlyName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a73318a0ed859219085f4e1496ee5c9ee',1,'Tgstation.Server.Host.Components.Chat.ChatUser.FriendlyName()']]], - ['fromcompilejob_734',['FromCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#af0268d30e70a14c2cff65d09e6ca6df5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a5a61b3a38bdb256b40a1630432356dc7',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.FromCompileJob()']]] + ['faildeployment_744',['FailDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a938c17c6436f93fa99340d94f900ad23',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.FailDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#ad7f5e3391e59c578b004c57f4706df35',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.FailDeployment()']]], + ['features_745',['Features',['../features.html',1,'']]], + ['features_2edox_746',['Features.dox',['../_features_8dox.html',1,'']]], + ['fetch_747',['Fetch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a3660f1ded05e762c347ffc43c6d71700',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Fetch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a24fb43b841e486d791dc52078ec1d870',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Fetch()']]], + ['fetchorigin_748',['FetchOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a749160f7ea74fc975303e46d5ad196e0',1,'Tgstation.Server.Host.Components.Repository.IRepository.FetchOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a9e88ae9848a65008f544cfd34071f115',1,'Tgstation.Server.Host.Components.Repository.Repository.FetchOrigin()']]], + ['file_749',['File',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6e67fe387a01c4d8e686734ad936f8b0',1,'Tgstation.Server.Api.Routes.File()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a51d11df3997c7f49c6fb8e7784d3f2d0',1,'Tgstation.Server.Host.Controllers.ConfigurationController.File()']]], + ['fileexists_750',['FileExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab1b31bbcb5d4bdc0650d81a19af5d6ae',1,'Tgstation.Server.Host.IO.DefaultIOManager.FileExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4088b7924c694d628acd99b5a0829c86',1,'Tgstation.Server.Host.IO.IIOManager.FileExists()']]], + ['fileloggingconfiguration_751',['FileLoggingConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a3a7e9c7e19c93ccfac6f3cf1df6ddcfc',1,'Tgstation.Server.Host.Controllers.AdministrationController.fileLoggingConfiguration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a7eed5e4e0e006cb826ef2043e8f022ad',1,'Tgstation.Server.Host.Setup.IPostSetupServices.FileLoggingConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a4be1377bd389e012f4a1ce6251c5bc8b',1,'Tgstation.Server.Host.Setup.PostSetupServices.FileLoggingConfiguration()']]], + ['fileloggingconfiguration_2ecs_752',['FileLoggingConfiguration.cs',['../_file_logging_configuration_8cs.html',1,'']]], + ['fileloggingconfigurationoptions_753',['fileLoggingConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a7a7c03faa8541f6a8d2a54d62542799c',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], + ['findwindow_754',['FindWindow',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aaff201757860dd95c1ab3047ac6e2ec8',1,'Tgstation::Server::Host::NativeMethods']]], + ['forbidduetomodeconflicts_755',['ForbidDueToModeConflicts',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a3478628e5a443b65c9ffb565d4da2cde',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], + ['force_756',['Force',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a9eb6b78a99cdb6ffd3d40d18621d9f80',1,'Tgstation::Server::Host::Configuration']]], + ['formatexceptionforusers_757',['FormatExceptionForUsers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8cdce0ecb73a635564b1eafc0fc0372f',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['friendlyname_758',['FriendlyName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a8e131ca82dfe8f7a86adac27ff1f5ab8',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.FriendlyName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a73318a0ed859219085f4e1496ee5c9ee',1,'Tgstation.Server.Host.Components.Chat.ChatUser.FriendlyName()']]], + ['fromcompilejob_759',['FromCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#af0268d30e70a14c2cff65d09e6ca6df5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a5a61b3a38bdb256b40a1630432356dc7',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.FromCompileJob()']]] ]; diff --git a/search/all_7.html b/search/all_7.html index e42e45b421..42e4d6181b 100644 --- a/search/all_7.html +++ b/search/all_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_7.js b/search/all_7.js index 06d5570d63..c70316e42f 100644 --- a/search/all_7.js +++ b/search/all_7.js @@ -1,71 +1,76 @@ var searchData= [ - ['gameiomanager_735',['GameIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a61cde2a19bd6fc5619a5bad94a3c5f9b',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['gamestaticfilessubdirectory_736',['GameStaticFilesSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae8e07adce00ed418cb29954182699623',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['gcorefailure_737',['GCoreFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a55504e6a1e187426ae2a94c480dd8dd1',1,'Tgstation::Server::Api::Models']]], - ['generalconfiguration_738',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a861b5a7e4e45a84ee5eddb2279f9eacf',1,'Tgstation.Server.Host.Components.Instance.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aa06616bc07291790c57bea22bd90a48d',1,'Tgstation.Server.Host.Components.InstanceFactory.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa2d14e2052d1ad81104ec0e5afa218e',1,'Tgstation.Server.Host.Components.InstanceManager.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#adb0b189a10ec43510b9f10cff91106fd',1,'Tgstation.Server.Host.Controllers.AdministrationController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78f4994c9c4f2cc58d0a6d227e0195a9',1,'Tgstation.Server.Host.Controllers.HomeController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a4f60f72c082a222a31383dbfceb755a6',1,'Tgstation.Server.Host.Controllers.InstanceController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#abe159da9c5fbc8eba3c3feff488988a0',1,'Tgstation.Server.Host.Controllers.RepositoryController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a79e1198432e7e557c8d72b3adf71bbf1',1,'Tgstation.Server.Host.Controllers.UserController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a373bfe28d1a88706c72e9f64e7756843',1,'Tgstation.Server.Host.Core.ServerPortProivder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a51341ea00d7cfc1eead8b52235e76257',1,'Tgstation.Server.Host.Database.DatabaseSeeder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a2823acb68609f9953788b1460ca8cdd3',1,'Tgstation.Server.Host.Server.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a47f6e49529ffb5b7760e1a5713f590e4',1,'Tgstation.Server.Host.Setup.SetupWizard.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#aa163ef7f1b2ec0e29736e7cfcfd20f03',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.GeneralConfiguration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a3a19dda55bff763cbbc27de56905ae5a',1,'Tgstation.Server.Host.Setup.IPostSetupServices.GeneralConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a454fd5fdcdd712c84d205389197cb33a',1,'Tgstation.Server.Host.Setup.PostSetupServices.GeneralConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0d5ca385e9de5c07753ed5ff5ad84b52',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.GeneralConfiguration()']]], - ['generalconfiguration_2ecs_739',['GeneralConfiguration.cs',['../_general_configuration_8cs.html',1,'']]], - ['generalconfigurationoptions_740',['generalConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3ce96cf3d3ee5a94ef82ee90efcd5f07',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], - ['generatecommands_741',['GenerateCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a6d69dde344df916a244626be56bc1b78',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.GenerateCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html#a3f5fdca17c71257d34528f45f61ed469',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommandFactory.GenerateCommands()']]], - ['generatecredentialshandler_742',['GenerateCredentialsHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html#a30e3427729e4b3a67bbd3068be3213b4',1,'Tgstation.Server.Host.Components.Repository.ICredentialsProvider.GenerateCredentialsHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a8690f8be311b5092a11782a2c54b3728',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.GenerateCredentialsHandler()']]], - ['generatepushoptions_743',['GeneratePushOptions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae497427222edeac86fbaea36d2dac220',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['getactivecontroller_744',['GetActiveController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a81f31795e687423e39ed6a9e6dd82454',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.GetActiveController()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a634f53946305b875c65c04dfd1719830',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.GetActiveController()']]], - ['getadminuser_745',['GetAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1eed27ad5d706f6f3f4c691704205f67',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['getallchildhandles_746',['GetAllChildHandles',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a7b0c5446ce7d67f409cd743e74f32183',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['getasyncenumerator_747',['GetAsyncEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a6212ee32986277efe11bff2d46009ca7',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['getcombinedoutput_748',['GetCombinedOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a143445ea75400e7a5eafcdfefcb277bb',1,'Tgstation.Server.Host.System.IProcess.GetCombinedOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac0865b3b4306e3fde82f9ba2bb91340b',1,'Tgstation.Server.Host.System.Process.GetCombinedOutput()']]], - ['getcompilejob_749',['GetCompileJob',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aac86150cb373a42b2e6b373a464977ec',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetCompileJob()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a7b5cc5d3b3d5860cec8c9e0b84e5ec83',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetCompileJob()']]], - ['getconfigureaction_3c_20tdatabasecontext_20_3e_750',['GetConfigureAction< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aad405596b71424eee16791f412dbd42e',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['getcurrent_751',['GetCurrent',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6052301d3f6ed6eb477f74a081e2187e',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#af2bc1f5b4e9cd8531f44111b8eae71fa',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#aad49a7d5b5c5f6e796587da47e29215e',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.GetCurrent()']]], - ['getcurrentprocess_752',['GetCurrentProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a81eeee7944e490c141d2e7b66f651369',1,'Tgstation.Server.Host.System.IProcessExecutor.GetCurrentProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04581cbc596b3a53ef3e17752ca3cfb',1,'Tgstation.Server.Host.System.ProcessExecutor.GetCurrentProcess()']]], - ['getdirectories_753',['GetDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#acae0255ab165ae1421ece5b1d5fbdf29',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4813de766ae0c63cf3ba34e4a40626ca',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a254a4bab3839ca09cdeade65387523d7',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetDirectories()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a65612d712154495899633c1195579b08',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetDirectories()']]], - ['getdirectoryname_754',['GetDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a993c9bef376d9b28f47e97d8bdf21d04',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectoryName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a691970cc91e5576b06ed9ce14e51d9b8',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectoryName()']]], - ['getdotnetpath_755',['GetDotnetPath',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a8d0f1fffc5a866c3d542d2e1c106fbb4',1,'Tgstation::Server::Host::Watchdog::Watchdog']]], - ['getenumerator_756',['GetEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a22760f9ae163fd85e535b867454d718b',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9b882344750b9a126e181724dee145cb',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()']]], - ['geterroroutput_757',['GetErrorOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a6d681111b5ff6f12506dacf82b9f77f9',1,'Tgstation.Server.Host.System.IProcess.GetErrorOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a6326465402724922cf73994bb5e931e8',1,'Tgstation.Server.Host.System.Process.GetErrorOutput()']]], - ['getexecutingusername_758',['GetExecutingUsername',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a1981fd196af57d3f4ee8385ecbc50870',1,'Tgstation.Server.Host.System.IProcess.GetExecutingUsername()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#af76f476ae07e3e2d8c060d970897dfe0',1,'Tgstation.Server.Host.System.IProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a710e33bec7224c7ee6363af5fb5d8681',1,'Tgstation.Server.Host.System.PosixProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a8af1df99f5ed8cf15494e230243890e5',1,'Tgstation.Server.Host.System.Process.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a986ecee40f7bffce7e4db8d1c36c3b72',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.GetExecutingUsername()']]], - ['getfilename_759',['GetFileName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adf2a105e1c455565c3c15de9078f1282',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a0d6d5a54db205d2d1d45a927d57f5182',1,'Tgstation.Server.Host.IO.IIOManager.GetFileName()']]], - ['getfilenamewithoutextension_760',['GetFileNameWithoutExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5e595bab061d2fe0b1f6cb0454a44a12',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileNameWithoutExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ab6635afaf199a1396a743f3b46eac786',1,'Tgstation.Server.Host.IO.IIOManager.GetFileNameWithoutExtension()']]], - ['getfiles_761',['GetFiles',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a29ee8cd097023d261cab484b6732cdb6',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aca74c5436163f98c2780e8aa1468d098',1,'Tgstation.Server.Host.IO.IIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad8368416aaa9561f5a55f8705639060e',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetFiles()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a9a2b8e249e8a8f9786158e30b52471da',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetFiles()']]], - ['getfileswithextension_762',['GetFilesWithExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6a40b596effc389caef80b800b74359c',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFilesWithExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad4ce6628b1a44e825ae36b75e6b176c2',1,'Tgstation.Server.Host.IO.IIOManager.GetFilesWithExtension()']]], - ['getfulllogdirectory_763',['GetFullLogDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a6e9e186a1456017f692358f96bdab2c3',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['getgithubclient_764',['GetGitHubClient',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a35af4d06cfa01eea597d3e29e74b0e21',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['getid_765',['GetId',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aafc459bdd85faa34ca004f760699355d',1,'Tgstation.Server.Client.Components.ChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#af3ce02a1214ddb80ef5021683fa1c778',1,'Tgstation.Server.Client.Components.IChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#ab3a233f8693053d156993065bd4705cb',1,'Tgstation.Server.Client.Components.IInstanceUserClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a7fad6a1f5465b9bb5971787c5d782bd8',1,'Tgstation.Server.Client.Components.IJobsClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab231f97fcf3c7ac3c920bae0530c96a0',1,'Tgstation.Server.Client.Components.InstanceUserClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a1a7399807a0abd4dfaed05c1c0d3adff',1,'Tgstation.Server.Client.Components.JobsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ae1c05f75c697ddba9bf488cf899749fb',1,'Tgstation.Server.Client.IInstanceManagerClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ac8d222eb11e9fe074119eb2ae6fc9f2f',1,'Tgstation.Server.Client.InstanceManagerClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#acd126a0cc8f96eace12718d63c41d2ba',1,'Tgstation.Server.Client.IUsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ab903aa7a69c620191d5d13bae2ef621a',1,'Tgstation.Server.Client.UsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#acddc3fe9d04e7c00dc9a940b86389bb8',1,'Tgstation.Server.Host.Controllers.ChatController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a2f22a8f3436e55774dee2df922590ac8',1,'Tgstation.Server.Host.Controllers.DreamMakerController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a69e19a7f501fca2dd5d707f34edb4c79',1,'Tgstation.Server.Host.Controllers.InstanceController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a9e786fda53a079ad9427ec69af71b408',1,'Tgstation.Server.Host.Controllers.InstanceUserController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#aad5f209a424e97eeb42d75c6ff37f07d',1,'Tgstation.Server.Host.Controllers.JobController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7924175e380ba48b8623838f13c2521d',1,'Tgstation.Server.Host.Controllers.UserController.GetId()']]], - ['getinstance_766',['GetInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html#a8657fc0d88b55926cf930663d6a8789a',1,'Tgstation.Server.Host.Components.IInstanceCoreProvider.GetInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a35ea7d6144eef2f3370b31a4db62ff83',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstance()']]], - ['getinstancereference_767',['GetInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ae9607bccaf0751fd40d3ec32ce514c9f',1,'Tgstation.Server.Host.Components.IInstanceManager.GetInstanceReference()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a5b751fa556b5f95897d3c438bdfdff09',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstanceReference()']]], - ['getircchannelkey_768',['GetIrcChannelKey',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#acd8563e260bd596d20e0b7cfc0636e54',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], - ['getircchannelname_769',['GetIrcChannelName',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a400776d2d51bd050b788a760c00d889a',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], - ['getircchannelsplits_770',['GetIrcChannelSplits',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a683c05c25e16d532bcc146cbf8be9e49',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], - ['getjobids_771',['GetJobIds',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af654e884ec3b3eded2a180961c7ccfc5',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetJobIds()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a6dc9b4005f4070fe3c0dc3b5264ded10',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetJobIds()']]], - ['getlastmodified_772',['GetLastModified',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6b4ed943b61e68cc1f38dbb2dd3abc78',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetLastModified()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a291d4f10bc7972fbb518125e1331f634',1,'Tgstation.Server.Host.IO.IIOManager.GetLastModified()']]], - ['getlaunchresult_773',['GetLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aaffcc2d0b1cbf61822a98916181e149c',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['getlog_774',['GetLog',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a4729c542c5e10fc5b7aa0ff8335a455e',1,'Tgstation.Server.Client.AdministrationClient.GetLog()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a99c93db202361b69893b54d95aef275d',1,'Tgstation.Server.Client.IAdministrationClient.GetLog()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a447802145e173d3d60ad702a857d41ff',1,'Tgstation.Server.Host.Controllers.AdministrationController.GetLog()']]], - ['getlogger_775',['GetLogger',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9f539001c8a2bbac8addd3505f61a31c',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['getprocess_776',['GetProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a5618ee521ada90bb15bf3315440898f3',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#afc62b43888624c6f6098bbddabc08b33',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcess()']]], - ['getprocessbyname_777',['GetProcessByName',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a337ac6db6c428317a05fa7fb46e8b72a',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcessByName()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a09b2d58bfe8a6053bfc369b143211bfd',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcessByName()']]], - ['getrepositoryownername_778',['GetRepositoryOwnerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#adec58d79f9d6c5fe1bc4e43f9f036308',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['getright_779',['GetRight',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#ade8aeb7dd0a0e480f6f89bd5973703c7',1,'Tgstation.Server.Host.Security.AuthenticationContext.GetRight()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#af5d37fc8159a215c75c3f3688f4415ea',1,'Tgstation.Server.Host.Security.IAuthenticationContext.GetRight()']]], - ['getsecurebytes_780',['GetSecureBytes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#aeaa749c8ecd658514c3d913950268cfc',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac6fa20935fc73a1dca313376b5b79d1a',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureBytes()']]], - ['getsecurestring_781',['GetSecureString',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a241b23ae24a7354312245e1cb606f882',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ab49e5041cfb7333ee413c9719046ae37',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureString()']]], - ['getserializersettings_782',['GetSerializerSettings',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aed28ea7a7fff4be99f3c65a8dcd0a47e',1,'Tgstation::Server::Client::ApiClient']]], - ['getstandardoutput_783',['GetStandardOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a95a0b7e881a308d0704721ca594a3338',1,'Tgstation.Server.Host.System.IProcess.GetStandardOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7e284fdbf8795dc03b1080b723c3e9ad',1,'Tgstation.Server.Host.System.Process.GetStandardOutput()']]], - ['gettgsuser_784',['GetTgsUser',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html#a99fc05da06c5081c322a9fcaeff71b5a',1,'Tgstation::Server::Host::Extensions::DatabaseCollectionExtensions']]], - ['getuseranddomainname_785',['GetUserAndDomainName',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a1cca1b38097ffb81518592e6b967cecf',1,'Tgstation::Server::Host::Security::WindowsSystemIdentityFactory']]], - ['getwindowtext_786',['GetWindowText',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aab504dccd83453d3af13a7e4feceb7a9',1,'Tgstation::Server::Host::NativeMethods']]], - ['getwindowthreadprocessid_787',['GetWindowThreadProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a346862e4a517dcfe04a256ec49e7ecea',1,'Tgstation::Server::Host::NativeMethods']]], - ['githubaccesstoken_788',['GitHubAccessToken',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a97eae217a6ba8e75256e745f98f926b8',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['githubapierror_789',['GitHubApiError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a4af2008e35f4739b74b961d3a9e418cd',1,'Tgstation::Server::Api::Models']]], - ['githubapiratelimit_790',['GitHubApiRateLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aae998a2af079dd29d0ccdc981b56bdf4',1,'Tgstation::Server::Api::Models']]], - ['githubclientfactory_791',['GitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html',1,'Tgstation.Server.Host.Core.GitHubClientFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa837a722f9326dea2b1f63d6a2537bb7',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab75fda1677febc0778388f201fb737ef',1,'Tgstation.Server.Host.Components.Instance.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af9e2105dfde05caa1e5a14f8c3141591',1,'Tgstation.Server.Host.Components.InstanceFactory.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a40d72314455caeb1d6b72fa047ea18a4',1,'Tgstation.Server.Host.Controllers.AdministrationController.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a646263811f3cf4b618c569685a15c90c',1,'Tgstation.Server.Host.Controllers.RepositoryController.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a72336fa397ae9b38f421d27063479af9',1,'Tgstation.Server.Host.Core.GitHubClientFactory.GitHubClientFactory()']]], - ['githubclientfactory_2ecs_792',['GitHubClientFactory.cs',['../_git_hub_client_factory_8cs.html',1,'']]], - ['githubname_793',['GitHubName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a9105b82687e1adb689f4f79892a27a1b',1,'Tgstation::Server::Api::Models::Repository']]], - ['githubowner_794',['GitHubOwner',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a5bbd920211d37e14effab5b48b217613',1,'Tgstation.Server.Api.Models.Repository.GitHubOwner()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a213c2be1ecbafbd6a801f685c63d04db',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#abdb2e4318fb14b8459e3bbc37dad98ba',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubOwner()']]], - ['githubreponame_795',['GitHubRepoName',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa18c75762768b2eade040269fc0b98c4',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad08c159873c35b8d508074a3b21b1739',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubRepoName()']]], - ['githubrepositoryid_796',['GitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2f6c66d4e10c5fb6a758727893ea4cd0',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['githuburl_797',['GitHubUrl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a72e4dafe281ae05f52e1dbcf37ab71',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['gittagprefix_798',['GitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a9dce394437a9bc79041a3467e7ad75f4',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['globalsuppressions_2ecs_799',['GlobalSuppressions.cs',['../_global_suppressions_8cs.html',1,'']]], - ['gone_800',['Gone',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30f0e4c93d7b119d4bf7aadefc1e5b8f',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['gracefulrebootrequired_801',['gracefulRebootRequired',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae39ec6910d118b7bd11953610daf56dc',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], - ['grantpermissions_802',['GrantPermissions',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ac07cba61d66cd0a7ceeb846be2e76885',1,'Tgstation.Server.Client.IInstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad3adb6fbb920b5ab031e54adadbbd869',1,'Tgstation.Server.Client.InstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a360b9539cb9eef92ba62ee6d78e7b161',1,'Tgstation.Server.Host.Controllers.InstanceController.GrantPermissions()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7c3e6b3f8a8a8a4bf639c2ab5a57bda3',1,'Tgstation.Server.Api.Rights.GrantPermissions()']]] + ['gameiomanager_760',['GameIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a61cde2a19bd6fc5619a5bad94a3c5f9b',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['gamestaticfilessubdirectory_761',['GameStaticFilesSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae8e07adce00ed418cb29954182699623',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['gcorefailure_762',['GCoreFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a55504e6a1e187426ae2a94c480dd8dd1',1,'Tgstation::Server::Api::Models']]], + ['generalconfiguration_763',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a861b5a7e4e45a84ee5eddb2279f9eacf',1,'Tgstation.Server.Host.Components.Instance.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aa06616bc07291790c57bea22bd90a48d',1,'Tgstation.Server.Host.Components.InstanceFactory.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa2d14e2052d1ad81104ec0e5afa218e',1,'Tgstation.Server.Host.Components.InstanceManager.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#adb0b189a10ec43510b9f10cff91106fd',1,'Tgstation.Server.Host.Controllers.AdministrationController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78f4994c9c4f2cc58d0a6d227e0195a9',1,'Tgstation.Server.Host.Controllers.HomeController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a4f60f72c082a222a31383dbfceb755a6',1,'Tgstation.Server.Host.Controllers.InstanceController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#abe159da9c5fbc8eba3c3feff488988a0',1,'Tgstation.Server.Host.Controllers.RepositoryController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a79e1198432e7e557c8d72b3adf71bbf1',1,'Tgstation.Server.Host.Controllers.UserController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a373bfe28d1a88706c72e9f64e7756843',1,'Tgstation.Server.Host.Core.ServerPortProivder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a51341ea00d7cfc1eead8b52235e76257',1,'Tgstation.Server.Host.Database.DatabaseSeeder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a2823acb68609f9953788b1460ca8cdd3',1,'Tgstation.Server.Host.Server.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a47f6e49529ffb5b7760e1a5713f590e4',1,'Tgstation.Server.Host.Setup.SetupWizard.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#aa163ef7f1b2ec0e29736e7cfcfd20f03',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.GeneralConfiguration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a3a19dda55bff763cbbc27de56905ae5a',1,'Tgstation.Server.Host.Setup.IPostSetupServices.GeneralConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a454fd5fdcdd712c84d205389197cb33a',1,'Tgstation.Server.Host.Setup.PostSetupServices.GeneralConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0d5ca385e9de5c07753ed5ff5ad84b52',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.GeneralConfiguration()']]], + ['generalconfiguration_2ecs_764',['GeneralConfiguration.cs',['../_general_configuration_8cs.html',1,'']]], + ['generalconfigurationoptions_765',['generalConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3ce96cf3d3ee5a94ef82ee90efcd5f07',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], + ['generatecommands_766',['GenerateCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a6d69dde344df916a244626be56bc1b78',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.GenerateCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html#a3f5fdca17c71257d34528f45f61ed469',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommandFactory.GenerateCommands()']]], + ['generatecredentialshandler_767',['GenerateCredentialsHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html#a30e3427729e4b3a67bbd3068be3213b4',1,'Tgstation.Server.Host.Components.Repository.ICredentialsProvider.GenerateCredentialsHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a8690f8be311b5092a11782a2c54b3728',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.GenerateCredentialsHandler()']]], + ['generatepushoptions_768',['GeneratePushOptions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae497427222edeac86fbaea36d2dac220',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['getactivecontroller_769',['GetActiveController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a81f31795e687423e39ed6a9e6dd82454',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.GetActiveController()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a634f53946305b875c65c04dfd1719830',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.GetActiveController()']]], + ['getadminuser_770',['GetAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1eed27ad5d706f6f3f4c691704205f67',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['getallchildhandles_771',['GetAllChildHandles',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a7b0c5446ce7d67f409cd743e74f32183',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['getasyncenumerator_772',['GetAsyncEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a6212ee32986277efe11bff2d46009ca7',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['getcombinedoutput_773',['GetCombinedOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a143445ea75400e7a5eafcdfefcb277bb',1,'Tgstation.Server.Host.System.IProcess.GetCombinedOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac0865b3b4306e3fde82f9ba2bb91340b',1,'Tgstation.Server.Host.System.Process.GetCombinedOutput()']]], + ['getcompilejob_774',['GetCompileJob',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aac86150cb373a42b2e6b373a464977ec',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetCompileJob()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a7b5cc5d3b3d5860cec8c9e0b84e5ec83',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetCompileJob()']]], + ['getconfigureaction_3c_20tdatabasecontext_20_3e_775',['GetConfigureAction< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aad405596b71424eee16791f412dbd42e',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['getcurrent_776',['GetCurrent',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6052301d3f6ed6eb477f74a081e2187e',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#af2bc1f5b4e9cd8531f44111b8eae71fa',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#aad49a7d5b5c5f6e796587da47e29215e',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.GetCurrent()']]], + ['getcurrentprocess_777',['GetCurrentProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a81eeee7944e490c141d2e7b66f651369',1,'Tgstation.Server.Host.System.IProcessExecutor.GetCurrentProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04581cbc596b3a53ef3e17752ca3cfb',1,'Tgstation.Server.Host.System.ProcessExecutor.GetCurrentProcess()']]], + ['getdirectories_778',['GetDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#acae0255ab165ae1421ece5b1d5fbdf29',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4813de766ae0c63cf3ba34e4a40626ca',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a254a4bab3839ca09cdeade65387523d7',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetDirectories()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a65612d712154495899633c1195579b08',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetDirectories()']]], + ['getdirectoryname_779',['GetDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a993c9bef376d9b28f47e97d8bdf21d04',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectoryName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a691970cc91e5576b06ed9ce14e51d9b8',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectoryName()']]], + ['getdotnetpath_780',['GetDotnetPath',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a8d0f1fffc5a866c3d542d2e1c106fbb4',1,'Tgstation::Server::Host::Watchdog::Watchdog']]], + ['getenumerator_781',['GetEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a22760f9ae163fd85e535b867454d718b',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9b882344750b9a126e181724dee145cb',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()']]], + ['geterroroutput_782',['GetErrorOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a6d681111b5ff6f12506dacf82b9f77f9',1,'Tgstation.Server.Host.System.IProcess.GetErrorOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a6326465402724922cf73994bb5e931e8',1,'Tgstation.Server.Host.System.Process.GetErrorOutput()']]], + ['getexecutingusername_783',['GetExecutingUsername',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a1981fd196af57d3f4ee8385ecbc50870',1,'Tgstation.Server.Host.System.IProcess.GetExecutingUsername()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#af76f476ae07e3e2d8c060d970897dfe0',1,'Tgstation.Server.Host.System.IProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a710e33bec7224c7ee6363af5fb5d8681',1,'Tgstation.Server.Host.System.PosixProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a8af1df99f5ed8cf15494e230243890e5',1,'Tgstation.Server.Host.System.Process.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a986ecee40f7bffce7e4db8d1c36c3b72',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.GetExecutingUsername()']]], + ['getfilename_784',['GetFileName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adf2a105e1c455565c3c15de9078f1282',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a0d6d5a54db205d2d1d45a927d57f5182',1,'Tgstation.Server.Host.IO.IIOManager.GetFileName()']]], + ['getfilenamewithoutextension_785',['GetFileNameWithoutExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5e595bab061d2fe0b1f6cb0454a44a12',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileNameWithoutExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ab6635afaf199a1396a743f3b46eac786',1,'Tgstation.Server.Host.IO.IIOManager.GetFileNameWithoutExtension()']]], + ['getfiles_786',['GetFiles',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a29ee8cd097023d261cab484b6732cdb6',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aca74c5436163f98c2780e8aa1468d098',1,'Tgstation.Server.Host.IO.IIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad8368416aaa9561f5a55f8705639060e',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetFiles()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a9a2b8e249e8a8f9786158e30b52471da',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetFiles()']]], + ['getfileswithextension_787',['GetFilesWithExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6a40b596effc389caef80b800b74359c',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFilesWithExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad4ce6628b1a44e825ae36b75e6b176c2',1,'Tgstation.Server.Host.IO.IIOManager.GetFilesWithExtension()']]], + ['getfulllogdirectory_788',['GetFullLogDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a6e9e186a1456017f692358f96bdab2c3',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['getgithubclient_789',['GetGitHubClient',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a35af4d06cfa01eea597d3e29e74b0e21',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['getid_790',['GetId',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aafc459bdd85faa34ca004f760699355d',1,'Tgstation.Server.Client.Components.ChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#af3ce02a1214ddb80ef5021683fa1c778',1,'Tgstation.Server.Client.Components.IChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#ab3a233f8693053d156993065bd4705cb',1,'Tgstation.Server.Client.Components.IInstanceUserClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a7fad6a1f5465b9bb5971787c5d782bd8',1,'Tgstation.Server.Client.Components.IJobsClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab231f97fcf3c7ac3c920bae0530c96a0',1,'Tgstation.Server.Client.Components.InstanceUserClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a1a7399807a0abd4dfaed05c1c0d3adff',1,'Tgstation.Server.Client.Components.JobsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ae1c05f75c697ddba9bf488cf899749fb',1,'Tgstation.Server.Client.IInstanceManagerClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ac8d222eb11e9fe074119eb2ae6fc9f2f',1,'Tgstation.Server.Client.InstanceManagerClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#acd126a0cc8f96eace12718d63c41d2ba',1,'Tgstation.Server.Client.IUsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ab903aa7a69c620191d5d13bae2ef621a',1,'Tgstation.Server.Client.UsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#acddc3fe9d04e7c00dc9a940b86389bb8',1,'Tgstation.Server.Host.Controllers.ChatController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a2f22a8f3436e55774dee2df922590ac8',1,'Tgstation.Server.Host.Controllers.DreamMakerController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a69e19a7f501fca2dd5d707f34edb4c79',1,'Tgstation.Server.Host.Controllers.InstanceController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a9e786fda53a079ad9427ec69af71b408',1,'Tgstation.Server.Host.Controllers.InstanceUserController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#aad5f209a424e97eeb42d75c6ff37f07d',1,'Tgstation.Server.Host.Controllers.JobController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7924175e380ba48b8623838f13c2521d',1,'Tgstation.Server.Host.Controllers.UserController.GetId()']]], + ['getinstance_791',['GetInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html#a8657fc0d88b55926cf930663d6a8789a',1,'Tgstation.Server.Host.Components.IInstanceCoreProvider.GetInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a35ea7d6144eef2f3370b31a4db62ff83',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstance()']]], + ['getinstancereference_792',['GetInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ae9607bccaf0751fd40d3ec32ce514c9f',1,'Tgstation.Server.Host.Components.IInstanceManager.GetInstanceReference()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a5b751fa556b5f95897d3c438bdfdff09',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstanceReference()']]], + ['getircchannelkey_793',['GetIrcChannelKey',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#acd8563e260bd596d20e0b7cfc0636e54',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], + ['getircchannelname_794',['GetIrcChannelName',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a400776d2d51bd050b788a760c00d889a',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], + ['getircchannelsplits_795',['GetIrcChannelSplits',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a683c05c25e16d532bcc146cbf8be9e49',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], + ['getjobids_796',['GetJobIds',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af654e884ec3b3eded2a180961c7ccfc5',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetJobIds()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a6dc9b4005f4070fe3c0dc3b5264ded10',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetJobIds()']]], + ['getlastmodified_797',['GetLastModified',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6b4ed943b61e68cc1f38dbb2dd3abc78',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetLastModified()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a291d4f10bc7972fbb518125e1331f634',1,'Tgstation.Server.Host.IO.IIOManager.GetLastModified()']]], + ['getlaunchresult_798',['GetLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ad52f86b450b23dc51fdc42359545d2d0',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['getlog_799',['GetLog',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a4729c542c5e10fc5b7aa0ff8335a455e',1,'Tgstation.Server.Client.AdministrationClient.GetLog()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a99c93db202361b69893b54d95aef275d',1,'Tgstation.Server.Client.IAdministrationClient.GetLog()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a447802145e173d3d60ad702a857d41ff',1,'Tgstation.Server.Host.Controllers.AdministrationController.GetLog()']]], + ['getlogger_800',['GetLogger',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9f539001c8a2bbac8addd3505f61a31c',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['getoriginsha_801',['GetOriginSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa8ad08a49a66bd994cd45543007c1d0d',1,'Tgstation.Server.Host.Components.Repository.IRepository.GetOriginSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aa05848d9be6f9b0aff6e1106a102ca18',1,'Tgstation.Server.Host.Components.Repository.Repository.GetOriginSha()']]], + ['getprocess_802',['GetProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a5618ee521ada90bb15bf3315440898f3',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#afc62b43888624c6f6098bbddabc08b33',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcess()']]], + ['getprocessbyname_803',['GetProcessByName',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a337ac6db6c428317a05fa7fb46e8b72a',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcessByName()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a09b2d58bfe8a6053bfc369b143211bfd',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcessByName()']]], + ['getrepositoryownername_804',['GetRepositoryOwnerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#adec58d79f9d6c5fe1bc4e43f9f036308',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['getright_805',['GetRight',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#ade8aeb7dd0a0e480f6f89bd5973703c7',1,'Tgstation.Server.Host.Security.AuthenticationContext.GetRight()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#af5d37fc8159a215c75c3f3688f4415ea',1,'Tgstation.Server.Host.Security.IAuthenticationContext.GetRight()']]], + ['getsecurebytes_806',['GetSecureBytes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#aeaa749c8ecd658514c3d913950268cfc',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac6fa20935fc73a1dca313376b5b79d1a',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureBytes()']]], + ['getsecurestring_807',['GetSecureString',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a241b23ae24a7354312245e1cb606f882',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ab49e5041cfb7333ee413c9719046ae37',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureString()']]], + ['getserializersettings_808',['GetSerializerSettings',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aed28ea7a7fff4be99f3c65a8dcd0a47e',1,'Tgstation::Server::Client::ApiClient']]], + ['getstandardoutput_809',['GetStandardOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a95a0b7e881a308d0704721ca594a3338',1,'Tgstation.Server.Host.System.IProcess.GetStandardOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7e284fdbf8795dc03b1080b723c3e9ad',1,'Tgstation.Server.Host.System.Process.GetStandardOutput()']]], + ['gettgsuser_810',['GetTgsUser',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html#a99fc05da06c5081c322a9fcaeff71b5a',1,'Tgstation::Server::Host::Extensions::DatabaseCollectionExtensions']]], + ['getuseranddomainname_811',['GetUserAndDomainName',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a1cca1b38097ffb81518592e6b967cecf',1,'Tgstation::Server::Host::Security::WindowsSystemIdentityFactory']]], + ['getwindowtext_812',['GetWindowText',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aab504dccd83453d3af13a7e4feceb7a9',1,'Tgstation::Server::Host::NativeMethods']]], + ['getwindowthreadprocessid_813',['GetWindowThreadProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a346862e4a517dcfe04a256ec49e7ecea',1,'Tgstation::Server::Host::NativeMethods']]], + ['githubaccesstoken_814',['GitHubAccessToken',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a97eae217a6ba8e75256e745f98f926b8',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['githubapierror_815',['GitHubApiError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a4af2008e35f4739b74b961d3a9e418cd',1,'Tgstation::Server::Api::Models']]], + ['githubapiratelimit_816',['GitHubApiRateLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aae998a2af079dd29d0ccdc981b56bdf4',1,'Tgstation::Server::Api::Models']]], + ['githubclientfactory_817',['GitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html',1,'Tgstation.Server.Host.Core.GitHubClientFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a72336fa397ae9b38f421d27063479af9',1,'Tgstation.Server.Host.Core.GitHubClientFactory.GitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa837a722f9326dea2b1f63d6a2537bb7',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a6f71210a1d02700677c27699c6286698',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab75fda1677febc0778388f201fb737ef',1,'Tgstation.Server.Host.Components.Instance.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af9e2105dfde05caa1e5a14f8c3141591',1,'Tgstation.Server.Host.Components.InstanceFactory.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a40d72314455caeb1d6b72fa047ea18a4',1,'Tgstation.Server.Host.Controllers.AdministrationController.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a646263811f3cf4b618c569685a15c90c',1,'Tgstation.Server.Host.Controllers.RepositoryController.gitHubClientFactory()']]], + ['githubclientfactory_2ecs_818',['GitHubClientFactory.cs',['../_git_hub_client_factory_8cs.html',1,'']]], + ['githubdeploymentid_819',['GitHubDeploymentId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a173271b6e3470cf0666356d7f356b83c',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['githubdeploymentmanager_820',['GitHubDeploymentManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a104439d080bc0fb39546e79a94be7e99',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.gitHubDeploymentManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a919f44789633d089af0f6a81d466d504',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.gitHubDeploymentManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a9abf54f6df89e59931a2c68d9933f64c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.gitHubDeploymentManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#afd08c06fb5e077c5243d02fe32c983ed',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.GitHubDeploymentManager()']]], + ['githubdeploymentmanager_2ecs_821',['GitHubDeploymentManager.cs',['../_git_hub_deployment_manager_8cs.html',1,'']]], + ['githubname_822',['GitHubName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a9105b82687e1adb689f4f79892a27a1b',1,'Tgstation::Server::Api::Models::Repository']]], + ['githubowner_823',['GitHubOwner',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a5bbd920211d37e14effab5b48b217613',1,'Tgstation.Server.Api.Models.Repository.GitHubOwner()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a213c2be1ecbafbd6a801f685c63d04db',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#abdb2e4318fb14b8459e3bbc37dad98ba',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubOwner()']]], + ['githubrepoid_824',['GitHubRepoId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['githubreponame_825',['GitHubRepoName',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa18c75762768b2eade040269fc0b98c4',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad08c159873c35b8d508074a3b21b1739',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubRepoName()']]], + ['githubrepositoryid_826',['GitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2f6c66d4e10c5fb6a758727893ea4cd0',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['githuburl_827',['GitHubUrl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a72e4dafe281ae05f52e1dbcf37ab71',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['gittagprefix_828',['GitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a9dce394437a9bc79041a3467e7ad75f4',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['globalsuppressions_2ecs_829',['GlobalSuppressions.cs',['../_global_suppressions_8cs.html',1,'']]], + ['gone_830',['Gone',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30f0e4c93d7b119d4bf7aadefc1e5b8f',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['gracefulrebootrequired_831',['gracefulRebootRequired',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae39ec6910d118b7bd11953610daf56dc',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], + ['grantpermissions_832',['GrantPermissions',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ac07cba61d66cd0a7ceeb846be2e76885',1,'Tgstation.Server.Client.IInstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad3adb6fbb920b5ab031e54adadbbd869',1,'Tgstation.Server.Client.InstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a360b9539cb9eef92ba62ee6d78e7b161',1,'Tgstation.Server.Host.Controllers.InstanceController.GrantPermissions()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7c3e6b3f8a8a8a4bf639c2ab5a57bda3',1,'Tgstation.Server.Api.Rights.GrantPermissions()']]] ]; diff --git a/search/all_8.html b/search/all_8.html index 888e619094..add7beb281 100644 --- a/search/all_8.html +++ b/search/all_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_8.js b/search/all_8.js index e73d440ba3..b9ba40a931 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,40 +1,41 @@ var searchData= [ - ['handle_803',['handle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a24428698a5b60b858c43dfd5529030e9',1,'Tgstation::Server::Host::System::Process']]], - ['handlebadresponse_804',['HandleBadResponse',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7b81831316898d1d92a5103d3ecf145b',1,'Tgstation::Server::Client::ApiClient']]], - ['handlechatcommand_805',['HandleChatCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html#a0a3d290a61fd94176c66692b35035eb2',1,'Tgstation.Server.Host.Components.Chat.ICustomCommandHandler.HandleChatCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a59a2116696ef8c2e84761a4f25d8d957',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleChatCommand()']]], - ['handleevent_806',['HandleEvent',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a574b2b2de6422a7e43d448fa66f9a0e3',1,'Tgstation.Server.Host.Components.Events.EventConsumer.HandleEvent()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html#ac217567aa6bd7e43c8cfd976eee05aac',1,'Tgstation.Server.Host.Components.Events.IEventConsumer.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a36ececa58c0e6f8781147e44872076c6',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1b043f3ab25e84bc675dd5455cbf3f52',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleEvent()']]], - ['handleheartbeat_807',['HandleHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a32ebad8014be63eb29e7a894cdbfcaf1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['handlemessage_808',['HandleMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a942b5d525b0855ff6c8b59e0d5f6e7eb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['handlemonitorwakeup_809',['HandleMonitorWakeup',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a056db8ac9f376f053c671df0e7371ed4',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleMonitorWakeup()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ab9f2e91c85cfad158762e6cb78c40805',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleMonitorWakeup()']]], - ['handlenewdmbavailable_810',['HandleNewDmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ad6789a31cac393a9677e9680154384ac',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNewDmbAvailable()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a8e8934ab54a29d00c8a6b6b39bd29cb1',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNewDmbAvailable()']]], - ['handlenormalreboot_811',['HandleNormalReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a4086daae4bfcb0d754531c5fa72a3082',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNormalReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#ae9061f3b017884041eb1cebb55b09187',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNormalReboot()']]], - ['handler_812',['handler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a429c52adf7d0b06ee91bb7b1e77cfe35',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], - ['handlercts_813',['handlerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#adc4749cb2a207e472c9fac07cf56e981',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['handlerestart_814',['HandleRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abfc2c178a071f0a8450c0aaa82af9426',1,'Tgstation.Server.Host.Components.Chat.ChatManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a2fd05864a3a2b706516784e14afaecc6',1,'Tgstation.Server.Host.Components.InstanceManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad78e8addece7234fb29cffe96a18442e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleRestart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html#ad7bcde59a7297d1ef3770943af92a93d',1,'Tgstation.Server.Host.Core.IRestartHandler.HandleRestart()']]], - ['handlewrite_815',['HandleWrite',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html#a977c03596e21a07e06d7bc3735c6884f',1,'Tgstation.Server.Host.IO.IPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a43d2add7500e5047fd259d1291ada0bc',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html#a94fe62fd0f170cca8a95674408a1ede4',1,'Tgstation.Server.Host.IO.WindowsPostWriteHandler.HandleWrite()']]], - ['harddisconnect_816',['HardDisconnect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ae40d9c01f43f39853f2bf8f15499579d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['head_817',['Head',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aaf4a631e6d2aa45a1b6887152f1d13f0',1,'Tgstation.Server.Host.Components.Repository.IRepository.Head()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a40437fe926da0b9e03785da0199a8597',1,'Tgstation.Server.Host.Components.Repository.Repository.Head()']]], - ['headers_818',['Headers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a521379a7cffb0980b1d879cb15afd6f0',1,'Tgstation.Server.Client.ApiClient.Headers()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#afb0feaf84640f44711b635836bf9378e',1,'Tgstation.Server.Client.IApiClient.Headers()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a48f8ea0a4dd7ac665735d1728899ebad',1,'Tgstation.Server.Client.ApiClient.headers()']]], - ['headersexception_819',['HeadersException',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html',1,'Tgstation.Server.Api.HeadersException'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#aea4ff497551fee28100932b2bec4553a',1,'Tgstation.Server.Api.HeadersException.HeadersException(HeaderTypes missingOrMalformedHeaders, string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a7fff1509be86f8b7bad2d574ab3be8c6',1,'Tgstation.Server.Api.HeadersException.HeadersException()'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a59ab85e3c04d1811211dd6b5363f8b18',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a87b0e65abdc9cfacf7b80d28cfaa160f',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message, Exception innerException)']]], - ['headersexception_2ecs_820',['HeadersException.cs',['../_headers_exception_8cs.html',1,'']]], - ['headersissue_821',['HeadersIssue',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a4c0455f507601bb0044375f6237c97b7',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['headertypes_822',['HeaderTypes',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5ef',1,'Tgstation::Server::Api']]], - ['headertypes_2ecs_823',['HeaderTypes.cs',['../_header_types_8cs.html',1,'']]], - ['headincludeline_824',['HeadIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a83107858b3a44428da91e999cedd2a16',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['heartbeat_825',['Heartbeat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Interop.Topic.Heartbeat()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Watchdog.Heartbeat()']]], - ['heartbeatseconds_826',['HeartbeatSeconds',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a15ea3f57d3c8d953d2b12386469c73b2',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['heartbeatsmissed_827',['heartbeatsMissed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abaf0a71134899c397cc88eb39a189ff0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['helptext_828',['HelpText',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a35351daa1c342c9086ddbfa0cb131029',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a6d0540b2a6fdb2c6f48ddaba78b22bde',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.HelpText()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#ab8687d89e8f4b08d6221c1fd51ab8ca0',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#afeb9ac3dc4a7e73136babeaa6a2d1782',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a5f22a8e068839fa971b715b0bf0abed4',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a7d761098bd18586c0c0098d4d80574e4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#ad800f97aca131465993222123307bd59',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.HelpText()']]], - ['home_829',['Home',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a03d7bf4a2c99507c1c69d1b76eee96c8',1,'Tgstation::Server::Host::Controllers::HomeController']]], - ['homecontroller_830',['HomeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html',1,'Tgstation.Server.Host.Controllers.HomeController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a2ef2c0df0b940206d51e74f0748098da',1,'Tgstation.Server.Host.Controllers.HomeController.HomeController()']]], - ['homecontroller_2ecs_831',['HomeController.cs',['../_home_controller_8cs.html',1,'']]], - ['hostbuilder_832',['hostBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2cb668c8f5441c3518f71d0a7555bc4',1,'Tgstation::Server::Host::Server']]], - ['hostbuilderextensions_833',['HostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['hostbuilderextensions_2ecs_834',['HostBuilderExtensions.cs',['../_host_builder_extensions_8cs.html',1,'']]], - ['hostingenvironment_835',['hostingEnvironment',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#affdb9aca40d21e4d92078d3da87483d1',1,'Tgstation.Server.Host.Core.Application.hostingEnvironment()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2ab570de660a4965daffbb867a9ed9cf',1,'Tgstation.Server.Host.Setup.SetupWizard.hostingEnvironment()']]], - ['hostwrite_836',['HostWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440a509b9f909831ef70e6c1ec59a3b340e9',1,'Tgstation::Server::Api::Models']]], - ['httpapiport_837',['HttpApiPort',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html#af5e86a67c2cc59e14c762532275f0a2c',1,'Tgstation.Server.Host.Core.IServerPortProvider.HttpApiPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a9202750d83c6ff06032cf130ecf83a40',1,'Tgstation.Server.Host.Core.ServerPortProivder.HttpApiPort()']]], - ['httpclient_838',['HttpClient',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html',1,'Tgstation.Server.Client.HttpClient'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a22bc1751fcba63704d2d07a83fa5a857',1,'Tgstation.Server.Client.ApiClient.httpClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#aba5a7cd3aaf62acbe8078cdb7d7da8e9',1,'Tgstation.Server.Client.HttpClient.httpClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#ae30abd8d943980aeb8c192df877b7df8',1,'Tgstation.Server.Client.HttpClient.HttpClient()']]], - ['httpclient_2ecs_839',['HttpClient.cs',['../_http_client_8cs.html',1,'']]] + ['handle_833',['handle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a24428698a5b60b858c43dfd5529030e9',1,'Tgstation::Server::Host::System::Process']]], + ['handlebadresponse_834',['HandleBadResponse',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7b81831316898d1d92a5103d3ecf145b',1,'Tgstation::Server::Client::ApiClient']]], + ['handlechatcommand_835',['HandleChatCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html#a0a3d290a61fd94176c66692b35035eb2',1,'Tgstation.Server.Host.Components.Chat.ICustomCommandHandler.HandleChatCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a59a2116696ef8c2e84761a4f25d8d957',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleChatCommand()']]], + ['handleevent_836',['HandleEvent',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a574b2b2de6422a7e43d448fa66f9a0e3',1,'Tgstation.Server.Host.Components.Events.EventConsumer.HandleEvent()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html#ac217567aa6bd7e43c8cfd976eee05aac',1,'Tgstation.Server.Host.Components.Events.IEventConsumer.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a36ececa58c0e6f8781147e44872076c6',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1b043f3ab25e84bc675dd5455cbf3f52',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleEvent()']]], + ['handleheartbeat_837',['HandleHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a32ebad8014be63eb29e7a894cdbfcaf1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['handlemessage_838',['HandleMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a942b5d525b0855ff6c8b59e0d5f6e7eb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['handlemonitorwakeup_839',['HandleMonitorWakeup',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a056db8ac9f376f053c671df0e7371ed4',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleMonitorWakeup()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ab9f2e91c85cfad158762e6cb78c40805',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleMonitorWakeup()']]], + ['handlenewdmbavailable_840',['HandleNewDmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ad6789a31cac393a9677e9680154384ac',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNewDmbAvailable()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a8e8934ab54a29d00c8a6b6b39bd29cb1',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNewDmbAvailable()']]], + ['handlenormalreboot_841',['HandleNormalReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#af8567833e063aa202e48b7f655892b1d',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNormalReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a99e293efee828060ee1075ac1096cf9e',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNormalReboot()']]], + ['handler_842',['handler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a429c52adf7d0b06ee91bb7b1e77cfe35',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], + ['handlercts_843',['handlerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#adc4749cb2a207e472c9fac07cf56e981',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['handlerestart_844',['HandleRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abfc2c178a071f0a8450c0aaa82af9426',1,'Tgstation.Server.Host.Components.Chat.ChatManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a2fd05864a3a2b706516784e14afaecc6',1,'Tgstation.Server.Host.Components.InstanceManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad78e8addece7234fb29cffe96a18442e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleRestart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html#ad7bcde59a7297d1ef3770943af92a93d',1,'Tgstation.Server.Host.Core.IRestartHandler.HandleRestart()']]], + ['handlewrite_845',['HandleWrite',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html#a977c03596e21a07e06d7bc3735c6884f',1,'Tgstation.Server.Host.IO.IPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a43d2add7500e5047fd259d1291ada0bc',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html#a94fe62fd0f170cca8a95674408a1ede4',1,'Tgstation.Server.Host.IO.WindowsPostWriteHandler.HandleWrite()']]], + ['harddisconnect_846',['HardDisconnect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ae40d9c01f43f39853f2bf8f15499579d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['head_847',['Head',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aaf4a631e6d2aa45a1b6887152f1d13f0',1,'Tgstation.Server.Host.Components.Repository.IRepository.Head()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a40437fe926da0b9e03785da0199a8597',1,'Tgstation.Server.Host.Components.Repository.Repository.Head()']]], + ['headers_848',['headers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a48f8ea0a4dd7ac665735d1728899ebad',1,'Tgstation.Server.Client.ApiClient.headers()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a521379a7cffb0980b1d879cb15afd6f0',1,'Tgstation.Server.Client.ApiClient.Headers()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#afb0feaf84640f44711b635836bf9378e',1,'Tgstation.Server.Client.IApiClient.Headers()']]], + ['headersexception_849',['HeadersException',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html',1,'Tgstation.Server.Api.HeadersException'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#aea4ff497551fee28100932b2bec4553a',1,'Tgstation.Server.Api.HeadersException.HeadersException(HeaderTypes missingOrMalformedHeaders, string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a7fff1509be86f8b7bad2d574ab3be8c6',1,'Tgstation.Server.Api.HeadersException.HeadersException()'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a59ab85e3c04d1811211dd6b5363f8b18',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a87b0e65abdc9cfacf7b80d28cfaa160f',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message, Exception innerException)']]], + ['headersexception_2ecs_850',['HeadersException.cs',['../_headers_exception_8cs.html',1,'']]], + ['headersissue_851',['HeadersIssue',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a4c0455f507601bb0044375f6237c97b7',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['headertypes_852',['HeaderTypes',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5ef',1,'Tgstation::Server::Api']]], + ['headertypes_2ecs_853',['HeaderTypes.cs',['../_header_types_8cs.html',1,'']]], + ['headincludeline_854',['HeadIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a83107858b3a44428da91e999cedd2a16',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['heartbeat_855',['Heartbeat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Watchdog.Heartbeat()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Interop.Topic.Heartbeat()']]], + ['heartbeatseconds_856',['HeartbeatSeconds',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a15ea3f57d3c8d953d2b12386469c73b2',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['heartbeatsmissed_857',['heartbeatsMissed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abaf0a71134899c397cc88eb39a189ff0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['helptext_858',['HelpText',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a35351daa1c342c9086ddbfa0cb131029',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a6d0540b2a6fdb2c6f48ddaba78b22bde',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.HelpText()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#ab8687d89e8f4b08d6221c1fd51ab8ca0',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#afeb9ac3dc4a7e73136babeaa6a2d1782',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a5f22a8e068839fa971b715b0bf0abed4',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a7d761098bd18586c0c0098d4d80574e4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#ad800f97aca131465993222123307bd59',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.HelpText()']]], + ['home_859',['Home',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a03d7bf4a2c99507c1c69d1b76eee96c8',1,'Tgstation::Server::Host::Controllers::HomeController']]], + ['homecontroller_860',['HomeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html',1,'Tgstation.Server.Host.Controllers.HomeController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a2ef2c0df0b940206d51e74f0748098da',1,'Tgstation.Server.Host.Controllers.HomeController.HomeController()']]], + ['homecontroller_2ecs_861',['HomeController.cs',['../_home_controller_8cs.html',1,'']]], + ['hostapidocumemtation_862',['HostApiDocumemtation',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a625cc0a0bfae62030858aba27a4e677a',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['hostbuilder_863',['hostBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2cb668c8f5441c3518f71d0a7555bc4',1,'Tgstation::Server::Host::Server']]], + ['hostbuilderextensions_864',['HostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['hostbuilderextensions_2ecs_865',['HostBuilderExtensions.cs',['../_host_builder_extensions_8cs.html',1,'']]], + ['hostingenvironment_866',['hostingEnvironment',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#affdb9aca40d21e4d92078d3da87483d1',1,'Tgstation.Server.Host.Core.Application.hostingEnvironment()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2ab570de660a4965daffbb867a9ed9cf',1,'Tgstation.Server.Host.Setup.SetupWizard.hostingEnvironment()']]], + ['hostwrite_867',['HostWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440a509b9f909831ef70e6c1ec59a3b340e9',1,'Tgstation::Server::Api::Models']]], + ['httpapiport_868',['HttpApiPort',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html#af5e86a67c2cc59e14c762532275f0a2c',1,'Tgstation.Server.Host.Core.IServerPortProvider.HttpApiPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a9202750d83c6ff06032cf130ecf83a40',1,'Tgstation.Server.Host.Core.ServerPortProivder.HttpApiPort()']]], + ['httpclient_869',['HttpClient',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html',1,'Tgstation.Server.Client.HttpClient'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a22bc1751fcba63704d2d07a83fa5a857',1,'Tgstation.Server.Client.ApiClient.httpClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#aba5a7cd3aaf62acbe8078cdb7d7da8e9',1,'Tgstation.Server.Client.HttpClient.httpClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#ae30abd8d943980aeb8c192df877b7df8',1,'Tgstation.Server.Client.HttpClient.HttpClient()']]], + ['httpclient_2ecs_870',['HttpClient.cs',['../_http_client_8cs.html',1,'']]] ]; diff --git a/search/all_9.html b/search/all_9.html index dc988f4576..7207ddf298 100644 --- a/search/all_9.html +++ b/search/all_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_9.js b/search/all_9.js index 4c2d9987b3..940555e909 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -1,317 +1,325 @@ var searchData= [ - ['iadministrationclient_840',['IAdministrationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html',1,'Tgstation::Server::Client']]], - ['iadministrationclient_2ecs_841',['IAdministrationClient.cs',['../_i_administration_client_8cs.html',1,'']]], - ['iapiclient_842',['IApiClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html',1,'Tgstation::Server::Client']]], - ['iapiclient_2ecs_843',['IApiClient.cs',['../_i_api_client_8cs.html',1,'']]], - ['iapiclientfactory_844',['IApiClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html',1,'Tgstation::Server::Client']]], - ['iapiclientfactory_2ecs_845',['IApiClientFactory.cs',['../_i_api_client_factory_8cs.html',1,'']]], - ['iassemblyinformationprovider_846',['IAssemblyInformationProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html',1,'Tgstation::Server::Host::System']]], - ['iassemblyinformationprovider_2ecs_847',['IAssemblyInformationProvider.cs',['../_i_assembly_information_provider_8cs.html',1,'']]], - ['iasyncdelayer_848',['IAsyncDelayer',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html',1,'Tgstation::Server::Host::Core']]], - ['iasyncdelayer_2ecs_849',['IAsyncDelayer.cs',['../_i_async_delayer_8cs.html',1,'']]], - ['iasyncdisposable_850',['IAsyncDisposable',['../class_i_async_disposable.html',1,'']]], - ['iasyncenumerable_851',['IAsyncEnumerable',['../class_i_async_enumerable.html',1,'']]], - ['iauthenticationcontext_852',['IAuthenticationContext',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html',1,'Tgstation::Server::Host::Security']]], - ['iauthenticationcontext_2ecs_853',['IAuthenticationContext.cs',['../_i_authentication_context_8cs.html',1,'']]], - ['iauthenticationcontextfactory_854',['IAuthenticationContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html',1,'Tgstation::Server::Host::Security']]], - ['iauthenticationcontextfactory_2ecs_855',['IAuthenticationContextFactory.cs',['../_i_authentication_context_factory_8cs.html',1,'']]], - ['ibridgedispatcher_856',['IBridgeDispatcher',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgedispatcher_2ecs_857',['IBridgeDispatcher.cs',['../_i_bridge_dispatcher_8cs.html',1,'']]], - ['ibridgehandler_858',['IBridgeHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgehandler_2ecs_859',['IBridgeHandler.cs',['../_i_bridge_handler_8cs.html',1,'']]], - ['ibridgeregistrar_860',['IBridgeRegistrar',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgeregistrar_2ecs_861',['IBridgeRegistrar.cs',['../_i_bridge_registrar_8cs.html',1,'']]], - ['ibridgeregistration_862',['IBridgeRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registration.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgeregistration_2ecs_863',['IBridgeRegistration.cs',['../_i_bridge_registration_8cs.html',1,'']]], - ['ibyondclient_864',['IByondClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html',1,'Tgstation::Server::Client::Components']]], - ['ibyondclient_2ecs_865',['IByondClient.cs',['../_i_byond_client_8cs.html',1,'']]], - ['ibyondexecutablelock_866',['IByondExecutableLock',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['ibyondexecutablelock_2ecs_867',['IByondExecutableLock.cs',['../_i_byond_executable_lock_8cs.html',1,'']]], - ['ibyondinstaller_868',['IByondInstaller',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['ibyondinstaller_2ecs_869',['IByondInstaller.cs',['../_i_byond_installer_8cs.html',1,'']]], - ['ibyondmanager_870',['IByondManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['ibyondmanager_2ecs_871',['IByondManager.cs',['../_i_byond_manager_8cs.html',1,'']]], - ['ichannelsink_872',['IChannelSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichannelsink_2ecs_873',['IChannelSink.cs',['../_i_channel_sink_8cs.html',1,'']]], - ['ichatbotsclient_874',['IChatBotsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html',1,'Tgstation::Server::Client::Components']]], - ['ichatbotsclient_2ecs_875',['IChatBotsClient.cs',['../_i_chat_bots_client_8cs.html',1,'']]], - ['ichatmanager_876',['IChatManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichatmanager_2ecs_877',['IChatManager.cs',['../_i_chat_manager_8cs.html',1,'']]], - ['ichatmanagerfactory_878',['IChatManagerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichatmanagerfactory_2ecs_879',['IChatManagerFactory.cs',['../_i_chat_manager_factory_8cs.html',1,'']]], - ['ichattrackingcontext_880',['IChatTrackingContext',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichattrackingcontext_2ecs_881',['IChatTrackingContext.cs',['../_i_chat_tracking_context_8cs.html',1,'']]], - ['iclaimsinjector_882',['IClaimsInjector',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html',1,'Tgstation::Server::Host::Security']]], - ['iclaimsinjector_2ecs_883',['IClaimsInjector.cs',['../_i_claims_injector_8cs.html',1,'']]], - ['icommand_884',['ICommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['icommand_2ecs_885',['ICommand.cs',['../_i_command_8cs.html',1,'']]], - ['icommandfactory_886',['ICommandFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['icommandfactory_2ecs_887',['ICommandFactory.cs',['../_i_command_factory_8cs.html',1,'']]], - ['icompilejobsink_888',['ICompileJobSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['icompilejobsink_2ecs_889',['ICompileJobSink.cs',['../_i_compile_job_sink_8cs.html',1,'']]], - ['iconfiguration_890',['IConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], - ['iconfiguration_2ecs_891',['IConfiguration.cs',['../_i_configuration_8cs.html',1,'']]], - ['iconfigurationclient_892',['IConfigurationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html',1,'Tgstation::Server::Client::Components']]], - ['iconfigurationclient_2ecs_893',['IConfigurationClient.cs',['../_i_configuration_client_8cs.html',1,'']]], - ['iconsole_894',['IConsole',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html',1,'Tgstation::Server::Host::IO']]], - ['iconsole_2ecs_895',['IConsole.cs',['../_i_console_8cs.html',1,'']]], - ['icredentialsprovider_896',['ICredentialsProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['icredentialsprovider_2ecs_897',['ICredentialsProvider.cs',['../_i_credentials_provider_8cs.html',1,'']]], - ['icryptographysuite_898',['ICryptographySuite',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html',1,'Tgstation::Server::Host::Security']]], - ['icryptographysuite_2ecs_899',['ICryptographySuite.cs',['../_i_cryptography_suite_8cs.html',1,'']]], - ['icustomcommandhandler_900',['ICustomCommandHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['icustomcommandhandler_2ecs_901',['ICustomCommandHandler.cs',['../_i_custom_command_handler_8cs.html',1,'']]], - ['id_902',['Id',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html#a9546a5e0ce3494cf2c6300b80843c309',1,'Tgstation.Server.Api.Models.EntityId.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8986e2686e9d872b150f239de214d74c',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#a0dbaef6cf504176f317d9d87dd4c97a9',1,'Tgstation.Server.Api.Models.Internal.TestMerge.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#add9bcdc0f7075163a9034d5430e03d83',1,'Tgstation.Server.Api.Models.Internal.User.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#aa98bc0db3a17f868cc589ba91dc4c105',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a0ca32c590ede76054e653e07b8783a37',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a0dd252ba836263c5a825862bcda215f7',1,'Tgstation.Server.Host.Models.ChatChannel.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#a914b18d16f0501f1c78b6734779952dd',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab561a3992874722f25f3729251fd4249',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#ae7b25543ed8660f8882a9aeedadbcd23',1,'Tgstation.Server.Host.Models.InstanceUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a5c7ca615cd5ead17d8f7cb5fddc4bc2d',1,'Tgstation.Server.Host.Models.ReattachInformation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a3c1a07a5ecde1ec0e3c1a03fc096b2ff',1,'Tgstation.Server.Host.Models.RepositorySettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a1bde159279a6a9abec5d7b28930c6fe2',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a44a69b7ff8b7d1ca75e43e71694a8adf',1,'Tgstation.Server.Host.Models.RevisionInformation.Id()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a7246c39b82b59ca759497f0fbd8bc2da',1,'Tgstation.Server.Host.System.IProcess.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a241e3eafb07a2dcd61d530098799432e',1,'Tgstation.Server.Host.System.Process.Id()']]], - ['idatabasecollection_903',['IDatabaseCollection',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_2ecs_904',['IDatabaseCollection.cs',['../_i_database_collection_8cs.html',1,'']]], - ['idatabasecollection_3c_20chatbot_20_3e_905',['IDatabaseCollection< ChatBot >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20chatchannel_20_3e_906',['IDatabaseCollection< ChatChannel >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20compilejob_20_3e_907',['IDatabaseCollection< CompileJob >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20dreamdaemonsettings_20_3e_908',['IDatabaseCollection< DreamDaemonSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20dreammakersettings_20_3e_909',['IDatabaseCollection< DreamMakerSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20instance_20_3e_910',['IDatabaseCollection< Instance >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20instanceuser_20_3e_911',['IDatabaseCollection< InstanceUser >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20job_20_3e_912',['IDatabaseCollection< Job >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20reattachinformation_20_3e_913',['IDatabaseCollection< ReattachInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20repositorysettings_20_3e_914',['IDatabaseCollection< RepositorySettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20revisioninformation_20_3e_915',['IDatabaseCollection< RevisionInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20user_20_3e_916',['IDatabaseCollection< User >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabaseconnectionfactory_917',['IDatabaseConnectionFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], - ['idatabaseconnectionfactory_2ecs_918',['IDatabaseConnectionFactory.cs',['../_i_database_connection_factory_8cs.html',1,'']]], - ['idatabasecontext_919',['IDatabaseContext',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecontext_2ecs_920',['IDatabaseContext.cs',['../_i_database_context_8cs.html',1,'']]], - ['idatabasecontextfactory_921',['IDatabaseContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecontextfactory_2ecs_922',['IDatabaseContextFactory.cs',['../_i_database_context_factory_8cs.html',1,'']]], - ['idatabaseseeder_923',['IDatabaseSeeder',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html',1,'Tgstation::Server::Host::Database']]], - ['idatabaseseeder_2ecs_924',['IDatabaseSeeder.cs',['../_i_database_seeder_8cs.html',1,'']]], - ['identity_925',['identity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a4e5cb06d84c679a3a2d2fbfdd60e1335',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], - ['identitycache_926',['IdentityCache',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html',1,'Tgstation.Server.Host.Security.IdentityCache'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a75b914d5a6ea3a3ef3eaa2ab87b61859',1,'Tgstation.Server.Host.Controllers.HomeController.identityCache()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a94c0a91ac1bdb6d25c9546a583fb44e3',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.identityCache()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#aa3cdd5649c32a1249a2398343e82f343',1,'Tgstation.Server.Host.Security.IdentityCache.IdentityCache()']]], - ['identitycache_2ecs_927',['IdentityCache.cs',['../_identity_cache_8cs.html',1,'']]], - ['identitycacheobject_928',['IdentityCacheObject',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html',1,'Tgstation.Server.Host.Security.IdentityCacheObject'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a77e5495fa90b8eed2f2d86c6fb711da8',1,'Tgstation.Server.Host.Security.IdentityCacheObject.IdentityCacheObject()']]], - ['identitycacheobject_2ecs_929',['IdentityCacheObject.cs',['../_identity_cache_object_8cs.html',1,'']]], - ['idesigntimedbcontextfactory_930',['IDesignTimeDbContextFactory',['../class_i_design_time_db_context_factory.html',1,'']]], - ['idisposable_931',['IDisposable',['../class_i_disposable.html',1,'']]], - ['idmbfactory_932',['IDmbFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['idmbfactory_2ecs_933',['IDmbFactory.cs',['../_i_dmb_factory_8cs.html',1,'']]], - ['idmbprovider_934',['IDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['idmbprovider_2ecs_935',['IDmbProvider.cs',['../_i_dmb_provider_8cs.html',1,'']]], - ['idocumentfilter_936',['IDocumentFilter',['../class_i_document_filter.html',1,'']]], - ['idreamdaemonclient_937',['IDreamDaemonClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html',1,'Tgstation::Server::Client::Components']]], - ['idreamdaemonclient_2ecs_938',['IDreamDaemonClient.cs',['../_i_dream_daemon_client_8cs.html',1,'']]], - ['idreammaker_939',['IDreamMaker',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['idreammaker_2ecs_940',['IDreamMaker.cs',['../_i_dream_maker_8cs.html',1,'']]], - ['idreammakerclient_941',['IDreamMakerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html',1,'Tgstation::Server::Client::Components']]], - ['idreammakerclient_2ecs_942',['IDreamMakerClient.cs',['../_i_dream_maker_client_8cs.html',1,'']]], - ['ieventconsumer_943',['IEventConsumer',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html',1,'Tgstation::Server::Host::Components::Events']]], - ['ieventconsumer_2ecs_944',['IEventConsumer.cs',['../_i_event_consumer_8cs.html',1,'']]], - ['igithubclientfactory_945',['IGitHubClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html',1,'Tgstation::Server::Host::Core']]], - ['igithubclientfactory_2ecs_946',['IGitHubClientFactory.cs',['../_i_git_hub_client_factory_8cs.html',1,'']]], - ['ihostedservice_947',['IHostedService',['../class_i_hosted_service.html',1,'']]], - ['ihttpclient_948',['IHttpClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html',1,'Tgstation::Server::Client']]], - ['ihttpclient_2ecs_949',['IHttpClient.cs',['../_i_http_client_8cs.html',1,'']]], - ['iidentitycache_950',['IIdentityCache',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html',1,'Tgstation::Server::Host::Security']]], - ['iidentitycache_2ecs_951',['IIdentityCache.cs',['../_i_identity_cache_8cs.html',1,'']]], - ['iinstance_952',['IInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance.html',1,'Tgstation::Server::Host::Components']]], - ['iinstance_2ecs_953',['IInstance.cs',['../_i_instance_8cs.html',1,'']]], - ['iinstanceclient_954',['IInstanceClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html',1,'Tgstation::Server::Client::Components']]], - ['iinstanceclient_2ecs_955',['IInstanceClient.cs',['../_i_instance_client_8cs.html',1,'']]], - ['iinstancecore_956',['IInstanceCore',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancecore_2ecs_957',['IInstanceCore.cs',['../_i_instance_core_8cs.html',1,'']]], - ['iinstancecoreprovider_958',['IInstanceCoreProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancecoreprovider_2ecs_959',['IInstanceCoreProvider.cs',['../_i_instance_core_provider_8cs.html',1,'']]], - ['iinstancefactory_960',['IInstanceFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancefactory_2ecs_961',['IInstanceFactory.cs',['../_i_instance_factory_8cs.html',1,'']]], - ['iinstancemanager_962',['IInstanceManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancemanager_2ecs_963',['IInstanceManager.cs',['../_i_instance_manager_8cs.html',1,'']]], - ['iinstancemanagerclient_964',['IInstanceManagerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html',1,'Tgstation::Server::Client']]], - ['iinstancemanagerclient_2ecs_965',['IInstanceManagerClient.cs',['../_i_instance_manager_client_8cs.html',1,'']]], - ['iinstancereference_966',['IInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancereference_2ecs_967',['IInstanceReference.cs',['../_i_instance_reference_8cs.html',1,'']]], - ['iinstanceuserclient_968',['IInstanceUserClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html',1,'Tgstation::Server::Client::Components']]], - ['iinstanceuserclient_2ecs_969',['IInstanceUserClient.cs',['../_i_instance_user_client_8cs.html',1,'']]], - ['iiomanager_970',['IIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['iiomanager_2ecs_971',['IIOManager.cs',['../_i_i_o_manager_8cs.html',1,'']]], - ['ijobmanager_972',['IJobManager',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html',1,'Tgstation::Server::Host::Jobs']]], - ['ijobmanager_2ecs_973',['IJobManager.cs',['../_i_job_manager_8cs.html',1,'']]], - ['ijobsclient_974',['IJobsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html',1,'Tgstation::Server::Client::Components']]], - ['ijobsclient_2ecs_975',['IJobsClient.cs',['../_i_jobs_client_8cs.html',1,'']]], - ['ilatestcompilejobprovider_976',['ILatestCompileJobProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['ilatestcompilejobprovider_2ecs_977',['ILatestCompileJobProvider.cs',['../_i_latest_compile_job_provider_8cs.html',1,'']]], - ['ilibgit2commands_978',['ILibGit2Commands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['ilibgit2commands_2ecs_979',['ILibGit2Commands.cs',['../_i_lib_git2_commands_8cs.html',1,'']]], - ['ilibgit2repositoryfactory_980',['ILibGit2RepositoryFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['ilibgit2repositoryfactory_2ecs_981',['ILibGit2RepositoryFactory.cs',['../_i_lib_git2_repository_factory_8cs.html',1,'']]], - ['incompatible_982',['Incompatible',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2a208768bc7995cc26b7f3797d24b0b1',1,'Tgstation::Server::Host::Components::Session']]], - ['inetworkpromptreaper_983',['INetworkPromptReaper',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], - ['inetworkpromptreaper_2ecs_984',['INetworkPromptReaper.cs',['../_i_network_prompt_reaper_8cs.html',1,'']]], - ['infinitetask_985',['InfiniteTask',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a81dec7122d90677b97a3b1f2c84440cf',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], - ['initcontrollers_986',['InitControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a33718a8a97983fa9fb12c0d27bec8732',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a848a86aa5ceb25bdab6d4957494ef166',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a4b0a1532e11c7f7a5695123bac28c0ab',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InitControllers()']]], - ['initialize_987',['Initialize',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a453f07e4addb58e08b4ce0ddfb84e357',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Initialize()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a62bc67dd82ccf210c92c01966640cb64',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Initialize()']]], - ['initiallink_988',['InitialLink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a4f3509ee8b0e7e47f95c9fba8cce33e3',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitialLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a95894cd21ba5de89171ff97a53b7130c',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.InitialLink()']]], - ['injectclaimsintocontext_989',['InjectClaimsIntoContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a68b33948ac77f08ab2dc17209ce78314',1,'Tgstation.Server.Host.Security.ClaimsInjector.InjectClaimsIntoContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html#ac15d0e829afdb2e3523f6ea38879759e',1,'Tgstation.Server.Host.Security.IClaimsInjector.InjectClaimsIntoContext()']]], - ['install_990',['Install',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#ae3be244b24cbb3c9ba859f55e53715e6',1,'Tgstation::Server::Host::Service::Program']]], - ['installbyond_991',['InstallByond',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aba649f661759b2da61f51f112d060f85',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.InstallByond()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a8fec89a87bef1153e103e4b3349fb27b',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a91ccfa2ffcfce658cf045b37de2aa153',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a791ef513301c98f21808049b43f6db36',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.InstallByond()']]], - ['installcustomversion_992',['InstallCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9aa08f65365d7310334494f45af5e89bfb',1,'Tgstation::Server::Api::Rights']]], - ['installeddirectx_993',['installedDirectX',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a4aaf9bd89e5ad031016e64a3b3cbd3bb',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['installedversions_994',['InstalledVersions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ac6285b8768d8b10b5e4bdeec2cb43953',1,'Tgstation.Server.Host.Components.Byond.ByondManager.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae5fc64e6504a3fd8d1cf1131d841fa14',1,'Tgstation.Server.Host.Components.Byond.IByondManager.InstalledVersions()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a58ad28bf73680ade13cd1bf1ebece987',1,'Tgstation.Server.Client.Components.ByondClient.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a1538f8488e7866c4986afe7d3b7ef1a0',1,'Tgstation.Server.Client.Components.IByondClient.InstalledVersions()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a0811c130dd3533e163b38d32a17a8394',1,'Tgstation.Server.Host.Components.Byond.ByondManager.installedVersions()']]], - ['installjob_995',['InstallJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a95cc5fea2731ef04dcd1261689816194',1,'Tgstation::Server::Api::Models::Byond']]], - ['installofficialorchangeactiveversion_996',['InstallOfficialOrChangeActiveVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a58ad8910d4292a8890f2c04cf5ddc50e',1,'Tgstation::Server::Api::Rights']]], - ['installversion_997',['InstallVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a4bddb77bd7ead9f87e24380a35b4e7e0',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['instance_998',['Instance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html',1,'Tgstation.Server.Host.Components.Instance'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html',1,'Tgstation.Server.Host.Models.Instance'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html',1,'Tgstation.Server.Api.Models.Instance'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1e2ffe3a3e89009efec3e4dc5b59baf6',1,'Tgstation.Server.Host.Components.InstanceContainer.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a19f89ec03ffd6f2bf5cab5214d5e6bb8',1,'Tgstation.Server.Host.Controllers.ApiController.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ae5433d8739dbd431a207684fb9b4d37d',1,'Tgstation.Server.Host.Models.ChatBot.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ac33f867ccf152b5fd3a52242e2fed5b4',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a7d310dcc01986cdbfb6bb41d1f80825d',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a84b3880b44a50b0064cd5c5a18027752',1,'Tgstation.Server.Host.Models.InstanceUser.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#acebd359c2b46a97a5ddf7c6c9c4f9eb7',1,'Tgstation.Server.Host.Models.Job.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a254c0c0373323dc5910b83a8edcfdac2',1,'Tgstation.Server.Host.Models.RepositorySettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ac8ea8a7b515a91b6bd20975fd8f1fd7a',1,'Tgstation.Server.Host.Models.RevisionInformation.Instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4ec856fefa4de5eba884c0392cece9b9',1,'Tgstation.Server.Host.Components.Instance.Instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a96b47c77cfbbad1f762003260953c840',1,'Tgstation.Server.Client.Components.ByondClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af082b31182c4ecdcbe3b9c0a81bf9ead',1,'Tgstation.Server.Client.Components.ChatBotsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a3fbe930ee9bc4cf37d734c4ccc50668c',1,'Tgstation.Server.Client.Components.ConfigurationClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afaaf929e746f11a67fd7eb5818bcd7e9',1,'Tgstation.Server.Client.Components.DreamDaemonClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a8c4ace450e5976c24b3982749de5ccff',1,'Tgstation.Server.Client.Components.DreamMakerClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#aaea798aa626ad6d51d036f65c53ea47f',1,'Tgstation.Server.Client.Components.InstanceUserClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#ab7fc36983aad5fd506a83687b70c77ff',1,'Tgstation.Server.Client.Components.JobsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a3af323ae0b97782b3917673b8d239af8',1,'Tgstation.Server.Client.Components.RepositoryClient.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a23c8b9d8f35c1bf902d5ac22c4260bed',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a441cefe121e0cc6469c9a800b734a231',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a8a7c8effe98ea2c3aeacf3a350dbb072',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b5be8922642811c1a2912d8428554e5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a0e561e3f3b557e57569f7110cb8edc8c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.instance()']]], - ['instance_2ecs_999',['Instance.cs',['../_tgstation_8_server_8_api_2_models_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_8cs.html',1,'(Global Namespace)']]], - ['instanceadminuser_1000',['InstanceAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a5af7adb80dadd03c8e37f196357aa861',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['instanceatconflictingpath_1001',['InstanceAtConflictingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a92490b862c79e1b5898483fe55fc0c41',1,'Tgstation::Server::Api::Models']]], - ['instanceatexistingpath_1002',['InstanceAtExistingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a494653f2fb509351b13abef0efe2e0ec',1,'Tgstation::Server::Api::Models']]], - ['instanceattachfilename_1003',['InstanceAttachFileName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa40d55750e2193d714eb1470505c47ee',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['instanceautoupdatestart_1004',['InstanceAutoUpdateStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aefc3f4c097e45227dcc2aee3aadc034f',1,'Tgstation::Server::Host::Components::Events']]], - ['instanceclient_1005',['InstanceClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html',1,'Tgstation.Server.Client.Components.InstanceClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af44767648e0b31f744ea09f0864c70ca',1,'Tgstation.Server.Client.Components.InstanceClient.InstanceClient()']]], - ['instanceclient_2ecs_1006',['InstanceClient.cs',['../_instance_client_8cs.html',1,'']]], - ['instancecontainer_1007',['InstanceContainer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html',1,'Tgstation.Server.Host.Components.InstanceContainer'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#af82fc6acfe4860979ca9c7bc4e188537',1,'Tgstation.Server.Host.Components.InstanceContainer.InstanceContainer()']]], - ['instancecontainer_2ecs_1008',['InstanceContainer.cs',['../_instance_container_8cs.html',1,'']]], - ['instancecontroller_1009',['InstanceController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html',1,'Tgstation.Server.Host.Controllers.InstanceController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aae605f4084115d20fb47da5370708e53',1,'Tgstation.Server.Host.Controllers.InstanceController.InstanceController()']]], - ['instancecontroller_2ecs_1010',['InstanceController.cs',['../_instance_controller_8cs.html',1,'']]], - ['instancecoreprovider_1011',['instanceCoreProvider',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa4c0ba27f0b63feac43b865490f971c3',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['instancedetachonline_1012',['InstanceDetachOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa7e647228c270688b33eebe6c40b4fd1',1,'Tgstation::Server::Api::Models']]], - ['instancefactory_1013',['InstanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html',1,'Tgstation.Server.Host.Components.InstanceFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad114c9e0305d14f78502d60bcfbdedc',1,'Tgstation.Server.Host.Components.InstanceFactory.InstanceFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ae2b48b5197337f7a311fd115951be7f6',1,'Tgstation.Server.Host.Components.InstanceManager.instanceFactory()']]], - ['instancefactory_2ecs_1014',['InstanceFactory.cs',['../_instance_factory_8cs.html',1,'']]], - ['instanceheaderrequired_1015',['InstanceHeaderRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a49be0a84ceb449e1d69789040ca5ade1',1,'Tgstation::Server::Api::Models']]], - ['instanceid_1016',['InstanceId',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a65e7d0ba3a39c992691f7721c62c1531',1,'Tgstation.Server.Api.ApiHeaders.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a87db1326cbb80ca4a8945be90769656b',1,'Tgstation.Server.Host.Models.ChatBot.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ae94a52d9c7e94f3a043ccce4c6731935',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a0173e07dda1034e7cd127a426d3cfa69',1,'Tgstation.Server.Host.Models.DreamMakerSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a35f8d34f833a758e290c732f40954ddd',1,'Tgstation.Server.Host.Models.InstanceUser.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a019883724ea4000a3c088d6dbd7ffaa9',1,'Tgstation.Server.Host.Models.RepositorySettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a6453d51fe22d312fadfccc0f6e9e3e89',1,'Tgstation.Server.Host.Models.RevisionInformation.InstanceId()']]], - ['instanceidheader_1017',['InstanceIdHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a28f94492eb21542e63675a53d871e3ef',1,'Tgstation::Server::Api::ApiHeaders']]], - ['instancelimit_1018',['InstanceLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a37f3b06cddaa9d460b13ed6544c3e528',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['instancelimitreached_1019',['InstanceLimitReached',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac043c16f72e845bae9e6a18cf61cb70c',1,'Tgstation::Server::Api::Models']]], - ['instancemanager_1020',['InstanceManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html',1,'Tgstation.Server.Host.Components.InstanceManager'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a17bfc22b8cbc4624a6ec180aeba91da8',1,'Tgstation.Server.Api.Routes.InstanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a1ea0b9c26cf8246544575d8705adaeb5',1,'Tgstation.Server.Host.Components.InstanceManager.InstanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad177b6d13a08c429c49b7e4294387d3c',1,'Tgstation.Server.Host.Controllers.InstanceController.instanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a1f3dffb9da170f16374e58f333ece5a7',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.instanceManager()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7c77d4c45a003ee3d6b3589d2459cc49',1,'Tgstation.Server.Api.Rights.InstanceManager()']]], - ['instancemanager_2ecs_1021',['InstanceManager.cs',['../_instance_manager_8cs.html',1,'']]], - ['instancemanagerclient_1022',['InstanceManagerClient',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html',1,'Tgstation.Server.Client.InstanceManagerClient'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a2d6043c1548bc86551fe56f12a78d4cb',1,'Tgstation.Server.Client.InstanceManagerClient.InstanceManagerClient()']]], - ['instancemanagerclient_2ecs_1023',['InstanceManagerClient.cs',['../_instance_manager_client_8cs.html',1,'']]], - ['instancemanagerrights_1024',['InstanceManagerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a816ca80f5eecd84ec46d4a365e5633e7',1,'Tgstation.Server.Api.Models.Internal.User.InstanceManagerRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79',1,'Tgstation.Server.Api.Rights.InstanceManagerRights()']]], - ['instancemanagerrights_2ecs_1025',['InstanceManagerRights.cs',['../_instance_manager_rights_8cs.html',1,'']]], - ['instancemissingdreamdaemonsettings_1026',['InstanceMissingDreamDaemonSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a666168f23ed748258e22b8950c4b0f27',1,'Tgstation::Server::Api::Models']]], - ['instancemissingdreammakersettings_1027',['InstanceMissingDreamMakerSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa9f54d7bb19782121fa03fab399ba5f7',1,'Tgstation::Server::Api::Models']]], - ['instancemissingrepositorysettings_1028',['InstanceMissingRepositorySettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaa4f2a635185665f10e6be24896ce863',1,'Tgstation::Server::Api::Models']]], - ['instancename_1029',['InstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a98b09ab187ea429e7531931880c9a4c4',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['instancenotatwhitelistedpath_1030',['InstanceNotAtWhitelistedPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae9174043b3cb148be4194a6d1d17f72d',1,'Tgstation::Server::Api::Models']]], - ['instanceoffline_1031',['InstanceOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a64aec32513a670bfc35bea8f4a98aac1',1,'Tgstation::Server::Api::Models']]], - ['instancerelocateonline_1032',['InstanceRelocateOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a961349b83821ed87f141d4f939891c0f',1,'Tgstation::Server::Api::Models']]], - ['instancerenamed_1033',['InstanceRenamed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a83fd03b9f768637cd654e3aca814d1ee',1,'Tgstation.Server.Host.Components.Instance.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ac6481d23a77a9c099df0e8d62024c245',1,'Tgstation.Server.Host.Components.InstanceWrapper.InstanceRenamed()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html#a69fed1472e47f53392237645d5d65d7a',1,'Tgstation.Server.Host.Components.IRenameNotifyee.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a903d2a63951a7425699c6936160826d7',1,'Tgstation.Server.Host.Components.Session.SessionController.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#aea63863a921d33b97558500dab1b74e3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a3ca371ec92c273cd6b3ab2f6931f8a65',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InstanceRenamed()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a4f6bb27ca06982f2f66d7d0aa8f34b51',1,'Tgstation.Server.Host.Components.Interop.Topic.InstanceRenamed()']]], - ['instancerequiredcontroller_1034',['InstanceRequiredController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a8b5ef7433a5d9f43de5a927211c56d15',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.InstanceRequiredController()']]], - ['instancerequiredcontroller_2ecs_1035',['InstanceRequiredController.cs',['../_instance_required_controller_8cs.html',1,'']]], - ['instances_1036',['instances',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a7fbbda0a3ee75cc0c9a3a7a5446b2861',1,'Tgstation.Server.Host.Components.InstanceManager.instances()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a220af3e47b92df41d6b96bf8851c11ab',1,'Tgstation.Server.Client.IServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9eb413c086e3e6d25ec2c404611c2b31',1,'Tgstation.Server.Client.ServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a1bc257ebf1d31bfba7f665d61da5c4a2',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a406446a1d01e301d7aae83f41342e9de',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab5e3be8b1e0e665bc077fd26a082cbf8',1,'Tgstation.Server.Host.Database.IDatabaseContext.Instances()']]], - ['instancescollection_1037',['instancesCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8d1d446a81c900d40cf03e43ae09447f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['instancestatechangesemaphore_1038',['instanceStateChangeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abaf66550ead757ef3bc6915c9b15d06b',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['instanceupdatetestmergeconflict_1039',['InstanceUpdateTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8af0345b1fb1d4e36d1812269f61e9fef5',1,'Tgstation::Server::Api::Models']]], - ['instanceuser_1040',['InstanceUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Api.Models.InstanceUser'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Host.Models.InstanceUser'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#ac215c662b5627fe87122f575d006c95f',1,'Tgstation.Server.Api.Routes.InstanceUser()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a5916cab82702e8c3bea39d500419c5dc',1,'Tgstation.Server.Host.Security.AuthenticationContext.InstanceUser()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a0ffbd3a91f52330582bbc56c13ba7dda',1,'Tgstation.Server.Host.Security.IAuthenticationContext.InstanceUser()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a07665be2d43147f42c2e73e8e2a19655',1,'Tgstation.Server.Api.Rights.InstanceUser()']]], - ['instanceuser_2ecs_1041',['InstanceUser.cs',['../_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html',1,'(Global Namespace)']]], - ['instanceuserclient_1042',['InstanceUserClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html',1,'Tgstation.Server.Client.Components.InstanceUserClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a2ae6151c326432db1eaba0373f73733f',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUserClient()']]], - ['instanceuserclient_2ecs_1043',['InstanceUserClient.cs',['../_instance_user_client_8cs.html',1,'']]], - ['instanceusercontroller_1044',['InstanceUserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html',1,'Tgstation.Server.Host.Controllers.InstanceUserController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#ab4cec86ff2546bffbf8c34409e70db18',1,'Tgstation.Server.Host.Controllers.InstanceUserController.InstanceUserController()']]], - ['instanceusercontroller_2ecs_1045',['InstanceUserController.cs',['../_instance_user_controller_8cs.html',1,'']]], - ['instanceuserrights_1046',['InstanceUserRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a152009cdbb0c44ffdf1fc775dd4bd37f',1,'Tgstation.Server.Api.Models.InstanceUser.InstanceUserRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601',1,'Tgstation.Server.Api.Rights.InstanceUserRights()']]], - ['instanceuserrights_2ecs_1047',['InstanceUserRights.cs',['../_instance_user_rights_8cs.html',1,'']]], - ['instanceusers_1048',['InstanceUsers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a67a792509733c253bc1a9e45bdf7fb1b',1,'Tgstation.Server.Host.Database.DatabaseContext.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0682cda5b4267cd68c33a47d2de09350',1,'Tgstation.Server.Host.Database.DatabaseContext.InstanceUsers()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#abbfc1a074c77b49660d0eea6fac07265',1,'Tgstation.Server.Host.Database.IDatabaseContext.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a8aeecedc60cf6a79241b7cfbe1f313e9',1,'Tgstation.Server.Host.Models.Instance.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a5e83231130e0280d9061ee1a2b7eeabd',1,'Tgstation.Server.Host.Models.User.InstanceUsers()']]], - ['instanceuserscollection_1049',['instanceUsersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a05f04b6bf605180ed744d6c1207a166c',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['instancewhitespacename_1050',['InstanceWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a024cf09531e01356ce46f4e6abd33f77',1,'Tgstation::Server::Api::Models']]], - ['instancewrapper_1051',['InstanceWrapper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html',1,'Tgstation.Server.Host.Components.InstanceWrapper'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a3e7066925de75bb14f70fc25799b1ae8',1,'Tgstation.Server.Host.Components.InstanceWrapper.InstanceWrapper()']]], - ['instancewrapper_2ecs_1052',['InstanceWrapper.cs',['../_instance_wrapper_8cs.html',1,'']]], - ['insufficientpermissionsexception_1053',['InsufficientPermissionsException',['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html',1,'Tgstation.Server.Client.InsufficientPermissionsException'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a9b84ac4233e3147d263c8cbe7d15f81f',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a03f411a80e2a3bd6c8f789737459f475',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a611c12ed0eb292ab571c23fac254c1de',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message, Exception innerException)']]], - ['insufficientpermissionsexception_2ecs_1054',['InsufficientPermissionsException.cs',['../_insufficient_permissions_exception_8cs.html',1,'']]], - ['internalservererror_1055',['InternalServerError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aecbf01325f1c744e9d7bb586ac2eb5ed',1,'Tgstation::Server::Api::Models']]], - ['interopresponse_1056',['InteropResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#a6d3f5ad86d833a4536460b2fdb105078',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], - ['inuse_1057',['InUse',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#acfd46405a7a81980c34cc001476b51ca',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.InUse()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8603cad6d9df4a2079d3249becd0bbbb',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.InUse()']]], - ['invalidsecuritylevel_1058',['InvalidSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a54c3bb0b7ab41e23b93701c35a2609a9',1,'Tgstation::Server::Api::Models']]], - ['invoke_1059',['Invoke',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aff1db476b01426242e3e7bbceab29269',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a25ab08ad3ea95e7a9f36331508835415',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Invoke()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aec41b4a7dc4cfad84b6af984ecc358b3',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ae7ff41e55394f44dc9961e8e1fd48e82',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#aa2acf1a5c23b69b03518dff1249a8d7f',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#ab92179ae88df722d697ebc27d9b70d7d',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a53052185d1d9a53ecb098443b47a033d',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Invoke()']]], - ['ioerror_1060',['IOError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5206bd7472156351d2d9a99633ac9580',1,'Tgstation::Server::Api::Models']]], - ['iomanager_1061',['ioManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a8bd6b3e78c550d8229807a240c6560ee',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3cbd5eecf146607f81c6e71bd9a2ebd6',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a6b8bb606be734da77ecf3987c9bef7a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a2bb559eb27c511b6f897ff1202e47282',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a12b6f9e3418fd806d7e38dfb3c5461d4',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a5f0da2a044d1b9df7e85492cb58c076c',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ad83afb6725e2fb215dfdcbab34f3b3d7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a493988c0490c85b95850f7bc2a5acfab',1,'Tgstation.Server.Host.Components.InstanceFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a59bc4b977f9b72208d553fbfa57f118e',1,'Tgstation.Server.Host.Components.InstanceManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#aa62f89a29abc7febb886a1e7216067a2',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a5297f8901872024fded4e74f5e12e5ff',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#afd5e0aef7c9a1023bc8a6cebe483c4c3',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac2d19cdcca5ed40c3f6f2123f426e655',1,'Tgstation.Server.Host.Controllers.AdministrationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a564df332546a6fcee923d3e2cab2fac6',1,'Tgstation.Server.Host.Controllers.ConfigurationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#afb2e4e54c38a97b299d1fb7692cc5cdd',1,'Tgstation.Server.Host.Controllers.InstanceController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a184ae525a19269b209054ffbd5da0dae',1,'Tgstation.Server.Host.Setup.SetupWizard.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1de594c25d7d9e7e5d159675b2c03873',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a2f6df4eb114c4155bd89af1f43e9a03d',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.IOManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a48f520e11b35ecee4fb2677a4ea08824',1,'Tgstation.Server.Host.IServerFactory.IOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a00dd1ed657781fec45931a35278ac3a2',1,'Tgstation.Server.Host.ServerFactory.IOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a07863aaad3219fc6efb929ab139f0bbc',1,'Tgstation.Server.Host.Setup.SetupApplication.IOManager()']]], - ['iomananger_1062',['ioMananger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a01a4beb2cee07561f7749668939ab88e',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['iopenapiextension_1063',['IOpenApiExtension',['../class_i_open_api_extension.html',1,'']]], - ['ioperationfilter_1064',['IOperationFilter',['../class_i_operation_filter.html',1,'']]], - ['iplatformidentifier_1065',['IPlatformIdentifier',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html',1,'Tgstation::Server::Host::System']]], - ['iplatformidentifier_2ecs_1066',['IPlatformIdentifier.cs',['../_i_platform_identifier_8cs.html',1,'']]], - ['ipostsetupservices_1067',['IPostSetupServices',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html',1,'Tgstation::Server::Host::Setup']]], - ['ipostsetupservices_2ecs_1068',['IPostSetupServices.cs',['../_i_post_setup_services_8cs.html',1,'']]], - ['ipostwritehandler_1069',['IPostWriteHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], - ['ipostwritehandler_2ecs_1070',['IPostWriteHandler.cs',['../_i_post_write_handler_8cs.html',1,'']]], - ['iprocess_1071',['IProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html',1,'Tgstation::Server::Host::System']]], - ['iprocess_2ecs_1072',['IProcess.cs',['../_i_process_8cs.html',1,'']]], - ['iprocessbase_1073',['IProcessBase',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html',1,'Tgstation::Server::Host::System']]], - ['iprocessbase_2ecs_1074',['IProcessBase.cs',['../_i_process_base_8cs.html',1,'']]], - ['iprocessexecutor_1075',['IProcessExecutor',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html',1,'Tgstation::Server::Host::System']]], - ['iprocessexecutor_2ecs_1076',['IProcessExecutor.cs',['../_i_process_executor_8cs.html',1,'']]], - ['iprocessfeatures_1077',['IProcessFeatures',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html',1,'Tgstation::Server::Host::System']]], - ['iprocessfeatures_2ecs_1078',['IProcessFeatures.cs',['../_i_process_features_8cs.html',1,'']]], - ['iprovider_1079',['IProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['iprovider_2ecs_1080',['IProvider.cs',['../_i_provider_8cs.html',1,'']]], - ['iproviderfactory_1081',['IProviderFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['iproviderfactory_2ecs_1082',['IProviderFactory.cs',['../_i_provider_factory_8cs.html',1,'']]], - ['iqueryable_1083',['IQueryable',['../class_i_queryable.html',1,'']]], - ['irc_1084',['Irc',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca2b6446aa685b2e1260e9d6f60239e547',1,'Tgstation::Server::Api::Models']]], - ['ircchannel_1085',['IrcChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1b5abf235612bc3aef37d6ba54c8c943',1,'Tgstation::Server::Api::Models::ChatChannel']]], - ['ircconnectionstringbuilder_1086',['IrcConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#aaca6717795e0914dd265e40bdeb9e045',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7334c0cb968cb00c1bbe1c5fd3a05e33',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder(string connectionString)']]], - ['ircconnectionstringbuilder_2ecs_1087',['IrcConnectionStringBuilder.cs',['../_irc_connection_string_builder_8cs.html',1,'']]], - ['ircpasswordtype_1088',['IrcPasswordType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545b',1,'Tgstation::Server::Api::Models']]], - ['ircpasswordtype_2ecs_1089',['IrcPasswordType.cs',['../_irc_password_type_8cs.html',1,'']]], - ['ircprovider_1090',['IrcProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ac70109905b392e48e33911b5267e800c',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.IrcProvider()']]], - ['ircprovider_2ecs_1091',['IrcProvider.cs',['../_irc_provider_8cs.html',1,'']]], - ['irenamenotifyee_1092',['IRenameNotifyee',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html',1,'Tgstation::Server::Host::Components']]], - ['irenamenotifyee_2ecs_1093',['IRenameNotifyee.cs',['../_i_rename_notifyee_8cs.html',1,'']]], - ['irepository_1094',['IRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['irepository_2ecs_1095',['IRepository.cs',['../_i_repository_8cs.html',1,'']]], - ['irepositoryclient_1096',['IRepositoryClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html',1,'Tgstation::Server::Client::Components']]], - ['irepositoryclient_2ecs_1097',['IRepositoryClient.cs',['../_i_repository_client_8cs.html',1,'']]], - ['irepositorymanager_1098',['IRepositoryManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['irepositorymanager_2ecs_1099',['IRepositoryManager.cs',['../_i_repository_manager_8cs.html',1,'']]], - ['irequestlogger_1100',['IRequestLogger',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html',1,'Tgstation::Server::Client']]], - ['irequestlogger_2ecs_1101',['IRequestLogger.cs',['../_i_request_logger_8cs.html',1,'']]], - ['irestarthandler_1102',['IRestartHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html',1,'Tgstation::Server::Host::Core']]], - ['irestarthandler_2ecs_1103',['IRestartHandler.cs',['../_i_restart_handler_8cs.html',1,'']]], - ['irestartregistration_1104',['IRestartRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_registration.html',1,'Tgstation::Server::Host::Core']]], - ['irestartregistration_2ecs_1105',['IRestartRegistration.cs',['../_i_restart_registration_8cs.html',1,'']]], - ['isadminchannel_1106',['IsAdminChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1a945855589edd8cd22a68bb1ae7323e',1,'Tgstation.Server.Api.Models.ChatChannel.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a3893bc5636b686e2a656f85263e191e1',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a5e3306682c350b0cfac4507762b6d8b1',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.IsAdminChannel()']]], - ['isadministrator_1107',['IsAdministrator',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5c942ce276ce92ca31ecbe9c88f2e982',1,'Tgstation::Server::Host::Service::Program']]], - ['ischemafilter_1108',['ISchemaFilter',['../class_i_schema_filter.html',1,'']]], - ['isdirectory_1109',['IsDirectory',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a674f1c0203cb7b2cd326ead5f810b885',1,'Tgstation.Server.Api.Models.ConfigurationFile.IsDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a6b94d0c1144161066ce9707231026fe3',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.IsDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ac1b1a366625c83d9e7cc57acabca1d98',1,'Tgstation.Server.Host.IO.SynchronousIOManager.IsDirectory()']]], - ['iserver_1110',['IServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html',1,'Tgstation::Server::Host']]], - ['iserver_2ecs_1111',['IServer.cs',['../_i_server_8cs.html',1,'']]], - ['iserverclient_1112',['IServerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html',1,'Tgstation::Server::Client']]], - ['iserverclient_2ecs_1113',['IServerClient.cs',['../_i_server_client_8cs.html',1,'']]], - ['iserverclientfactory_1114',['IServerClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html',1,'Tgstation::Server::Client']]], - ['iserverclientfactory_2ecs_1115',['IServerClientFactory.cs',['../_i_server_client_factory_8cs.html',1,'']]], - ['iservercontrol_1116',['IServerControl',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html',1,'Tgstation::Server::Host::Core']]], - ['iservercontrol_2ecs_1117',['IServerControl.cs',['../_i_server_control_8cs.html',1,'']]], - ['iserverfactory_1118',['IServerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html',1,'Tgstation::Server::Host']]], - ['iserverfactory_2ecs_1119',['IServerFactory.cs',['../_i_server_factory_8cs.html',1,'']]], - ['iserverportprovider_1120',['IServerPortProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html',1,'Tgstation::Server::Host::Core']]], - ['iserverportprovider_2ecs_1121',['IServerPortProvider.cs',['../_i_server_port_provider_8cs.html',1,'']]], - ['isessioncontroller_1122',['ISessionController',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html',1,'Tgstation::Server::Host::Components::Session']]], - ['isessioncontroller_2ecs_1123',['ISessionController.cs',['../_i_session_controller_8cs.html',1,'']]], - ['isessioncontrollerfactory_1124',['ISessionControllerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html',1,'Tgstation::Server::Host::Components::Session']]], - ['isessioncontrollerfactory_2ecs_1125',['ISessionControllerFactory.cs',['../_i_session_controller_factory_8cs.html',1,'']]], - ['isessionpersistor_1126',['ISessionPersistor',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html',1,'Tgstation::Server::Host::Components::Session']]], - ['isessionpersistor_2ecs_1127',['ISessionPersistor.cs',['../_i_session_persistor_8cs.html',1,'']]], - ['isgithubrepository_1128',['IsGitHubRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a60ae733cb70d63e2ceedadca18bec940',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a58e407a627009694a99f21823c2593',1,'Tgstation.Server.Host.Components.Repository.Repository.IsGitHubRepository()']]], - ['isinstanceright_1129',['IsInstanceRight',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a40d32838ff902da852c54215bd8e89fb',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['isprivatechannel_1130',['IsPrivateChannel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ac958a992eb0e2afa5555d09538645eac',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], - ['issha_1131',['IsSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ac03c80ad5ffb1ee381dd882fa7a01c3c',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2d7497e82967ff9a18368a100c58bf1',1,'Tgstation.Server.Host.Components.Repository.Repository.IsSha()']]], - ['istokenauthentication_1132',['IsTokenAuthentication',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a30222f85d684f2a9c9861a8638b6a31f',1,'Tgstation::Server::Api::ApiHeaders']]], - ['isupdateschannel_1133',['IsUpdatesChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a9e8659b045bad05567bef7d037d372d9',1,'Tgstation.Server.Api.Models.ChatChannel.IsUpdatesChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a602d016c7a0c753aea994d6fc1d6f9db',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsUpdatesChannel()']]], - ['iswatchdogchannel_1134',['IsWatchdogChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#afb292a0bc8975fae2ca0269e77b29430',1,'Tgstation.Server.Api.Models.ChatChannel.IsWatchdogChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#aa1ded40a4ff15aa4d0e588aca23f6577',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsWatchdogChannel()']]], - ['iswindows_1135',['IsWindows',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#aa9bf3bd1082b7178f58cb1f36839550e',1,'Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#acb15bcd0271ceb5c551ee21293310d8f',1,'Tgstation.Server.Host.System.PlatformIdentifier.IsWindows()']]], - ['isymlinkfactory_1136',['ISymlinkFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], - ['isymlinkfactory_2ecs_1137',['ISymlinkFactory.cs',['../_i_symlink_factory_8cs.html',1,'']]], - ['isynchronousiomanager_1138',['ISynchronousIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['isynchronousiomanager_2ecs_1139',['ISynchronousIOManager.cs',['../_i_synchronous_i_o_manager_8cs.html',1,'']]], - ['isystemidentity_1140',['ISystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html',1,'Tgstation::Server::Host::Security']]], - ['isystemidentity_2ecs_1141',['ISystemIdentity.cs',['../_i_system_identity_8cs.html',1,'']]], - ['isystemidentityfactory_1142',['ISystemIdentityFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], - ['isystemidentityfactory_2ecs_1143',['ISystemIdentityFactory.cs',['../_i_system_identity_factory_8cs.html',1,'']]], - ['itokenfactory_1144',['ITokenFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html',1,'Tgstation::Server::Host::Security']]], - ['itokenfactory_2ecs_1145',['ITokenFactory.cs',['../_i_token_factory_8cs.html',1,'']]], - ['itopicclientfactory_1146',['ITopicClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html',1,'Tgstation::Server::Host::Components::Session']]], - ['itopicclientfactory_2ecs_1147',['ITopicClientFactory.cs',['../_i_topic_client_factory_8cs.html',1,'']]], - ['iusersclient_1148',['IUsersClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html',1,'Tgstation::Server::Client']]], - ['iusersclient_2ecs_1149',['IUsersClient.cs',['../_i_users_client_8cs.html',1,'']]], - ['iwatchdog_1150',['IWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Watchdog.IWatchdog']]], - ['iwatchdog_2ecs_1151',['IWatchdog.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)']]], - ['iwatchdogfactory_1152',['IWatchdogFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory']]], - ['iwatchdogfactory_2ecs_1153',['IWatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)']]] + ['iadministrationclient_871',['IAdministrationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html',1,'Tgstation::Server::Client']]], + ['iadministrationclient_2ecs_872',['IAdministrationClient.cs',['../_i_administration_client_8cs.html',1,'']]], + ['iapiclient_873',['IApiClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html',1,'Tgstation::Server::Client']]], + ['iapiclient_2ecs_874',['IApiClient.cs',['../_i_api_client_8cs.html',1,'']]], + ['iapiclientfactory_875',['IApiClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html',1,'Tgstation::Server::Client']]], + ['iapiclientfactory_2ecs_876',['IApiClientFactory.cs',['../_i_api_client_factory_8cs.html',1,'']]], + ['iassemblyinformationprovider_877',['IAssemblyInformationProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html',1,'Tgstation::Server::Host::System']]], + ['iassemblyinformationprovider_2ecs_878',['IAssemblyInformationProvider.cs',['../_i_assembly_information_provider_8cs.html',1,'']]], + ['iasyncdelayer_879',['IAsyncDelayer',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html',1,'Tgstation::Server::Host::Core']]], + ['iasyncdelayer_2ecs_880',['IAsyncDelayer.cs',['../_i_async_delayer_8cs.html',1,'']]], + ['iasyncdisposable_881',['IAsyncDisposable',['../class_i_async_disposable.html',1,'']]], + ['iasyncenumerable_882',['IAsyncEnumerable',['../class_i_async_enumerable.html',1,'']]], + ['iauthenticationcontext_883',['IAuthenticationContext',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html',1,'Tgstation::Server::Host::Security']]], + ['iauthenticationcontext_2ecs_884',['IAuthenticationContext.cs',['../_i_authentication_context_8cs.html',1,'']]], + ['iauthenticationcontextfactory_885',['IAuthenticationContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html',1,'Tgstation::Server::Host::Security']]], + ['iauthenticationcontextfactory_2ecs_886',['IAuthenticationContextFactory.cs',['../_i_authentication_context_factory_8cs.html',1,'']]], + ['ibridgedispatcher_887',['IBridgeDispatcher',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgedispatcher_2ecs_888',['IBridgeDispatcher.cs',['../_i_bridge_dispatcher_8cs.html',1,'']]], + ['ibridgehandler_889',['IBridgeHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgehandler_2ecs_890',['IBridgeHandler.cs',['../_i_bridge_handler_8cs.html',1,'']]], + ['ibridgeregistrar_891',['IBridgeRegistrar',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgeregistrar_2ecs_892',['IBridgeRegistrar.cs',['../_i_bridge_registrar_8cs.html',1,'']]], + ['ibridgeregistration_893',['IBridgeRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registration.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgeregistration_2ecs_894',['IBridgeRegistration.cs',['../_i_bridge_registration_8cs.html',1,'']]], + ['ibyondclient_895',['IByondClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html',1,'Tgstation::Server::Client::Components']]], + ['ibyondclient_2ecs_896',['IByondClient.cs',['../_i_byond_client_8cs.html',1,'']]], + ['ibyondexecutablelock_897',['IByondExecutableLock',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['ibyondexecutablelock_2ecs_898',['IByondExecutableLock.cs',['../_i_byond_executable_lock_8cs.html',1,'']]], + ['ibyondinstaller_899',['IByondInstaller',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['ibyondinstaller_2ecs_900',['IByondInstaller.cs',['../_i_byond_installer_8cs.html',1,'']]], + ['ibyondmanager_901',['IByondManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['ibyondmanager_2ecs_902',['IByondManager.cs',['../_i_byond_manager_8cs.html',1,'']]], + ['ichannelsink_903',['IChannelSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichannelsink_2ecs_904',['IChannelSink.cs',['../_i_channel_sink_8cs.html',1,'']]], + ['ichatbotsclient_905',['IChatBotsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html',1,'Tgstation::Server::Client::Components']]], + ['ichatbotsclient_2ecs_906',['IChatBotsClient.cs',['../_i_chat_bots_client_8cs.html',1,'']]], + ['ichatmanager_907',['IChatManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichatmanager_2ecs_908',['IChatManager.cs',['../_i_chat_manager_8cs.html',1,'']]], + ['ichatmanagerfactory_909',['IChatManagerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichatmanagerfactory_2ecs_910',['IChatManagerFactory.cs',['../_i_chat_manager_factory_8cs.html',1,'']]], + ['ichattrackingcontext_911',['IChatTrackingContext',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichattrackingcontext_2ecs_912',['IChatTrackingContext.cs',['../_i_chat_tracking_context_8cs.html',1,'']]], + ['iclaimsinjector_913',['IClaimsInjector',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html',1,'Tgstation::Server::Host::Security']]], + ['iclaimsinjector_2ecs_914',['IClaimsInjector.cs',['../_i_claims_injector_8cs.html',1,'']]], + ['icommand_915',['ICommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['icommand_2ecs_916',['ICommand.cs',['../_i_command_8cs.html',1,'']]], + ['icommandfactory_917',['ICommandFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['icommandfactory_2ecs_918',['ICommandFactory.cs',['../_i_command_factory_8cs.html',1,'']]], + ['icompilejobsink_919',['ICompileJobSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['icompilejobsink_2ecs_920',['ICompileJobSink.cs',['../_i_compile_job_sink_8cs.html',1,'']]], + ['iconfiguration_921',['IConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], + ['iconfiguration_2ecs_922',['IConfiguration.cs',['../_i_configuration_8cs.html',1,'']]], + ['iconfigurationclient_923',['IConfigurationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html',1,'Tgstation::Server::Client::Components']]], + ['iconfigurationclient_2ecs_924',['IConfigurationClient.cs',['../_i_configuration_client_8cs.html',1,'']]], + ['iconsole_925',['IConsole',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html',1,'Tgstation::Server::Host::IO']]], + ['iconsole_2ecs_926',['IConsole.cs',['../_i_console_8cs.html',1,'']]], + ['icredentialsprovider_927',['ICredentialsProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['icredentialsprovider_2ecs_928',['ICredentialsProvider.cs',['../_i_credentials_provider_8cs.html',1,'']]], + ['icryptographysuite_929',['ICryptographySuite',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html',1,'Tgstation::Server::Host::Security']]], + ['icryptographysuite_2ecs_930',['ICryptographySuite.cs',['../_i_cryptography_suite_8cs.html',1,'']]], + ['icustomcommandhandler_931',['ICustomCommandHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['icustomcommandhandler_2ecs_932',['ICustomCommandHandler.cs',['../_i_custom_command_handler_8cs.html',1,'']]], + ['id_933',['Id',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html#a9546a5e0ce3494cf2c6300b80843c309',1,'Tgstation.Server.Api.Models.EntityId.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8986e2686e9d872b150f239de214d74c',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#a0dbaef6cf504176f317d9d87dd4c97a9',1,'Tgstation.Server.Api.Models.Internal.TestMerge.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#add9bcdc0f7075163a9034d5430e03d83',1,'Tgstation.Server.Api.Models.Internal.User.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#aa98bc0db3a17f868cc589ba91dc4c105',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a0ca32c590ede76054e653e07b8783a37',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a0dd252ba836263c5a825862bcda215f7',1,'Tgstation.Server.Host.Models.ChatChannel.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#a914b18d16f0501f1c78b6734779952dd',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab561a3992874722f25f3729251fd4249',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#ae7b25543ed8660f8882a9aeedadbcd23',1,'Tgstation.Server.Host.Models.InstanceUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a5c7ca615cd5ead17d8f7cb5fddc4bc2d',1,'Tgstation.Server.Host.Models.ReattachInformation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a3c1a07a5ecde1ec0e3c1a03fc096b2ff',1,'Tgstation.Server.Host.Models.RepositorySettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a1bde159279a6a9abec5d7b28930c6fe2',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a44a69b7ff8b7d1ca75e43e71694a8adf',1,'Tgstation.Server.Host.Models.RevisionInformation.Id()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a7246c39b82b59ca759497f0fbd8bc2da',1,'Tgstation.Server.Host.System.IProcess.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a241e3eafb07a2dcd61d530098799432e',1,'Tgstation.Server.Host.System.Process.Id()']]], + ['idatabasecollection_934',['IDatabaseCollection',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_2ecs_935',['IDatabaseCollection.cs',['../_i_database_collection_8cs.html',1,'']]], + ['idatabasecollection_3c_20chatbot_20_3e_936',['IDatabaseCollection< ChatBot >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20chatchannel_20_3e_937',['IDatabaseCollection< ChatChannel >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20compilejob_20_3e_938',['IDatabaseCollection< CompileJob >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20dreamdaemonsettings_20_3e_939',['IDatabaseCollection< DreamDaemonSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20dreammakersettings_20_3e_940',['IDatabaseCollection< DreamMakerSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20instance_20_3e_941',['IDatabaseCollection< Instance >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20instanceuser_20_3e_942',['IDatabaseCollection< InstanceUser >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20job_20_3e_943',['IDatabaseCollection< Job >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20reattachinformation_20_3e_944',['IDatabaseCollection< ReattachInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20repositorysettings_20_3e_945',['IDatabaseCollection< RepositorySettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20revisioninformation_20_3e_946',['IDatabaseCollection< RevisionInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20user_20_3e_947',['IDatabaseCollection< User >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabaseconnectionfactory_948',['IDatabaseConnectionFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], + ['idatabaseconnectionfactory_2ecs_949',['IDatabaseConnectionFactory.cs',['../_i_database_connection_factory_8cs.html',1,'']]], + ['idatabasecontext_950',['IDatabaseContext',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecontext_2ecs_951',['IDatabaseContext.cs',['../_i_database_context_8cs.html',1,'']]], + ['idatabasecontextfactory_952',['IDatabaseContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecontextfactory_2ecs_953',['IDatabaseContextFactory.cs',['../_i_database_context_factory_8cs.html',1,'']]], + ['idatabaseseeder_954',['IDatabaseSeeder',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html',1,'Tgstation::Server::Host::Database']]], + ['idatabaseseeder_2ecs_955',['IDatabaseSeeder.cs',['../_i_database_seeder_8cs.html',1,'']]], + ['identity_956',['identity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a4e5cb06d84c679a3a2d2fbfdd60e1335',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], + ['identitycache_957',['IdentityCache',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html',1,'Tgstation.Server.Host.Security.IdentityCache'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#aa3cdd5649c32a1249a2398343e82f343',1,'Tgstation.Server.Host.Security.IdentityCache.IdentityCache()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a75b914d5a6ea3a3ef3eaa2ab87b61859',1,'Tgstation.Server.Host.Controllers.HomeController.identityCache()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a94c0a91ac1bdb6d25c9546a583fb44e3',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.identityCache()']]], + ['identitycache_2ecs_958',['IdentityCache.cs',['../_identity_cache_8cs.html',1,'']]], + ['identitycacheobject_959',['IdentityCacheObject',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html',1,'Tgstation.Server.Host.Security.IdentityCacheObject'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a77e5495fa90b8eed2f2d86c6fb711da8',1,'Tgstation.Server.Host.Security.IdentityCacheObject.IdentityCacheObject()']]], + ['identitycacheobject_2ecs_960',['IdentityCacheObject.cs',['../_identity_cache_object_8cs.html',1,'']]], + ['idesigntimedbcontextfactory_961',['IDesignTimeDbContextFactory',['../class_i_design_time_db_context_factory.html',1,'']]], + ['idisposable_962',['IDisposable',['../class_i_disposable.html',1,'']]], + ['idmbfactory_963',['IDmbFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['idmbfactory_2ecs_964',['IDmbFactory.cs',['../_i_dmb_factory_8cs.html',1,'']]], + ['idmbprovider_965',['IDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['idmbprovider_2ecs_966',['IDmbProvider.cs',['../_i_dmb_provider_8cs.html',1,'']]], + ['idocumentfilter_967',['IDocumentFilter',['../class_i_document_filter.html',1,'']]], + ['idreamdaemonclient_968',['IDreamDaemonClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html',1,'Tgstation::Server::Client::Components']]], + ['idreamdaemonclient_2ecs_969',['IDreamDaemonClient.cs',['../_i_dream_daemon_client_8cs.html',1,'']]], + ['idreammaker_970',['IDreamMaker',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['idreammaker_2ecs_971',['IDreamMaker.cs',['../_i_dream_maker_8cs.html',1,'']]], + ['idreammakerclient_972',['IDreamMakerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html',1,'Tgstation::Server::Client::Components']]], + ['idreammakerclient_2ecs_973',['IDreamMakerClient.cs',['../_i_dream_maker_client_8cs.html',1,'']]], + ['ieventconsumer_974',['IEventConsumer',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html',1,'Tgstation::Server::Host::Components::Events']]], + ['ieventconsumer_2ecs_975',['IEventConsumer.cs',['../_i_event_consumer_8cs.html',1,'']]], + ['igithubclientfactory_976',['IGitHubClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html',1,'Tgstation::Server::Host::Core']]], + ['igithubclientfactory_2ecs_977',['IGitHubClientFactory.cs',['../_i_git_hub_client_factory_8cs.html',1,'']]], + ['igithubdeploymentmanager_978',['IGitHubDeploymentManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['igithubdeploymentmanager_2ecs_979',['IGitHubDeploymentManager.cs',['../_i_git_hub_deployment_manager_8cs.html',1,'']]], + ['ihostedservice_980',['IHostedService',['../class_i_hosted_service.html',1,'']]], + ['ihttpclient_981',['IHttpClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html',1,'Tgstation::Server::Client']]], + ['ihttpclient_2ecs_982',['IHttpClient.cs',['../_i_http_client_8cs.html',1,'']]], + ['iidentitycache_983',['IIdentityCache',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html',1,'Tgstation::Server::Host::Security']]], + ['iidentitycache_2ecs_984',['IIdentityCache.cs',['../_i_identity_cache_8cs.html',1,'']]], + ['iinstance_985',['IInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance.html',1,'Tgstation::Server::Host::Components']]], + ['iinstance_2ecs_986',['IInstance.cs',['../_i_instance_8cs.html',1,'']]], + ['iinstanceclient_987',['IInstanceClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html',1,'Tgstation::Server::Client::Components']]], + ['iinstanceclient_2ecs_988',['IInstanceClient.cs',['../_i_instance_client_8cs.html',1,'']]], + ['iinstancecore_989',['IInstanceCore',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancecore_2ecs_990',['IInstanceCore.cs',['../_i_instance_core_8cs.html',1,'']]], + ['iinstancecoreprovider_991',['IInstanceCoreProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancecoreprovider_2ecs_992',['IInstanceCoreProvider.cs',['../_i_instance_core_provider_8cs.html',1,'']]], + ['iinstancefactory_993',['IInstanceFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancefactory_2ecs_994',['IInstanceFactory.cs',['../_i_instance_factory_8cs.html',1,'']]], + ['iinstancemanager_995',['IInstanceManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancemanager_2ecs_996',['IInstanceManager.cs',['../_i_instance_manager_8cs.html',1,'']]], + ['iinstancemanagerclient_997',['IInstanceManagerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html',1,'Tgstation::Server::Client']]], + ['iinstancemanagerclient_2ecs_998',['IInstanceManagerClient.cs',['../_i_instance_manager_client_8cs.html',1,'']]], + ['iinstancereference_999',['IInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancereference_2ecs_1000',['IInstanceReference.cs',['../_i_instance_reference_8cs.html',1,'']]], + ['iinstanceuserclient_1001',['IInstanceUserClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html',1,'Tgstation::Server::Client::Components']]], + ['iinstanceuserclient_2ecs_1002',['IInstanceUserClient.cs',['../_i_instance_user_client_8cs.html',1,'']]], + ['iiomanager_1003',['IIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['iiomanager_2ecs_1004',['IIOManager.cs',['../_i_i_o_manager_8cs.html',1,'']]], + ['ijobmanager_1005',['IJobManager',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html',1,'Tgstation::Server::Host::Jobs']]], + ['ijobmanager_2ecs_1006',['IJobManager.cs',['../_i_job_manager_8cs.html',1,'']]], + ['ijobsclient_1007',['IJobsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html',1,'Tgstation::Server::Client::Components']]], + ['ijobsclient_2ecs_1008',['IJobsClient.cs',['../_i_jobs_client_8cs.html',1,'']]], + ['ilatestcompilejobprovider_1009',['ILatestCompileJobProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['ilatestcompilejobprovider_2ecs_1010',['ILatestCompileJobProvider.cs',['../_i_latest_compile_job_provider_8cs.html',1,'']]], + ['ilibgit2commands_1011',['ILibGit2Commands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['ilibgit2commands_2ecs_1012',['ILibGit2Commands.cs',['../_i_lib_git2_commands_8cs.html',1,'']]], + ['ilibgit2repositoryfactory_1013',['ILibGit2RepositoryFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['ilibgit2repositoryfactory_2ecs_1014',['ILibGit2RepositoryFactory.cs',['../_i_lib_git2_repository_factory_8cs.html',1,'']]], + ['incompatible_1015',['Incompatible',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2a208768bc7995cc26b7f3797d24b0b1',1,'Tgstation::Server::Host::Components::Session']]], + ['inetworkpromptreaper_1016',['INetworkPromptReaper',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], + ['inetworkpromptreaper_2ecs_1017',['INetworkPromptReaper.cs',['../_i_network_prompt_reaper_8cs.html',1,'']]], + ['infinitetask_1018',['InfiniteTask',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a81dec7122d90677b97a3b1f2c84440cf',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], + ['initcontrollers_1019',['InitControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a33718a8a97983fa9fb12c0d27bec8732',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a848a86aa5ceb25bdab6d4957494ef166',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a4b0a1532e11c7f7a5695123bac28c0ab',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InitControllers()']]], + ['initialbridgerequesttcs_1020',['initialBridgeRequestTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a46b96fa7b78a3678e47c4771f1abb46d',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['initialconnection_1021',['InitialConnection',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a422e8e55e6988c994b23eaaf16cf0498',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['initialconnectionjob_1022',['InitialConnectionJob',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a98843a608252fa92e550215f3097e51e',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.InitialConnectionJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a8f4348efc454ce044b78b979c84bd926',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.InitialConnectionJob()']]], + ['initialconnectiontcs_1023',['initialConnectionTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a9d0ff2a1c0d3cc6ad32e99f3c8debc2b',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['initialize_1024',['Initialize',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a453f07e4addb58e08b4ce0ddfb84e357',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Initialize()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a62bc67dd82ccf210c92c01966640cb64',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Initialize()']]], + ['initiallink_1025',['InitialLink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a4f3509ee8b0e7e47f95c9fba8cce33e3',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitialLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a95894cd21ba5de89171ff97a53b7130c',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.InitialLink()']]], + ['initialproviderconnectionstask_1026',['initialProviderConnectionsTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a44b2cf5f8d6c222b4357d158c0e59d65',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['injectclaimsintocontext_1027',['InjectClaimsIntoContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a68b33948ac77f08ab2dc17209ce78314',1,'Tgstation.Server.Host.Security.ClaimsInjector.InjectClaimsIntoContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html#ac15d0e829afdb2e3523f6ea38879759e',1,'Tgstation.Server.Host.Security.IClaimsInjector.InjectClaimsIntoContext()']]], + ['install_1028',['Install',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#ae3be244b24cbb3c9ba859f55e53715e6',1,'Tgstation::Server::Host::Service::Program']]], + ['installbyond_1029',['InstallByond',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aba649f661759b2da61f51f112d060f85',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.InstallByond()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a8fec89a87bef1153e103e4b3349fb27b',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a91ccfa2ffcfce658cf045b37de2aa153',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a89436c16bb220487bf376cc456ee753e',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.InstallByond()']]], + ['installcustomversion_1030',['InstallCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9aa08f65365d7310334494f45af5e89bfb',1,'Tgstation::Server::Api::Rights']]], + ['installdirectx_1031',['InstallDirectX',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ace687a0a8ab8b2c11dfa48715dc83c87',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['installeddirectx_1032',['installedDirectX',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a4aaf9bd89e5ad031016e64a3b3cbd3bb',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['installedversions_1033',['installedVersions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a0811c130dd3533e163b38d32a17a8394',1,'Tgstation.Server.Host.Components.Byond.ByondManager.installedVersions()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ac6285b8768d8b10b5e4bdeec2cb43953',1,'Tgstation.Server.Host.Components.Byond.ByondManager.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae5fc64e6504a3fd8d1cf1131d841fa14',1,'Tgstation.Server.Host.Components.Byond.IByondManager.InstalledVersions()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a58ad28bf73680ade13cd1bf1ebece987',1,'Tgstation.Server.Client.Components.ByondClient.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a1538f8488e7866c4986afe7d3b7ef1a0',1,'Tgstation.Server.Client.Components.IByondClient.InstalledVersions()']]], + ['installjob_1034',['InstallJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a95cc5fea2731ef04dcd1261689816194',1,'Tgstation::Server::Api::Models::Byond']]], + ['installofficialorchangeactiveversion_1035',['InstallOfficialOrChangeActiveVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a58ad8910d4292a8890f2c04cf5ddc50e',1,'Tgstation::Server::Api::Rights']]], + ['installversion_1036',['InstallVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a4bddb77bd7ead9f87e24380a35b4e7e0',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['instance_1037',['Instance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html',1,'Tgstation.Server.Host.Components.Instance'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html',1,'Tgstation.Server.Host.Models.Instance'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html',1,'Tgstation.Server.Api.Models.Instance'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a96b47c77cfbbad1f762003260953c840',1,'Tgstation.Server.Client.Components.ByondClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af082b31182c4ecdcbe3b9c0a81bf9ead',1,'Tgstation.Server.Client.Components.ChatBotsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a3fbe930ee9bc4cf37d734c4ccc50668c',1,'Tgstation.Server.Client.Components.ConfigurationClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afaaf929e746f11a67fd7eb5818bcd7e9',1,'Tgstation.Server.Client.Components.DreamDaemonClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a8c4ace450e5976c24b3982749de5ccff',1,'Tgstation.Server.Client.Components.DreamMakerClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#aaea798aa626ad6d51d036f65c53ea47f',1,'Tgstation.Server.Client.Components.InstanceUserClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#ab7fc36983aad5fd506a83687b70c77ff',1,'Tgstation.Server.Client.Components.JobsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a3af323ae0b97782b3917673b8d239af8',1,'Tgstation.Server.Client.Components.RepositoryClient.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a23c8b9d8f35c1bf902d5ac22c4260bed',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a441cefe121e0cc6469c9a800b734a231',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a8a7c8effe98ea2c3aeacf3a350dbb072',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b5be8922642811c1a2912d8428554e5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a0e561e3f3b557e57569f7110cb8edc8c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1e2ffe3a3e89009efec3e4dc5b59baf6',1,'Tgstation.Server.Host.Components.InstanceContainer.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a19f89ec03ffd6f2bf5cab5214d5e6bb8',1,'Tgstation.Server.Host.Controllers.ApiController.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ae5433d8739dbd431a207684fb9b4d37d',1,'Tgstation.Server.Host.Models.ChatBot.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ac33f867ccf152b5fd3a52242e2fed5b4',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a7d310dcc01986cdbfb6bb41d1f80825d',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a84b3880b44a50b0064cd5c5a18027752',1,'Tgstation.Server.Host.Models.InstanceUser.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#acebd359c2b46a97a5ddf7c6c9c4f9eb7',1,'Tgstation.Server.Host.Models.Job.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a254c0c0373323dc5910b83a8edcfdac2',1,'Tgstation.Server.Host.Models.RepositorySettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ac8ea8a7b515a91b6bd20975fd8f1fd7a',1,'Tgstation.Server.Host.Models.RevisionInformation.Instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4ec856fefa4de5eba884c0392cece9b9',1,'Tgstation.Server.Host.Components.Instance.Instance()']]], + ['instance_2ecs_1038',['Instance.cs',['../_tgstation_8_server_8_api_2_models_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_8cs.html',1,'(Global Namespace)']]], + ['instanceadminuser_1039',['InstanceAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a5af7adb80dadd03c8e37f196357aa861',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['instanceatconflictingpath_1040',['InstanceAtConflictingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a92490b862c79e1b5898483fe55fc0c41',1,'Tgstation::Server::Api::Models']]], + ['instanceatexistingpath_1041',['InstanceAtExistingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a494653f2fb509351b13abef0efe2e0ec',1,'Tgstation::Server::Api::Models']]], + ['instanceattachfilename_1042',['InstanceAttachFileName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa40d55750e2193d714eb1470505c47ee',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['instanceautoupdatestart_1043',['InstanceAutoUpdateStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aefc3f4c097e45227dcc2aee3aadc034f',1,'Tgstation::Server::Host::Components::Events']]], + ['instanceclient_1044',['InstanceClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html',1,'Tgstation.Server.Client.Components.InstanceClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af44767648e0b31f744ea09f0864c70ca',1,'Tgstation.Server.Client.Components.InstanceClient.InstanceClient()']]], + ['instanceclient_2ecs_1045',['InstanceClient.cs',['../_instance_client_8cs.html',1,'']]], + ['instancecontainer_1046',['InstanceContainer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html',1,'Tgstation.Server.Host.Components.InstanceContainer'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#af82fc6acfe4860979ca9c7bc4e188537',1,'Tgstation.Server.Host.Components.InstanceContainer.InstanceContainer()']]], + ['instancecontainer_2ecs_1047',['InstanceContainer.cs',['../_instance_container_8cs.html',1,'']]], + ['instancecontroller_1048',['InstanceController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html',1,'Tgstation.Server.Host.Controllers.InstanceController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aae605f4084115d20fb47da5370708e53',1,'Tgstation.Server.Host.Controllers.InstanceController.InstanceController()']]], + ['instancecontroller_2ecs_1049',['InstanceController.cs',['../_instance_controller_8cs.html',1,'']]], + ['instancecoreprovider_1050',['instanceCoreProvider',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa4c0ba27f0b63feac43b865490f971c3',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['instancedetachonline_1051',['InstanceDetachOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa7e647228c270688b33eebe6c40b4fd1',1,'Tgstation::Server::Api::Models']]], + ['instancefactory_1052',['InstanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html',1,'Tgstation.Server.Host.Components.InstanceFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad114c9e0305d14f78502d60bcfbdedc',1,'Tgstation.Server.Host.Components.InstanceFactory.InstanceFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ae2b48b5197337f7a311fd115951be7f6',1,'Tgstation.Server.Host.Components.InstanceManager.instanceFactory()']]], + ['instancefactory_2ecs_1053',['InstanceFactory.cs',['../_instance_factory_8cs.html',1,'']]], + ['instanceheaderrequired_1054',['InstanceHeaderRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a49be0a84ceb449e1d69789040ca5ade1',1,'Tgstation::Server::Api::Models']]], + ['instanceid_1055',['InstanceId',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a65e7d0ba3a39c992691f7721c62c1531',1,'Tgstation.Server.Api.ApiHeaders.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a87db1326cbb80ca4a8945be90769656b',1,'Tgstation.Server.Host.Models.ChatBot.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ae94a52d9c7e94f3a043ccce4c6731935',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a0173e07dda1034e7cd127a426d3cfa69',1,'Tgstation.Server.Host.Models.DreamMakerSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a35f8d34f833a758e290c732f40954ddd',1,'Tgstation.Server.Host.Models.InstanceUser.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a019883724ea4000a3c088d6dbd7ffaa9',1,'Tgstation.Server.Host.Models.RepositorySettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a6453d51fe22d312fadfccc0f6e9e3e89',1,'Tgstation.Server.Host.Models.RevisionInformation.InstanceId()']]], + ['instanceidheader_1056',['InstanceIdHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a28f94492eb21542e63675a53d871e3ef',1,'Tgstation::Server::Api::ApiHeaders']]], + ['instancelimit_1057',['InstanceLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a37f3b06cddaa9d460b13ed6544c3e528',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['instancelimitreached_1058',['InstanceLimitReached',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac043c16f72e845bae9e6a18cf61cb70c',1,'Tgstation::Server::Api::Models']]], + ['instancemanager_1059',['InstanceManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html',1,'Tgstation.Server.Host.Components.InstanceManager'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a17bfc22b8cbc4624a6ec180aeba91da8',1,'Tgstation.Server.Api.Routes.InstanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a1ea0b9c26cf8246544575d8705adaeb5',1,'Tgstation.Server.Host.Components.InstanceManager.InstanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad177b6d13a08c429c49b7e4294387d3c',1,'Tgstation.Server.Host.Controllers.InstanceController.instanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a1f3dffb9da170f16374e58f333ece5a7',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.instanceManager()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7c77d4c45a003ee3d6b3589d2459cc49',1,'Tgstation.Server.Api.Rights.InstanceManager()']]], + ['instancemanager_2ecs_1060',['InstanceManager.cs',['../_instance_manager_8cs.html',1,'']]], + ['instancemanagerclient_1061',['InstanceManagerClient',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html',1,'Tgstation.Server.Client.InstanceManagerClient'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a2d6043c1548bc86551fe56f12a78d4cb',1,'Tgstation.Server.Client.InstanceManagerClient.InstanceManagerClient()']]], + ['instancemanagerclient_2ecs_1062',['InstanceManagerClient.cs',['../_instance_manager_client_8cs.html',1,'']]], + ['instancemanagerrights_1063',['InstanceManagerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a816ca80f5eecd84ec46d4a365e5633e7',1,'Tgstation.Server.Api.Models.Internal.User.InstanceManagerRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79',1,'Tgstation.Server.Api.Rights.InstanceManagerRights()']]], + ['instancemanagerrights_2ecs_1064',['InstanceManagerRights.cs',['../_instance_manager_rights_8cs.html',1,'']]], + ['instancemissingdreamdaemonsettings_1065',['InstanceMissingDreamDaemonSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a666168f23ed748258e22b8950c4b0f27',1,'Tgstation::Server::Api::Models']]], + ['instancemissingdreammakersettings_1066',['InstanceMissingDreamMakerSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa9f54d7bb19782121fa03fab399ba5f7',1,'Tgstation::Server::Api::Models']]], + ['instancemissingrepositorysettings_1067',['InstanceMissingRepositorySettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaa4f2a635185665f10e6be24896ce863',1,'Tgstation::Server::Api::Models']]], + ['instancename_1068',['InstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a98b09ab187ea429e7531931880c9a4c4',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['instancenotatwhitelistedpath_1069',['InstanceNotAtWhitelistedPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae9174043b3cb148be4194a6d1d17f72d',1,'Tgstation::Server::Api::Models']]], + ['instanceoffline_1070',['InstanceOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a64aec32513a670bfc35bea8f4a98aac1',1,'Tgstation::Server::Api::Models']]], + ['instancerelocateonline_1071',['InstanceRelocateOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a961349b83821ed87f141d4f939891c0f',1,'Tgstation::Server::Api::Models']]], + ['instancerenamed_1072',['InstanceRenamed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a83fd03b9f768637cd654e3aca814d1ee',1,'Tgstation.Server.Host.Components.Instance.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ac6481d23a77a9c099df0e8d62024c245',1,'Tgstation.Server.Host.Components.InstanceWrapper.InstanceRenamed()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html#a69fed1472e47f53392237645d5d65d7a',1,'Tgstation.Server.Host.Components.IRenameNotifyee.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a903d2a63951a7425699c6936160826d7',1,'Tgstation.Server.Host.Components.Session.SessionController.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#aea63863a921d33b97558500dab1b74e3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a3ca371ec92c273cd6b3ab2f6931f8a65',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InstanceRenamed()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a4f6bb27ca06982f2f66d7d0aa8f34b51',1,'Tgstation.Server.Host.Components.Interop.Topic.InstanceRenamed()']]], + ['instancerequiredcontroller_1073',['InstanceRequiredController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a8b5ef7433a5d9f43de5a927211c56d15',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.InstanceRequiredController()']]], + ['instancerequiredcontroller_2ecs_1074',['InstanceRequiredController.cs',['../_instance_required_controller_8cs.html',1,'']]], + ['instances_1075',['Instances',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a220af3e47b92df41d6b96bf8851c11ab',1,'Tgstation.Server.Client.IServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9eb413c086e3e6d25ec2c404611c2b31',1,'Tgstation.Server.Client.ServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a1bc257ebf1d31bfba7f665d61da5c4a2',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a406446a1d01e301d7aae83f41342e9de',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab5e3be8b1e0e665bc077fd26a082cbf8',1,'Tgstation.Server.Host.Database.IDatabaseContext.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a7fbbda0a3ee75cc0c9a3a7a5446b2861',1,'Tgstation.Server.Host.Components.InstanceManager.instances()']]], + ['instancescollection_1076',['instancesCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8d1d446a81c900d40cf03e43ae09447f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['instancestatechangesemaphore_1077',['instanceStateChangeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abaf66550ead757ef3bc6915c9b15d06b',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['instanceupdatetestmergeconflict_1078',['InstanceUpdateTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8af0345b1fb1d4e36d1812269f61e9fef5',1,'Tgstation::Server::Api::Models']]], + ['instanceuser_1079',['InstanceUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Api.Models.InstanceUser'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Host.Models.InstanceUser'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#ac215c662b5627fe87122f575d006c95f',1,'Tgstation.Server.Api.Routes.InstanceUser()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a5916cab82702e8c3bea39d500419c5dc',1,'Tgstation.Server.Host.Security.AuthenticationContext.InstanceUser()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a0ffbd3a91f52330582bbc56c13ba7dda',1,'Tgstation.Server.Host.Security.IAuthenticationContext.InstanceUser()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a07665be2d43147f42c2e73e8e2a19655',1,'Tgstation.Server.Api.Rights.InstanceUser()']]], + ['instanceuser_2ecs_1080',['InstanceUser.cs',['../_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html',1,'(Global Namespace)']]], + ['instanceuserclient_1081',['InstanceUserClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html',1,'Tgstation.Server.Client.Components.InstanceUserClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a2ae6151c326432db1eaba0373f73733f',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUserClient()']]], + ['instanceuserclient_2ecs_1082',['InstanceUserClient.cs',['../_instance_user_client_8cs.html',1,'']]], + ['instanceusercontroller_1083',['InstanceUserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html',1,'Tgstation.Server.Host.Controllers.InstanceUserController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#ab4cec86ff2546bffbf8c34409e70db18',1,'Tgstation.Server.Host.Controllers.InstanceUserController.InstanceUserController()']]], + ['instanceusercontroller_2ecs_1084',['InstanceUserController.cs',['../_instance_user_controller_8cs.html',1,'']]], + ['instanceuserrights_1085',['InstanceUserRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a152009cdbb0c44ffdf1fc775dd4bd37f',1,'Tgstation.Server.Api.Models.InstanceUser.InstanceUserRights()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601',1,'Tgstation.Server.Api.Rights.InstanceUserRights()']]], + ['instanceuserrights_2ecs_1086',['InstanceUserRights.cs',['../_instance_user_rights_8cs.html',1,'']]], + ['instanceusers_1087',['InstanceUsers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a67a792509733c253bc1a9e45bdf7fb1b',1,'Tgstation.Server.Host.Database.DatabaseContext.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0682cda5b4267cd68c33a47d2de09350',1,'Tgstation.Server.Host.Database.DatabaseContext.InstanceUsers()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#abbfc1a074c77b49660d0eea6fac07265',1,'Tgstation.Server.Host.Database.IDatabaseContext.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a8aeecedc60cf6a79241b7cfbe1f313e9',1,'Tgstation.Server.Host.Models.Instance.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a5e83231130e0280d9061ee1a2b7eeabd',1,'Tgstation.Server.Host.Models.User.InstanceUsers()']]], + ['instanceuserscollection_1088',['instanceUsersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a05f04b6bf605180ed744d6c1207a166c',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['instancewhitespacename_1089',['InstanceWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a024cf09531e01356ce46f4e6abd33f77',1,'Tgstation::Server::Api::Models']]], + ['instancewrapper_1090',['InstanceWrapper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html',1,'Tgstation.Server.Host.Components.InstanceWrapper'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a3e7066925de75bb14f70fc25799b1ae8',1,'Tgstation.Server.Host.Components.InstanceWrapper.InstanceWrapper()']]], + ['instancewrapper_2ecs_1091',['InstanceWrapper.cs',['../_instance_wrapper_8cs.html',1,'']]], + ['insufficientpermissionsexception_1092',['InsufficientPermissionsException',['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html',1,'Tgstation.Server.Client.InsufficientPermissionsException'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a9b84ac4233e3147d263c8cbe7d15f81f',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a03f411a80e2a3bd6c8f789737459f475',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a611c12ed0eb292ab571c23fac254c1de',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message, Exception innerException)']]], + ['insufficientpermissionsexception_2ecs_1093',['InsufficientPermissionsException.cs',['../_insufficient_permissions_exception_8cs.html',1,'']]], + ['internalservererror_1094',['InternalServerError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aecbf01325f1c744e9d7bb586ac2eb5ed',1,'Tgstation::Server::Api::Models']]], + ['interopresponse_1095',['InteropResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#a6d3f5ad86d833a4536460b2fdb105078',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], + ['inuse_1096',['InUse',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#acfd46405a7a81980c34cc001476b51ca',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.InUse()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8603cad6d9df4a2079d3249becd0bbbb',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.InUse()']]], + ['invalidsecuritylevel_1097',['InvalidSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a54c3bb0b7ab41e23b93701c35a2609a9',1,'Tgstation::Server::Api::Models']]], + ['invoke_1098',['Invoke',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aff1db476b01426242e3e7bbceab29269',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a25ab08ad3ea95e7a9f36331508835415',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Invoke()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aec41b4a7dc4cfad84b6af984ecc358b3',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ae7ff41e55394f44dc9961e8e1fd48e82',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#aa2acf1a5c23b69b03518dff1249a8d7f',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#ab92179ae88df722d697ebc27d9b70d7d',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a53052185d1d9a53ecb098443b47a033d',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Invoke()']]], + ['ioerror_1099',['IOError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5206bd7472156351d2d9a99633ac9580',1,'Tgstation::Server::Api::Models']]], + ['iomanager_1100',['ioManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a8bd6b3e78c550d8229807a240c6560ee',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3cbd5eecf146607f81c6e71bd9a2ebd6',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a6b8bb606be734da77ecf3987c9bef7a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a2bb559eb27c511b6f897ff1202e47282',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a12b6f9e3418fd806d7e38dfb3c5461d4',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a5f0da2a044d1b9df7e85492cb58c076c',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ad83afb6725e2fb215dfdcbab34f3b3d7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a493988c0490c85b95850f7bc2a5acfab',1,'Tgstation.Server.Host.Components.InstanceFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a59bc4b977f9b72208d553fbfa57f118e',1,'Tgstation.Server.Host.Components.InstanceManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#aa62f89a29abc7febb886a1e7216067a2',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a5297f8901872024fded4e74f5e12e5ff',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#afd5e0aef7c9a1023bc8a6cebe483c4c3',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac2d19cdcca5ed40c3f6f2123f426e655',1,'Tgstation.Server.Host.Controllers.AdministrationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a564df332546a6fcee923d3e2cab2fac6',1,'Tgstation.Server.Host.Controllers.ConfigurationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#afb2e4e54c38a97b299d1fb7692cc5cdd',1,'Tgstation.Server.Host.Controllers.InstanceController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a184ae525a19269b209054ffbd5da0dae',1,'Tgstation.Server.Host.Setup.SetupWizard.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1de594c25d7d9e7e5d159675b2c03873',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a2f6df4eb114c4155bd89af1f43e9a03d',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.IOManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a48f520e11b35ecee4fb2677a4ea08824',1,'Tgstation.Server.Host.IServerFactory.IOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a00dd1ed657781fec45931a35278ac3a2',1,'Tgstation.Server.Host.ServerFactory.IOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a07863aaad3219fc6efb929ab139f0bbc',1,'Tgstation.Server.Host.Setup.SetupApplication.IOManager()']]], + ['iomananger_1101',['ioMananger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a01a4beb2cee07561f7749668939ab88e',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['iopenapiextension_1102',['IOpenApiExtension',['../class_i_open_api_extension.html',1,'']]], + ['ioperationfilter_1103',['IOperationFilter',['../class_i_operation_filter.html',1,'']]], + ['iplatformidentifier_1104',['IPlatformIdentifier',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html',1,'Tgstation::Server::Host::System']]], + ['iplatformidentifier_2ecs_1105',['IPlatformIdentifier.cs',['../_i_platform_identifier_8cs.html',1,'']]], + ['ipostsetupservices_1106',['IPostSetupServices',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html',1,'Tgstation::Server::Host::Setup']]], + ['ipostsetupservices_2ecs_1107',['IPostSetupServices.cs',['../_i_post_setup_services_8cs.html',1,'']]], + ['ipostwritehandler_1108',['IPostWriteHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], + ['ipostwritehandler_2ecs_1109',['IPostWriteHandler.cs',['../_i_post_write_handler_8cs.html',1,'']]], + ['iprocess_1110',['IProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html',1,'Tgstation::Server::Host::System']]], + ['iprocess_2ecs_1111',['IProcess.cs',['../_i_process_8cs.html',1,'']]], + ['iprocessbase_1112',['IProcessBase',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html',1,'Tgstation::Server::Host::System']]], + ['iprocessbase_2ecs_1113',['IProcessBase.cs',['../_i_process_base_8cs.html',1,'']]], + ['iprocessexecutor_1114',['IProcessExecutor',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html',1,'Tgstation::Server::Host::System']]], + ['iprocessexecutor_2ecs_1115',['IProcessExecutor.cs',['../_i_process_executor_8cs.html',1,'']]], + ['iprocessfeatures_1116',['IProcessFeatures',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html',1,'Tgstation::Server::Host::System']]], + ['iprocessfeatures_2ecs_1117',['IProcessFeatures.cs',['../_i_process_features_8cs.html',1,'']]], + ['iprovider_1118',['IProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['iprovider_2ecs_1119',['IProvider.cs',['../_i_provider_8cs.html',1,'']]], + ['iproviderfactory_1120',['IProviderFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['iproviderfactory_2ecs_1121',['IProviderFactory.cs',['../_i_provider_factory_8cs.html',1,'']]], + ['iqueryable_1122',['IQueryable',['../class_i_queryable.html',1,'']]], + ['irc_1123',['Irc',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca2b6446aa685b2e1260e9d6f60239e547',1,'Tgstation::Server::Api::Models']]], + ['ircchannel_1124',['IrcChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1b5abf235612bc3aef37d6ba54c8c943',1,'Tgstation::Server::Api::Models::ChatChannel']]], + ['ircconnectionstringbuilder_1125',['IrcConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#aaca6717795e0914dd265e40bdeb9e045',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7334c0cb968cb00c1bbe1c5fd3a05e33',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder(string connectionString)']]], + ['ircconnectionstringbuilder_2ecs_1126',['IrcConnectionStringBuilder.cs',['../_irc_connection_string_builder_8cs.html',1,'']]], + ['ircpasswordtype_1127',['IrcPasswordType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545b',1,'Tgstation::Server::Api::Models']]], + ['ircpasswordtype_2ecs_1128',['IrcPasswordType.cs',['../_irc_password_type_8cs.html',1,'']]], + ['ircprovider_1129',['IrcProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ac70109905b392e48e33911b5267e800c',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.IrcProvider()']]], + ['ircprovider_2ecs_1130',['IrcProvider.cs',['../_irc_provider_8cs.html',1,'']]], + ['irenamenotifyee_1131',['IRenameNotifyee',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html',1,'Tgstation::Server::Host::Components']]], + ['irenamenotifyee_2ecs_1132',['IRenameNotifyee.cs',['../_i_rename_notifyee_8cs.html',1,'']]], + ['irepository_1133',['IRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['irepository_2ecs_1134',['IRepository.cs',['../_i_repository_8cs.html',1,'']]], + ['irepositoryclient_1135',['IRepositoryClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html',1,'Tgstation::Server::Client::Components']]], + ['irepositoryclient_2ecs_1136',['IRepositoryClient.cs',['../_i_repository_client_8cs.html',1,'']]], + ['irepositorymanager_1137',['IRepositoryManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['irepositorymanager_2ecs_1138',['IRepositoryManager.cs',['../_i_repository_manager_8cs.html',1,'']]], + ['irequestlogger_1139',['IRequestLogger',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html',1,'Tgstation::Server::Client']]], + ['irequestlogger_2ecs_1140',['IRequestLogger.cs',['../_i_request_logger_8cs.html',1,'']]], + ['irestarthandler_1141',['IRestartHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html',1,'Tgstation::Server::Host::Core']]], + ['irestarthandler_2ecs_1142',['IRestartHandler.cs',['../_i_restart_handler_8cs.html',1,'']]], + ['irestartregistration_1143',['IRestartRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_registration.html',1,'Tgstation::Server::Host::Core']]], + ['irestartregistration_2ecs_1144',['IRestartRegistration.cs',['../_i_restart_registration_8cs.html',1,'']]], + ['isadminchannel_1145',['IsAdminChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1a945855589edd8cd22a68bb1ae7323e',1,'Tgstation.Server.Api.Models.ChatChannel.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a3893bc5636b686e2a656f85263e191e1',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a5e3306682c350b0cfac4507762b6d8b1',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.IsAdminChannel()']]], + ['isadministrator_1146',['IsAdministrator',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5c942ce276ce92ca31ecbe9c88f2e982',1,'Tgstation::Server::Host::Service::Program']]], + ['ischemafilter_1147',['ISchemaFilter',['../class_i_schema_filter.html',1,'']]], + ['isdirectory_1148',['IsDirectory',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a674f1c0203cb7b2cd326ead5f810b885',1,'Tgstation.Server.Api.Models.ConfigurationFile.IsDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a6b94d0c1144161066ce9707231026fe3',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.IsDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ac1b1a366625c83d9e7cc57acabca1d98',1,'Tgstation.Server.Host.IO.SynchronousIOManager.IsDirectory()']]], + ['iserver_1149',['IServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html',1,'Tgstation::Server::Host']]], + ['iserver_2ecs_1150',['IServer.cs',['../_i_server_8cs.html',1,'']]], + ['iserverclient_1151',['IServerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html',1,'Tgstation::Server::Client']]], + ['iserverclient_2ecs_1152',['IServerClient.cs',['../_i_server_client_8cs.html',1,'']]], + ['iserverclientfactory_1153',['IServerClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html',1,'Tgstation::Server::Client']]], + ['iserverclientfactory_2ecs_1154',['IServerClientFactory.cs',['../_i_server_client_factory_8cs.html',1,'']]], + ['iservercontrol_1155',['IServerControl',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html',1,'Tgstation::Server::Host::Core']]], + ['iservercontrol_2ecs_1156',['IServerControl.cs',['../_i_server_control_8cs.html',1,'']]], + ['iserverfactory_1157',['IServerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html',1,'Tgstation::Server::Host']]], + ['iserverfactory_2ecs_1158',['IServerFactory.cs',['../_i_server_factory_8cs.html',1,'']]], + ['iserverportprovider_1159',['IServerPortProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html',1,'Tgstation::Server::Host::Core']]], + ['iserverportprovider_2ecs_1160',['IServerPortProvider.cs',['../_i_server_port_provider_8cs.html',1,'']]], + ['isessioncontroller_1161',['ISessionController',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html',1,'Tgstation::Server::Host::Components::Session']]], + ['isessioncontroller_2ecs_1162',['ISessionController.cs',['../_i_session_controller_8cs.html',1,'']]], + ['isessioncontrollerfactory_1163',['ISessionControllerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html',1,'Tgstation::Server::Host::Components::Session']]], + ['isessioncontrollerfactory_2ecs_1164',['ISessionControllerFactory.cs',['../_i_session_controller_factory_8cs.html',1,'']]], + ['isessionpersistor_1165',['ISessionPersistor',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html',1,'Tgstation::Server::Host::Components::Session']]], + ['isessionpersistor_2ecs_1166',['ISessionPersistor.cs',['../_i_session_persistor_8cs.html',1,'']]], + ['isgithubrepository_1167',['IsGitHubRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a60ae733cb70d63e2ceedadca18bec940',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a58e407a627009694a99f21823c2593',1,'Tgstation.Server.Host.Components.Repository.Repository.IsGitHubRepository()']]], + ['isinstanceright_1168',['IsInstanceRight',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a40d32838ff902da852c54215bd8e89fb',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['isprivatechannel_1169',['IsPrivateChannel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ac958a992eb0e2afa5555d09538645eac',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], + ['issha_1170',['IsSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ac03c80ad5ffb1ee381dd882fa7a01c3c',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2d7497e82967ff9a18368a100c58bf1',1,'Tgstation.Server.Host.Components.Repository.Repository.IsSha()']]], + ['istokenauthentication_1171',['IsTokenAuthentication',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a30222f85d684f2a9c9861a8638b6a31f',1,'Tgstation::Server::Api::ApiHeaders']]], + ['isupdateschannel_1172',['IsUpdatesChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a9e8659b045bad05567bef7d037d372d9',1,'Tgstation.Server.Api.Models.ChatChannel.IsUpdatesChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a602d016c7a0c753aea994d6fc1d6f9db',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsUpdatesChannel()']]], + ['iswatchdogchannel_1173',['IsWatchdogChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#afb292a0bc8975fae2ca0269e77b29430',1,'Tgstation.Server.Api.Models.ChatChannel.IsWatchdogChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#aa1ded40a4ff15aa4d0e588aca23f6577',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsWatchdogChannel()']]], + ['iswindows_1174',['IsWindows',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#aa9bf3bd1082b7178f58cb1f36839550e',1,'Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#acb15bcd0271ceb5c551ee21293310d8f',1,'Tgstation.Server.Host.System.PlatformIdentifier.IsWindows()']]], + ['isymlinkfactory_1175',['ISymlinkFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], + ['isymlinkfactory_2ecs_1176',['ISymlinkFactory.cs',['../_i_symlink_factory_8cs.html',1,'']]], + ['isynchronousiomanager_1177',['ISynchronousIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['isynchronousiomanager_2ecs_1178',['ISynchronousIOManager.cs',['../_i_synchronous_i_o_manager_8cs.html',1,'']]], + ['isystemidentity_1179',['ISystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html',1,'Tgstation::Server::Host::Security']]], + ['isystemidentity_2ecs_1180',['ISystemIdentity.cs',['../_i_system_identity_8cs.html',1,'']]], + ['isystemidentityfactory_1181',['ISystemIdentityFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], + ['isystemidentityfactory_2ecs_1182',['ISystemIdentityFactory.cs',['../_i_system_identity_factory_8cs.html',1,'']]], + ['itokenfactory_1183',['ITokenFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html',1,'Tgstation::Server::Host::Security']]], + ['itokenfactory_2ecs_1184',['ITokenFactory.cs',['../_i_token_factory_8cs.html',1,'']]], + ['itopicclientfactory_1185',['ITopicClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html',1,'Tgstation::Server::Host::Components::Session']]], + ['itopicclientfactory_2ecs_1186',['ITopicClientFactory.cs',['../_i_topic_client_factory_8cs.html',1,'']]], + ['iusersclient_1187',['IUsersClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html',1,'Tgstation::Server::Client']]], + ['iusersclient_2ecs_1188',['IUsersClient.cs',['../_i_users_client_8cs.html',1,'']]], + ['iwatchdog_1189',['IWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Watchdog.IWatchdog']]], + ['iwatchdog_2ecs_1190',['IWatchdog.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)']]], + ['iwatchdogfactory_1191',['IWatchdogFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory']]], + ['iwatchdogfactory_2ecs_1192',['IWatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)']]] ]; diff --git a/search/all_a.html b/search/all_a.html index 0ce816b11f..e8333e8a3a 100644 --- a/search/all_a.html +++ b/search/all_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_a.js b/search/all_a.js index 766892d153..cd0579b850 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -1,26 +1,26 @@ var searchData= [ - ['job_1154',['Job',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html',1,'Tgstation.Server.Host.Models.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html',1,'Tgstation.Server.Api.Models.Internal.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html',1,'Tgstation.Server.Api.Models.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a9bab271604813bf877fe1da6626fcdb5',1,'Tgstation.Server.Api.Models.CompileJob.Job()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a0676e94669f8de80f67aa20c72db5b7c',1,'Tgstation.Server.Host.Models.CompileJob.Job()']]], - ['job_2ecs_1155',['Job.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_job_8cs.html',1,'(Global Namespace)']]], - ['jobactivator_1156',['jobActivator',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a1f8683a1b372b5a2e6ceaa67ea4ae96e',1,'Tgstation::Server::Host::Jobs::JobHandler']]], - ['jobcontroller_1157',['JobController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html',1,'Tgstation.Server.Host.Controllers.JobController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a916f535814cbba3c0b6323ec5a3fa74d',1,'Tgstation.Server.Host.Controllers.JobController.JobController()']]], - ['jobcontroller_2ecs_1158',['JobController.cs',['../_job_controller_8cs.html',1,'']]], - ['jobentrypoint_1159',['JobEntrypoint',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html#abe2e95d4f3351023b424d607ba514854',1,'Tgstation::Server::Host::Jobs']]], - ['jobentrypoint_2ecs_1160',['JobEntrypoint.cs',['../_job_entrypoint_8cs.html',1,'']]], - ['jobexception_1161',['JobException',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html',1,'Tgstation.Server.Host.Jobs.JobException'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a46d729b832783633424eca227d647698',1,'Tgstation.Server.Host.Jobs.JobException.JobException()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a7b6da48367ccdaf22ed94e1aaae7c7f4',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ab90956baed9bae34717eeee86d4d65b5',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message, Exception innerException)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ae44a780c8217e43f05104147458653f2',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#abc852516b8aa2466be3b7c2f37c40239',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode, Exception innerException)']]], - ['jobexception_2ecs_1162',['JobException.cs',['../_job_exception_8cs.html',1,'']]], - ['jobhandler_1163',['JobHandler',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html',1,'Tgstation.Server.Host.Jobs.JobHandler'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a20c3e8bbcb9467b6b861f9bb05c36072',1,'Tgstation.Server.Host.Jobs.JobHandler.JobHandler()']]], - ['jobhandler_2ecs_1164',['JobHandler.cs',['../_job_handler_8cs.html',1,'']]], - ['jobid_1165',['JobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#aeb314186da6c36566c0b8e5af7441014',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['joblockcounts_1166',['jobLockCounts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a218effcf67da26e5364cc0d277be5e72',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['jobmanager_1167',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html',1,'Tgstation.Server.Host.Jobs.JobManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a093a1483c198a8d4fcf22aff355145a4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.JobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#af824442dea2e6d9fcfda4c4d67b35c2e',1,'Tgstation.Server.Host.Jobs.JobManager.JobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#aa36ffb34c69e4a990830e49f97b7c142',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a9fa0698a97569c4cd4404c4341bd67f7',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a8442698876a3b1aab29cb968cd97203e',1,'Tgstation.Server.Host.Components.Instance.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a6913b05824f8ac83a8b5d87386ca96aa',1,'Tgstation.Server.Host.Components.InstanceFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a26d85ac963bb5258ff0ff1041fce7fa3',1,'Tgstation.Server.Host.Components.InstanceManager.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1688863ddcd7d0bbfa3ec13b7b015319',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a8e1ba9fcd8b44116da4230580c5cdbca',1,'Tgstation.Server.Host.Controllers.ByondController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ace2a566cc7ff09b10c0bbf448aaeae69',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ae195b225516fe09da8661438fb1dc03f',1,'Tgstation.Server.Host.Controllers.DreamMakerController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a38f7f9669773242d177345e38be2dd34',1,'Tgstation.Server.Host.Controllers.InstanceController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a6386df07802db9cdbf34ffe40b031921',1,'Tgstation.Server.Host.Controllers.JobController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad15c0217bf9e5ce926a198191d0a04c4',1,'Tgstation.Server.Host.Controllers.RepositoryController.jobManager()']]], - ['jobmanager_2ecs_1168',['JobManager.cs',['../_job_manager_8cs.html',1,'']]], - ['jobprogress_1169',['JobProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#ae7faeff247c3770617a353653bf21c4c',1,'Tgstation.Server.Host.Jobs.IJobManager.JobProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a6a3b177c596c04fc167b8a56c70289af',1,'Tgstation.Server.Host.Jobs.JobManager.JobProgress()']]], - ['jobs_1170',['jobs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ade9edf0f3f116c19c38036716bec9847',1,'Tgstation.Server.Host.Jobs.JobManager.jobs()'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a85c563262244bd21fe1bfa1ce5de6a1d',1,'Tgstation.Server.Api.Routes.Jobs()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#ae0df68e17fa23d0ed3445a2c8b2a00b4',1,'Tgstation.Server.Client.Components.IInstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a84709639847ef446f64be8be1da70c36',1,'Tgstation.Server.Client.Components.InstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0c2b56fc85825a4e3cace2b2b1eb6f30',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0fd2d2f14360254206ca324d8282f4d8',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a4df2e27b91f34f7a25df33ab0a3b4145',1,'Tgstation.Server.Host.Database.IDatabaseContext.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a18147abe57218ded54c53a540e77230c',1,'Tgstation.Server.Host.Models.Instance.Jobs()']]], - ['jobsclient_1171',['JobsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html',1,'Tgstation.Server.Client.Components.JobsClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ffef36f7b69e7c76e31af3958797846',1,'Tgstation.Server.Client.Components.JobsClient.JobsClient()']]], - ['jobsclient_2ecs_1172',['JobsClient.cs',['../_jobs_client_8cs.html',1,'']]], - ['jobscollection_1173',['jobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6d6f982a1c3a6966ac31b5ac2d86f3e2',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['jobstopped_1174',['JobStopped',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0bab1b90f15ed627993e94f156641b13',1,'Tgstation::Server::Api::Models']]], - ['jsonconverter_1175',['JsonConverter',['../class_json_converter.html',1,'']]], - ['jwtauthenticationscheme_1176',['JwtAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3d49a18342b81d0427f09e51c29544c2',1,'Tgstation::Server::Api::ApiHeaders']]] + ['job_1193',['Job',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html',1,'Tgstation.Server.Host.Models.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html',1,'Tgstation.Server.Api.Models.Internal.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html',1,'Tgstation.Server.Api.Models.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a9bab271604813bf877fe1da6626fcdb5',1,'Tgstation.Server.Api.Models.CompileJob.Job()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a0676e94669f8de80f67aa20c72db5b7c',1,'Tgstation.Server.Host.Models.CompileJob.Job()']]], + ['job_2ecs_1194',['Job.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_job_8cs.html',1,'(Global Namespace)']]], + ['jobactivator_1195',['jobActivator',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a1f8683a1b372b5a2e6ceaa67ea4ae96e',1,'Tgstation::Server::Host::Jobs::JobHandler']]], + ['jobcontroller_1196',['JobController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html',1,'Tgstation.Server.Host.Controllers.JobController'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a916f535814cbba3c0b6323ec5a3fa74d',1,'Tgstation.Server.Host.Controllers.JobController.JobController()']]], + ['jobcontroller_2ecs_1197',['JobController.cs',['../_job_controller_8cs.html',1,'']]], + ['jobentrypoint_1198',['JobEntrypoint',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html#abe2e95d4f3351023b424d607ba514854',1,'Tgstation::Server::Host::Jobs']]], + ['jobentrypoint_2ecs_1199',['JobEntrypoint.cs',['../_job_entrypoint_8cs.html',1,'']]], + ['jobexception_1200',['JobException',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html',1,'Tgstation.Server.Host.Jobs.JobException'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a46d729b832783633424eca227d647698',1,'Tgstation.Server.Host.Jobs.JobException.JobException()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a7b6da48367ccdaf22ed94e1aaae7c7f4',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ab90956baed9bae34717eeee86d4d65b5',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message, Exception innerException)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ae44a780c8217e43f05104147458653f2',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#abc852516b8aa2466be3b7c2f37c40239',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode, Exception innerException)']]], + ['jobexception_2ecs_1201',['JobException.cs',['../_job_exception_8cs.html',1,'']]], + ['jobhandler_1202',['JobHandler',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html',1,'Tgstation.Server.Host.Jobs.JobHandler'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a20c3e8bbcb9467b6b861f9bb05c36072',1,'Tgstation.Server.Host.Jobs.JobHandler.JobHandler()']]], + ['jobhandler_2ecs_1203',['JobHandler.cs',['../_job_handler_8cs.html',1,'']]], + ['jobid_1204',['JobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#aeb314186da6c36566c0b8e5af7441014',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['joblockcounts_1205',['jobLockCounts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a218effcf67da26e5364cc0d277be5e72',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['jobmanager_1206',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html',1,'Tgstation.Server.Host.Jobs.JobManager'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#aa36ffb34c69e4a990830e49f97b7c142',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a9fa0698a97569c4cd4404c4341bd67f7',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a8442698876a3b1aab29cb968cd97203e',1,'Tgstation.Server.Host.Components.Instance.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a6913b05824f8ac83a8b5d87386ca96aa',1,'Tgstation.Server.Host.Components.InstanceFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a26d85ac963bb5258ff0ff1041fce7fa3',1,'Tgstation.Server.Host.Components.InstanceManager.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1688863ddcd7d0bbfa3ec13b7b015319',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a8e1ba9fcd8b44116da4230580c5cdbca',1,'Tgstation.Server.Host.Controllers.ByondController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ace2a566cc7ff09b10c0bbf448aaeae69',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ae195b225516fe09da8661438fb1dc03f',1,'Tgstation.Server.Host.Controllers.DreamMakerController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a38f7f9669773242d177345e38be2dd34',1,'Tgstation.Server.Host.Controllers.InstanceController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a6386df07802db9cdbf34ffe40b031921',1,'Tgstation.Server.Host.Controllers.JobController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad15c0217bf9e5ce926a198191d0a04c4',1,'Tgstation.Server.Host.Controllers.RepositoryController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a093a1483c198a8d4fcf22aff355145a4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.JobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#af824442dea2e6d9fcfda4c4d67b35c2e',1,'Tgstation.Server.Host.Jobs.JobManager.JobManager()']]], + ['jobmanager_2ecs_1207',['JobManager.cs',['../_job_manager_8cs.html',1,'']]], + ['jobprogress_1208',['JobProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#ae7faeff247c3770617a353653bf21c4c',1,'Tgstation.Server.Host.Jobs.IJobManager.JobProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a6a3b177c596c04fc167b8a56c70289af',1,'Tgstation.Server.Host.Jobs.JobManager.JobProgress()']]], + ['jobs_1209',['jobs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ade9edf0f3f116c19c38036716bec9847',1,'Tgstation.Server.Host.Jobs.JobManager.jobs()'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a85c563262244bd21fe1bfa1ce5de6a1d',1,'Tgstation.Server.Api.Routes.Jobs()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#ae0df68e17fa23d0ed3445a2c8b2a00b4',1,'Tgstation.Server.Client.Components.IInstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a84709639847ef446f64be8be1da70c36',1,'Tgstation.Server.Client.Components.InstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0c2b56fc85825a4e3cace2b2b1eb6f30',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0fd2d2f14360254206ca324d8282f4d8',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a4df2e27b91f34f7a25df33ab0a3b4145',1,'Tgstation.Server.Host.Database.IDatabaseContext.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a18147abe57218ded54c53a540e77230c',1,'Tgstation.Server.Host.Models.Instance.Jobs()']]], + ['jobsclient_1210',['JobsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html',1,'Tgstation.Server.Client.Components.JobsClient'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ffef36f7b69e7c76e31af3958797846',1,'Tgstation.Server.Client.Components.JobsClient.JobsClient()']]], + ['jobsclient_2ecs_1211',['JobsClient.cs',['../_jobs_client_8cs.html',1,'']]], + ['jobscollection_1212',['jobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6d6f982a1c3a6966ac31b5ac2d86f3e2',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['jobstopped_1213',['JobStopped',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0bab1b90f15ed627993e94f156641b13',1,'Tgstation::Server::Api::Models']]], + ['jsonconverter_1214',['JsonConverter',['../class_json_converter.html',1,'']]], + ['jwtauthenticationscheme_1215',['JwtAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3d49a18342b81d0427f09e51c29544c2',1,'Tgstation::Server::Api::ApiHeaders']]] ]; diff --git a/search/all_b.html b/search/all_b.html index 28c2413a3b..45e48f1ebc 100644 --- a/search/all_b.html +++ b/search/all_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_b.js b/search/all_b.js index 0b1cc78912..03b2cf1dda 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['keepalive_1177',['KeepAlive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a9ce388dd865b9a5748e165a394d71682',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.KeepAlive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a01b014f3713b09cdbc9093bc1bbc0164',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a862bd6a1a165d202a6078a955d0f4a4d',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f2e4158c705ff6e500959c0d68cb89c',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.KeepAlive()']]], - ['kek_1178',['Kek',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a341a9da46f3d06a03bba883d149ff8f3',1,'Tgstation::Server::Host::Components::Chat::Commands::KekCommand']]], - ['kekcommand_1179',['KekCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['kekcommand_2ecs_1180',['KekCommand.cs',['../_kek_command_8cs.html',1,'']]], - ['kill_1181',['Kill',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da292ed5e525d66c64f13a3bf54a17c06a',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] + ['keepalive_1216',['KeepAlive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a9ce388dd865b9a5748e165a394d71682',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.KeepAlive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a01b014f3713b09cdbc9093bc1bbc0164',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a862bd6a1a165d202a6078a955d0f4a4d',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f2e4158c705ff6e500959c0d68cb89c',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.KeepAlive()']]], + ['kek_1217',['Kek',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a341a9da46f3d06a03bba883d149ff8f3',1,'Tgstation::Server::Host::Components::Chat::Commands::KekCommand']]], + ['kekcommand_1218',['KekCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['kekcommand_2ecs_1219',['KekCommand.cs',['../_kek_command_8cs.html',1,'']]], + ['kill_1220',['Kill',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da292ed5e525d66c64f13a3bf54a17c06a',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] ]; diff --git a/search/all_c.html b/search/all_c.html index 39fc49b1a6..2986769f6a 100644 --- a/search/all_c.html +++ b/search/all_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_c.js b/search/all_c.js index c610e13a08..95bf870532 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -1,53 +1,53 @@ var searchData= [ - ['lastlaunchparameters_1182',['LastLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#adf8f73df0fe074af3363857bc43e63a5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.LastLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6548572ef5ab9d7b6b3aae8647a0a053',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.LastLaunchParameters()']]], - ['lastmodified_1183',['LastModified',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#afafc391a2b9b0631feb27a0fbefddf12',1,'Tgstation::Server::Api::Models::LogFile']]], - ['lastpasswordupdate_1184',['LastPasswordUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#abd891143624157c8f48bd166cc88ab26',1,'Tgstation::Server::Host::Models::User']]], - ['lastreadhash_1185',['LastReadHash',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a70d7168ec1797a25a56e2d104783afc2',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], - ['latestcompilejob_1186',['LatestCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6fe38a0d817315fc1bd52ffd47b9d3d5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LatestCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html#a12c574e4b8010e0005b77dd242c055e7',1,'Tgstation.Server.Host.Components.Deployment.ILatestCompileJobProvider.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4b1084d8d2850d408abae881013a47d9',1,'Tgstation.Server.Host.Components.Instance.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#abd32a6968afebbba4f51fe36826fd2f2',1,'Tgstation.Server.Host.Components.InstanceWrapper.LatestCompileJob()']]], - ['latestversion_1187',['LatestVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a26197acef6ba596172d67c5e33771629',1,'Tgstation::Server::Api::Models::Administration']]], - ['launch_1188',['Launch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afa6b3f10617f13ae7af79317594020e3',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Launch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af619caa031c183aa1aa5adbcf11a3434',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Launch()']]], - ['launchnew_1189',['LaunchNew',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#a668f15e64f55fafcf7bc5ce9933edf48',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.LaunchNew()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a2e3fbaee5882bbf0cae1b195808aa2d8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew()']]], - ['launchnolock_1190',['LaunchNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5d1f2571cdce3431ab477a9c9c3e6f4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['launchprocess_1191',['LaunchProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#ac496c8c47a22086a1cbb882c1c0d391c',1,'Tgstation.Server.Host.System.IProcessExecutor.LaunchProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a584a9d2372706363eb65754fa18f5ed3',1,'Tgstation.Server.Host.System.ProcessExecutor.LaunchProcess()']]], - ['launchresult_1192',['LaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html',1,'Tgstation.Server.Host.Components.Session.LaunchResult'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#adca786a78dbcd230b94fcde69e9fc885',1,'Tgstation.Server.Host.Components.Session.ISessionController.LaunchResult()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9df2774fefe9116cc88f3ba14c6e68fc',1,'Tgstation.Server.Host.Components.Session.SessionController.LaunchResult()']]], - ['launchresult_2ecs_1193',['LaunchResult.cs',['../_launch_result_8cs.html',1,'']]], - ['launchsecuritylevel_1194',['LaunchSecurityLevel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#ac0fc4a4938302c73c622244e8176beef',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], - ['lazyloadedprocessexecutor_1195',['lazyLoadedProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a3a2559612f724db16314713f64da1d2f',1,'Tgstation::Server::Host::System::PosixProcessFeatures']]], - ['lazyrestartregistration_1196',['lazyRestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a9e2dd865f9e0403e0cb23cc1d68323ea',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['libgit2commands_1197',['LibGit2Commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['libgit2commands_2ecs_1198',['LibGit2Commands.cs',['../_lib_git2_commands_8cs.html',1,'']]], - ['libgit2repositoryfactory_1199',['LibGit2RepositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a98d05c01964113e38a0662bc3f45854b',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.LibGit2RepositoryFactory()']]], - ['libgit2repositoryfactory_2ecs_1200',['LibGit2RepositoryFactory.cs',['../_lib_git2_repository_factory_8cs.html',1,'']]], - ['libgitrepo_1201',['libGitRepo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a6fec03c9207024ead0f80fe2abd19ffb',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['lifetime_1202',['Lifetime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1c788fd5a67f57bd4344d30c3bbd6d48',1,'Tgstation.Server.Host.Components.Session.SessionController.Lifetime()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a1d57ffc6a03199bba632d2c33dc139d3',1,'Tgstation.Server.Host.System.IProcessBase.Lifetime()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7c6cb2d9bb60adf415db09b3b6a45f26',1,'Tgstation.Server.Host.System.Process.Lifetime()']]], - ['limits_1203',['Limits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html',1,'Tgstation::Server::Api::Models']]], - ['limits_2ecs_1204',['Limits.cs',['../_limits_8cs.html',1,'']]], - ['list_1205',['List',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a63077d90c7d1f0afef5045211241fb47',1,'Tgstation.Server.Api.Routes.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2e101ca44e6cd38eb8feb5e92083a58b',1,'Tgstation.Server.Client.Components.ChatBotsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a9abb058e8e7dc5fb6449db904e3ba593',1,'Tgstation.Server.Client.Components.ConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ad482caafbf4b09fcd950b2121c384803',1,'Tgstation.Server.Client.Components.IChatBotsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a20e28735258c505105437c094634d3d3',1,'Tgstation.Server.Client.Components.IConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aa67a2d298305192f32b1e9567aeb9b96',1,'Tgstation.Server.Client.Components.IInstanceUserClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a093a80fc04aa333ba794b1912bcfc418',1,'Tgstation.Server.Client.Components.IJobsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a3854e076413652c6e243bba0404b4caf',1,'Tgstation.Server.Client.Components.InstanceUserClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ebf0782934ea0387aaac2a8b1314090',1,'Tgstation.Server.Client.Components.JobsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a4d9ba68cfba405ad7a75f7a704cd9949',1,'Tgstation.Server.Client.IInstanceManagerClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a90e8afdfd1ba96a1891ca1e6cefdd5e1',1,'Tgstation.Server.Client.InstanceManagerClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aee6bf0424f2533c0b5fdd9a14c530c83',1,'Tgstation.Server.Client.IUsersClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ae560ae12df2a21d293055557095cf173',1,'Tgstation.Server.Client.UsersClient.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a628eacbc3ea0bbec83ceb8f89ae8006a',1,'Tgstation.Server.Host.Controllers.ByondController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1db346728a09c30c7cf2501c33038490',1,'Tgstation.Server.Host.Controllers.ChatController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a1fe2069cd7d9960cf7eb5b7f11518b2e',1,'Tgstation.Server.Host.Controllers.ConfigurationController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ab23313465dd631de252786d53039ba92',1,'Tgstation.Server.Host.Controllers.DreamMakerController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa1974818becc34b9aa12a67f272016d2',1,'Tgstation.Server.Host.Controllers.InstanceController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a342e61ebf421b11ef4efbba8f497bea5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#adaf5db7d78be52afff530601c4468203',1,'Tgstation.Server.Host.Controllers.JobController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a353236ca8ecf842a8458111667be8f22',1,'Tgstation.Server.Host.Controllers.UserController.List()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()']]], - ['listactive_1206',['ListActive',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#ad0e3189ae3f28e20982cf4b853013725',1,'Tgstation.Server.Client.Components.IJobsClient.ListActive()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a6de35b6d2f313009107e2bb2e2cc4ac7',1,'Tgstation.Server.Client.Components.JobsClient.ListActive()']]], - ['listdirectory_1207',['ListDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a345e802c3d53374b244c935d2ae0047b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ListDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a92a08839e2a1abad8ab26431f27ae8c6',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.ListDirectory()']]], - ['listentask_1208',['listenTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4973331fd7986b7f14ec00426b474253',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['listinstalled_1209',['ListInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9ad102ca284a1a9df653f41ec4c1b22a0b',1,'Tgstation::Server::Api::Rights']]], - ['listlogs_1210',['ListLogs',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aae9ea74b1fd163a771a6a563fb02ccaa',1,'Tgstation.Server.Client.AdministrationClient.ListLogs()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a87d1decb897faad52ff2fee928672473',1,'Tgstation.Server.Client.IAdministrationClient.ListLogs()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ad4b7ee25dc7ec160617061a6839ca2b7',1,'Tgstation.Server.Host.Controllers.AdministrationController.ListLogs()']]], - ['listroute_1211',['ListRoute',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a21a829d350fad918024f30fc9330a8e2',1,'Tgstation::Server::Api::Routes']]], - ['livegamedirectory_1212',['LiveGameDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ac3447ec1377df66f5b60e0a12ecc109c',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['load_1213',['Load',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#a1893d3e0b81183484ed4d762fa8b8337',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Load()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a7dc6adc59691130ff12e19193e4f54dd',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Load()']]], - ['loadcachedidentity_1214',['LoadCachedIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a2697ebf18fec9213032f48fb5f351397',1,'Tgstation.Server.Host.Security.IdentityCache.LoadCachedIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#afc655c9c2d6af6086bcda5b6c54e1c41',1,'Tgstation.Server.Host.Security.IIdentityCache.LoadCachedIdentity()']]], - ['loadcompilejob_1215',['LoadCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa48032d06fd0ad559ab3b6a02e6bf2f7',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LoadCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html#a78892eb61b9c1875b0d2be83abfe481a',1,'Tgstation.Server.Host.Components.Deployment.ICompileJobSink.LoadCompileJob()']]], - ['loadrepository_1216',['LoadRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#aca54bc5a72d05e25cc361728e80b6f1c',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.LoadRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#afcab0cdc52ae45ecd0dfba5c7630e303',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.LoadRepository()']]], - ['loadrevisioninformation_1217',['LoadRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#aa50a2c5f9429a3b52acd47e157f93e47',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], - ['local_1218',['Local',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#aea9eb14e43c87e0f5088ffbbc5913743',1,'Tgstation.Server.Host.Database.DatabaseCollection.Local()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a4df4891c6457a0c2eb6e879ec912945d',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Local()']]], - ['lock_1219',['Lock',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a01e4f4e2d775bd2bf0910a1f5c2f24ef',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], - ['lockedsemaphore_1220',['lockedSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#ada2fac68aaa78fbd25c0cb1337925f00',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], - ['locknextdmb_1221',['LockNextDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa5ae13811ef0862a54741653dc058783',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LockNextDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a565a84900113c480ae29535fa22ae175',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.LockNextDmb()']]], - ['lockobject_1222',['lockObject',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a1929f9ae09781c6dc5dd08057bfcd108',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeRegistration']]], - ['logfile_1223',['LogFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html',1,'Tgstation::Server::Api::Models']]], - ['logfile_2ecs_1224',['LogFile.cs',['../_log_file_8cs.html',1,'']]], - ['logger_1225',['logger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a25f231d9dcbd28c75f9665fb7f0b5e80',1,'Tgstation.Server.Host.Components.Byond.ByondManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abc0dda9d12fd94b299931aaa8d4aa8bd',1,'Tgstation.Server.Host.Components.Chat.ChatManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a6dbfebf4e8e302c3f6434fc1ebe0e350',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a71b829b7913fed5b414e4e6875f8819d',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1d5a133d669af1e14db0104b67103ccf',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab4e452661f1c4a25ad903315e42e023e',1,'Tgstation.Server.Host.Components.Instance.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a968fedca8d4cc5ff16c77c0cbc782bda',1,'Tgstation.Server.Host.Components.InstanceManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a0459148f90ada2863ee586bb9ff43351',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aaaf20e963c78e114158f07652efc7986',1,'Tgstation.Server.Host.Components.Repository.Repository.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ab48210b91ab8add64013a209d4223070',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a085d964312b1fe2e1ceef9bdad40708f',1,'Tgstation.Server.Host.Components.Session.SessionController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a83b35ba371db1f4a93b6b4a3a7c1a2c5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a0ef7e017c943539a83aca36c6a1bba4f',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a27bb3c21fafac172ebf5841133a4d8e9',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab3c240ff7f92402a96f36d29f6ede284',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a9891743d5f16fcef93d55fc828b8dd11',1,'Tgstation.Server.Host.Controllers.BridgeController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aaf6976bc08dbb6209b8ca16509604a09',1,'Tgstation.Server.Host.Database.DatabaseSeeder.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a90d88fb051503e2c6b796f8a5e43d0d0',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aecd93d616cf56f52f149457f064dd520',1,'Tgstation.Server.Host.Jobs.JobManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6785a5176d17d6fa0d54da20d418e21c',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a382d063e7f62559b994c5639504737b6',1,'Tgstation.Server.Host.Security.IdentityCache.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a384470b6fd596dcc97a6e39a0dcdbe74',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#aed53aa0f4276d05a985604f291c70f29',1,'Tgstation.Server.Host.Server.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#ad86bb907f2d4419d609e89b8802dc73b',1,'Tgstation.Server.Host.System.PosixProcessFeatures.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a781e9616bea46323ba098c782b6fafe4',1,'Tgstation.Server.Host.System.Process.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#abbe8126c6fb5bff2bab522eef5f9d5c5',1,'Tgstation.Server.Host.System.ProcessExecutor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a088a1b70d59e1bc6052f83a901e1930b',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a247d89dab45478183870bbdac843dbde',1,'Tgstation.Server.Host.Watchdog.Watchdog.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a7e847c327e2f2b6ccfde15c3c0825b2f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab24337ff80dfef1a9657f7106758a8c3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aeb085dbe37cb7208de2d0fe9026e4575',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae5655868c2b2b913046ecf61934ce119',1,'Tgstation.Server.Host.Controllers.ApiController.Logger()']]], - ['loggerfactory_1226',['LoggerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#ac70e6ed4dbb2c805b6fa57122fc82318',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.LoggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a76009f2ea5bcdd632cd599fc3857ac96',1,'Tgstation.Server.Host.Components.Chat.ChatManager.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aec9b0a1d8aa867830c20266a612697b5',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a92699f7709129aed50ab119584f1de63',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#afe93210d51c3cd078d16a4b510c3ebe8',1,'Tgstation.Server.Host.Components.InstanceFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a19be3056a71f332cc36cc29b3aea9e3a',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04e53e5021bd2665214856f690cccd2',1,'Tgstation.Server.Host.System.ProcessExecutor.loggerFactory()']]], - ['loglevel_1227',['LogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a77b327379b355d7569c118e85e25a3e7',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['logonuser_1228',['LogonUser',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a1dfa561b475b805169687e321251038c',1,'Tgstation::Server::Host::NativeMethods']]], - ['logrequest_1229',['LogRequest',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a865404ae66021a7a6d95c0688e51f51c',1,'Tgstation::Server::Client::IRequestLogger']]], - ['logresponse_1230',['LogResponse',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a685925403fc438eb5d3688ce8aca08b7',1,'Tgstation::Server::Client::IRequestLogger']]], - ['logs_1231',['Logs',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aeb032cc314264cd0214895fe0c6b7670',1,'Tgstation::Server::Api::Routes']]] + ['lastlaunchparameters_1221',['LastLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#adf8f73df0fe074af3363857bc43e63a5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.LastLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6548572ef5ab9d7b6b3aae8647a0a053',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.LastLaunchParameters()']]], + ['lastmodified_1222',['LastModified',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#afafc391a2b9b0631feb27a0fbefddf12',1,'Tgstation::Server::Api::Models::LogFile']]], + ['lastpasswordupdate_1223',['LastPasswordUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#abd891143624157c8f48bd166cc88ab26',1,'Tgstation::Server::Host::Models::User']]], + ['lastreadhash_1224',['LastReadHash',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a70d7168ec1797a25a56e2d104783afc2',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], + ['latestcompilejob_1225',['LatestCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6fe38a0d817315fc1bd52ffd47b9d3d5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LatestCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html#a12c574e4b8010e0005b77dd242c055e7',1,'Tgstation.Server.Host.Components.Deployment.ILatestCompileJobProvider.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4b1084d8d2850d408abae881013a47d9',1,'Tgstation.Server.Host.Components.Instance.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#abd32a6968afebbba4f51fe36826fd2f2',1,'Tgstation.Server.Host.Components.InstanceWrapper.LatestCompileJob()']]], + ['latestversion_1226',['LatestVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a26197acef6ba596172d67c5e33771629',1,'Tgstation::Server::Api::Models::Administration']]], + ['launch_1227',['Launch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afa6b3f10617f13ae7af79317594020e3',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Launch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af619caa031c183aa1aa5adbcf11a3434',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Launch()']]], + ['launchnew_1228',['LaunchNew',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#a668f15e64f55fafcf7bc5ce9933edf48',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.LaunchNew()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a2e3fbaee5882bbf0cae1b195808aa2d8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew()']]], + ['launchnolock_1229',['LaunchNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5d1f2571cdce3431ab477a9c9c3e6f4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['launchprocess_1230',['LaunchProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#ac496c8c47a22086a1cbb882c1c0d391c',1,'Tgstation.Server.Host.System.IProcessExecutor.LaunchProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a584a9d2372706363eb65754fa18f5ed3',1,'Tgstation.Server.Host.System.ProcessExecutor.LaunchProcess()']]], + ['launchresult_1231',['LaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html',1,'Tgstation.Server.Host.Components.Session.LaunchResult'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#adca786a78dbcd230b94fcde69e9fc885',1,'Tgstation.Server.Host.Components.Session.ISessionController.LaunchResult()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9df2774fefe9116cc88f3ba14c6e68fc',1,'Tgstation.Server.Host.Components.Session.SessionController.LaunchResult()']]], + ['launchresult_2ecs_1232',['LaunchResult.cs',['../_launch_result_8cs.html',1,'']]], + ['launchsecuritylevel_1233',['LaunchSecurityLevel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#ac0fc4a4938302c73c622244e8176beef',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], + ['lazyloadedprocessexecutor_1234',['lazyLoadedProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a3a2559612f724db16314713f64da1d2f',1,'Tgstation::Server::Host::System::PosixProcessFeatures']]], + ['lazyrestartregistration_1235',['lazyRestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a9e2dd865f9e0403e0cb23cc1d68323ea',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['libgit2commands_1236',['LibGit2Commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['libgit2commands_2ecs_1237',['LibGit2Commands.cs',['../_lib_git2_commands_8cs.html',1,'']]], + ['libgit2repositoryfactory_1238',['LibGit2RepositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a98d05c01964113e38a0662bc3f45854b',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.LibGit2RepositoryFactory()']]], + ['libgit2repositoryfactory_2ecs_1239',['LibGit2RepositoryFactory.cs',['../_lib_git2_repository_factory_8cs.html',1,'']]], + ['libgitrepo_1240',['libGitRepo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a6fec03c9207024ead0f80fe2abd19ffb',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['lifetime_1241',['Lifetime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1c788fd5a67f57bd4344d30c3bbd6d48',1,'Tgstation.Server.Host.Components.Session.SessionController.Lifetime()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a1d57ffc6a03199bba632d2c33dc139d3',1,'Tgstation.Server.Host.System.IProcessBase.Lifetime()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7c6cb2d9bb60adf415db09b3b6a45f26',1,'Tgstation.Server.Host.System.Process.Lifetime()']]], + ['limits_1242',['Limits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html',1,'Tgstation::Server::Api::Models']]], + ['limits_2ecs_1243',['Limits.cs',['../_limits_8cs.html',1,'']]], + ['list_1244',['List',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a63077d90c7d1f0afef5045211241fb47',1,'Tgstation.Server.Api.Routes.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2e101ca44e6cd38eb8feb5e92083a58b',1,'Tgstation.Server.Client.Components.ChatBotsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a9abb058e8e7dc5fb6449db904e3ba593',1,'Tgstation.Server.Client.Components.ConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ad482caafbf4b09fcd950b2121c384803',1,'Tgstation.Server.Client.Components.IChatBotsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a20e28735258c505105437c094634d3d3',1,'Tgstation.Server.Client.Components.IConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aa67a2d298305192f32b1e9567aeb9b96',1,'Tgstation.Server.Client.Components.IInstanceUserClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a093a80fc04aa333ba794b1912bcfc418',1,'Tgstation.Server.Client.Components.IJobsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a3854e076413652c6e243bba0404b4caf',1,'Tgstation.Server.Client.Components.InstanceUserClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ebf0782934ea0387aaac2a8b1314090',1,'Tgstation.Server.Client.Components.JobsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a4d9ba68cfba405ad7a75f7a704cd9949',1,'Tgstation.Server.Client.IInstanceManagerClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a90e8afdfd1ba96a1891ca1e6cefdd5e1',1,'Tgstation.Server.Client.InstanceManagerClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aee6bf0424f2533c0b5fdd9a14c530c83',1,'Tgstation.Server.Client.IUsersClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ae560ae12df2a21d293055557095cf173',1,'Tgstation.Server.Client.UsersClient.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a628eacbc3ea0bbec83ceb8f89ae8006a',1,'Tgstation.Server.Host.Controllers.ByondController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1db346728a09c30c7cf2501c33038490',1,'Tgstation.Server.Host.Controllers.ChatController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a1fe2069cd7d9960cf7eb5b7f11518b2e',1,'Tgstation.Server.Host.Controllers.ConfigurationController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ab23313465dd631de252786d53039ba92',1,'Tgstation.Server.Host.Controllers.DreamMakerController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa1974818becc34b9aa12a67f272016d2',1,'Tgstation.Server.Host.Controllers.InstanceController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a342e61ebf421b11ef4efbba8f497bea5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#adaf5db7d78be52afff530601c4468203',1,'Tgstation.Server.Host.Controllers.JobController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a353236ca8ecf842a8458111667be8f22',1,'Tgstation.Server.Host.Controllers.UserController.List()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()']]], + ['listactive_1245',['ListActive',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#ad0e3189ae3f28e20982cf4b853013725',1,'Tgstation.Server.Client.Components.IJobsClient.ListActive()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a6de35b6d2f313009107e2bb2e2cc4ac7',1,'Tgstation.Server.Client.Components.JobsClient.ListActive()']]], + ['listdirectory_1246',['ListDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a345e802c3d53374b244c935d2ae0047b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ListDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a92a08839e2a1abad8ab26431f27ae8c6',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.ListDirectory()']]], + ['listentask_1247',['listenTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4973331fd7986b7f14ec00426b474253',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['listinstalled_1248',['ListInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9ad102ca284a1a9df653f41ec4c1b22a0b',1,'Tgstation::Server::Api::Rights']]], + ['listlogs_1249',['ListLogs',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aae9ea74b1fd163a771a6a563fb02ccaa',1,'Tgstation.Server.Client.AdministrationClient.ListLogs()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a87d1decb897faad52ff2fee928672473',1,'Tgstation.Server.Client.IAdministrationClient.ListLogs()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ad4b7ee25dc7ec160617061a6839ca2b7',1,'Tgstation.Server.Host.Controllers.AdministrationController.ListLogs()']]], + ['listroute_1250',['ListRoute',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a21a829d350fad918024f30fc9330a8e2',1,'Tgstation::Server::Api::Routes']]], + ['livegamedirectory_1251',['LiveGameDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ac3447ec1377df66f5b60e0a12ecc109c',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['load_1252',['Load',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#a1893d3e0b81183484ed4d762fa8b8337',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Load()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a7dc6adc59691130ff12e19193e4f54dd',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Load()']]], + ['loadcachedidentity_1253',['LoadCachedIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a2697ebf18fec9213032f48fb5f351397',1,'Tgstation.Server.Host.Security.IdentityCache.LoadCachedIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#afc655c9c2d6af6086bcda5b6c54e1c41',1,'Tgstation.Server.Host.Security.IIdentityCache.LoadCachedIdentity()']]], + ['loadcompilejob_1254',['LoadCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa48032d06fd0ad559ab3b6a02e6bf2f7',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LoadCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html#a78892eb61b9c1875b0d2be83abfe481a',1,'Tgstation.Server.Host.Components.Deployment.ICompileJobSink.LoadCompileJob()']]], + ['loadrepository_1255',['LoadRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#aca54bc5a72d05e25cc361728e80b6f1c',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.LoadRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#afcab0cdc52ae45ecd0dfba5c7630e303',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.LoadRepository()']]], + ['loadrevisioninformation_1256',['LoadRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#aa50a2c5f9429a3b52acd47e157f93e47',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], + ['local_1257',['Local',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#aea9eb14e43c87e0f5088ffbbc5913743',1,'Tgstation.Server.Host.Database.DatabaseCollection.Local()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a4df4891c6457a0c2eb6e879ec912945d',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Local()']]], + ['lock_1258',['Lock',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a01e4f4e2d775bd2bf0910a1f5c2f24ef',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], + ['lockedsemaphore_1259',['lockedSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#ada2fac68aaa78fbd25c0cb1337925f00',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], + ['locknextdmb_1260',['LockNextDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa5ae13811ef0862a54741653dc058783',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LockNextDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a565a84900113c480ae29535fa22ae175',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.LockNextDmb()']]], + ['lockobject_1261',['lockObject',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a1929f9ae09781c6dc5dd08057bfcd108',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeRegistration']]], + ['logfile_1262',['LogFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html',1,'Tgstation::Server::Api::Models']]], + ['logfile_2ecs_1263',['LogFile.cs',['../_log_file_8cs.html',1,'']]], + ['logger_1264',['logger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a25f231d9dcbd28c75f9665fb7f0b5e80',1,'Tgstation.Server.Host.Components.Byond.ByondManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abc0dda9d12fd94b299931aaa8d4aa8bd',1,'Tgstation.Server.Host.Components.Chat.ChatManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a6dbfebf4e8e302c3f6434fc1ebe0e350',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a71b829b7913fed5b414e4e6875f8819d',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1d5a133d669af1e14db0104b67103ccf',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a142ef3449fccf2c342976cecfdcd6267',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab4e452661f1c4a25ad903315e42e023e',1,'Tgstation.Server.Host.Components.Instance.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a968fedca8d4cc5ff16c77c0cbc782bda',1,'Tgstation.Server.Host.Components.InstanceManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a0459148f90ada2863ee586bb9ff43351',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aaaf20e963c78e114158f07652efc7986',1,'Tgstation.Server.Host.Components.Repository.Repository.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ab48210b91ab8add64013a209d4223070',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a085d964312b1fe2e1ceef9bdad40708f',1,'Tgstation.Server.Host.Components.Session.SessionController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a83b35ba371db1f4a93b6b4a3a7c1a2c5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a0ef7e017c943539a83aca36c6a1bba4f',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a27bb3c21fafac172ebf5841133a4d8e9',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab3c240ff7f92402a96f36d29f6ede284',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a9891743d5f16fcef93d55fc828b8dd11',1,'Tgstation.Server.Host.Controllers.BridgeController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aaf6976bc08dbb6209b8ca16509604a09',1,'Tgstation.Server.Host.Database.DatabaseSeeder.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a90d88fb051503e2c6b796f8a5e43d0d0',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aecd93d616cf56f52f149457f064dd520',1,'Tgstation.Server.Host.Jobs.JobManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6785a5176d17d6fa0d54da20d418e21c',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a382d063e7f62559b994c5639504737b6',1,'Tgstation.Server.Host.Security.IdentityCache.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a384470b6fd596dcc97a6e39a0dcdbe74',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#aed53aa0f4276d05a985604f291c70f29',1,'Tgstation.Server.Host.Server.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#ad86bb907f2d4419d609e89b8802dc73b',1,'Tgstation.Server.Host.System.PosixProcessFeatures.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a781e9616bea46323ba098c782b6fafe4',1,'Tgstation.Server.Host.System.Process.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#abbe8126c6fb5bff2bab522eef5f9d5c5',1,'Tgstation.Server.Host.System.ProcessExecutor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a088a1b70d59e1bc6052f83a901e1930b',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a247d89dab45478183870bbdac843dbde',1,'Tgstation.Server.Host.Watchdog.Watchdog.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a7e847c327e2f2b6ccfde15c3c0825b2f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab24337ff80dfef1a9657f7106758a8c3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a2143ec7079d0ffd42c76f61cf7b71cf6',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae5655868c2b2b913046ecf61934ce119',1,'Tgstation.Server.Host.Controllers.ApiController.Logger()']]], + ['loggerfactory_1265',['loggerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a76009f2ea5bcdd632cd599fc3857ac96',1,'Tgstation.Server.Host.Components.Chat.ChatManager.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aec9b0a1d8aa867830c20266a612697b5',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a92699f7709129aed50ab119584f1de63',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#afe93210d51c3cd078d16a4b510c3ebe8',1,'Tgstation.Server.Host.Components.InstanceFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a19be3056a71f332cc36cc29b3aea9e3a',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04e53e5021bd2665214856f690cccd2',1,'Tgstation.Server.Host.System.ProcessExecutor.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#ac70e6ed4dbb2c805b6fa57122fc82318',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.LoggerFactory()']]], + ['loglevel_1266',['LogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a77b327379b355d7569c118e85e25a3e7',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['logonuser_1267',['LogonUser',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a1dfa561b475b805169687e321251038c',1,'Tgstation::Server::Host::NativeMethods']]], + ['logrequest_1268',['LogRequest',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a865404ae66021a7a6d95c0688e51f51c',1,'Tgstation::Server::Client::IRequestLogger']]], + ['logresponse_1269',['LogResponse',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a685925403fc438eb5d3688ce8aca08b7',1,'Tgstation::Server::Client::IRequestLogger']]], + ['logs_1270',['Logs',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aeb032cc314264cd0214895fe0c6b7670',1,'Tgstation::Server::Api::Routes']]] ]; diff --git a/search/all_d.html b/search/all_d.html index cc470e5d9a..355b09ecd4 100644 --- a/search/all_d.html +++ b/search/all_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_d.js b/search/all_d.js index 2460a7fa15..b752e32106 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,96 +1,99 @@ var searchData= [ - ['main_1232',['Main',['../class_tgstation_1_1_server_1_1_host_1_1_program.html#ad9df0f26f38c75cf0c376910caef770c',1,'Tgstation.Server.Host.Program.Main()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a626a9a4670edb87ce05328762d46cf8f',1,'Tgstation.Server.Host.Service.Program.Main()']]], - ['makeactive_1233',['MakeActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#aad43d92c91213a21064a18f0006a310b',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['mapchannels_1234',['MapChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a8f3c3fbf096a7118ad96f94838852028',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.MapChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acb8970c1062c37761b832ea9aa4f3254',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a11c9e7a1c9b6ec1fdeb711f1ab519713',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac08fc8e6866dc5659c16a28840674cdc',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.MapChannels()']]], - ['mappedchannels_1235',['mappedChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a556af78ef77307e5bff2d79daa628bcb',1,'Tgstation.Server.Host.Components.Chat.ChatManager.mappedChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a044ae95d278a4ed4a6a02449e24e8146',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.mappedChannels()']]], - ['mariadb_1236',['MariaDB',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca7f9733e208088b1ce6df3d4be1765396',1,'Tgstation::Server::Host::Configuration']]], - ['maximumcommitshalength_1237',['MaximumCommitShaLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#af0c12b57e368c7866383bda0935f7238',1,'Tgstation::Server::Api::Models::Limits']]], - ['maximumindexablestringlength_1238',['MaximumIndexableStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aefd2529f2213c4bfdc9ba41812ef108b',1,'Tgstation::Server::Api::Models::Limits']]], - ['maximumstringlength_1239',['MaximumStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aceff5849fdb5c12fd9573b1e9ce0e609',1,'Tgstation::Server::Api::Models::Limits']]], - ['mention_1240',['Mention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a2e61afea61b8aaee53d0ada74b214c46',1,'Tgstation::Server::Host::Components::Chat::ChatUser']]], - ['mergedat_1241',['MergedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#aa9544b21a01f937b6e1954670001234d',1,'Tgstation::Server::Api::Models::Internal::TestMerge']]], - ['mergedby_1242',['MergedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html#a2014bd31ea631609775a5ea4100d5aa6',1,'Tgstation.Server.Api.Models.TestMerge.MergedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#af1122a5c2625038f509330ed4c77bb56',1,'Tgstation.Server.Host.Models.TestMerge.MergedBy()']]], - ['mergeorigin_1243',['MergeOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a2911d39fd36e857c0d77503fc5c41a94',1,'Tgstation.Server.Host.Components.Repository.IRepository.MergeOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aa2437784b303f5c523a6638d717919eb',1,'Tgstation.Server.Host.Components.Repository.Repository.MergeOrigin()']]], - ['mergepullrequest_1244',['MergePullRequest',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a38de88c6dfc8b8669a4ffbc35be88aa2',1,'Tgstation::Server::Api::Rights']]], - ['message_1245',['Message',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html',1,'Tgstation.Server.Host.Components.Chat.Providers.Message'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#aa6fca7f7887f8a6bf1c7c474332f94c1',1,'Tgstation.Server.Api.Models.ErrorMessage.Message()']]], - ['message_2ecs_1246',['Message.cs',['../_message_8cs.html',1,'']]], - ['messagequeue_1247',['messageQueue',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a0cf9e8f2427fc076d90805ef6ee06a66',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['messagesprocessed_1248',['messagesProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0f90df8e6ed21489cc4b57f690f41c7e',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['metadata_1249',['metadata',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ac5b667aa89c476c9cb0cf71cb5add8a6',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ad54344c590beab965fead49ac08224a9',1,'Tgstation.Server.Host.Components.Instance.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ae36a4037565f0f7a476eb465d0c0e4',1,'Tgstation.Server.Host.Components.Session.SessionController.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a3942d5832fa872589b17d1ea8b6d7150',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.metadata()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a22f01f297f6ddfa2cfca204c8b94fd83',1,'Tgstation.Server.Client.Components.IInstanceClient.Metadata()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a0107f70cae241fd15612608e8eb93f51',1,'Tgstation.Server.Client.Components.InstanceClient.Metadata()']]], - ['methodnotsupportedexception_1250',['MethodNotSupportedException',['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html',1,'Tgstation.Server.Client.MethodNotSupportedException'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a6f42485beb2334c310038cc39e0a8f5c',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a37543ec8aabe8b8fa96a15243d02e318',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a5b0a4306e368279a8b18f50a7ad6bb63',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message, Exception innerException)']]], - ['methodnotsupportedexception_2ecs_1251',['MethodNotSupportedException.cs',['../_method_not_supported_exception_8cs.html',1,'']]], - ['microsoftloglevel_1252',['MicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a5d27b790b93c94ea77f83b3729be63df',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['migrate_1253',['Migrate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a56bbcd54599c04c0d8c6977fd6908804',1,'Tgstation.Server.Host.Database.DatabaseContext.Migrate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac03f819c07cb242b5257f5c158235b06',1,'Tgstation.Server.Host.Database.IDatabaseContext.Migrate()']]], - ['migration_1254',['Migration',['../class_migration.html',1,'']]], - ['minidumptype_1255',['MiniDumpType',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2',1,'Tgstation::Server::Host::NativeMethods']]], - ['minidumpwritedump_1256',['MiniDumpWriteDump',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a61d55043e027524245f877070f168e45',1,'Tgstation::Server::Host::NativeMethods']]], - ['minimumpasswordlength_1257',['MinimumPasswordLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a75a74ceadd0c4527bc17f18a5d747a85',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['minimumsecuritylevel_1258',['MinimumSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aba859254f245bc21a8ff640ab58caf03',1,'Tgstation.Server.Api.Models.Internal.CompileJob.MinimumSecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#ac4a844b6eae5fa0b3faee17a1ae13087',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.MinimumSecurityLevel()']]], - ['missinggcore_1259',['MissingGCore',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9ba2c8a326ad80df8e791b207e8c3b47',1,'Tgstation::Server::Api::Models']]], - ['missinghostwatchdog_1260',['MissingHostWatchdog',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2ccc27c4e4def41ceaa583ef4eb565ef',1,'Tgstation::Server::Api::Models']]], - ['missingormalformedheaders_1261',['MissingOrMalformedHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#ad6cff8dd9410c9e7f097259642101a7d',1,'Tgstation::Server::Api::HeadersException']]], - ['modelsnapshot_1262',['ModelSnapshot',['../class_model_snapshot.html',1,'']]], - ['modelvalidationfailure_1263',['ModelValidationFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a036d4fdb3297f73bb3c4e14bcf438e3e',1,'Tgstation::Server::Api::Models']]], - ['modifydme_1264',['ModifyDme',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1f48709bfdc0a2d5f675a2a2862755aa',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['monitoraction_1265',['MonitorAction',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['monitoraction_2ecs_1266',['MonitorAction.cs',['../_monitor_action_8cs.html',1,'']]], - ['monitoractivationreason_1267',['MonitorActivationReason',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['monitoractivationreason_2ecs_1268',['MonitorActivationReason.cs',['../_monitor_activation_reason_8cs.html',1,'']]], - ['monitorcts_1269',['monitorCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a47a5f64148a117c561df7b0e7e1703e6',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['monitorlifetimes_1270',['MonitorLifetimes',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#adfec26f530228b80d384b86ee979ef2f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['monitormessages_1271',['MonitorMessages',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a530e8ef5a58711a9c6744021df74afb2',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['monitorrestart_1272',['MonitorRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24fd29d12e91f659010d483228be1225',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['monitortask_1273',['monitorTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abfb7590db69ab59a040c1ac91c671d6d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['movedirectory_1274',['MoveDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5c7c3fb8d450153922c11e37ea118f62',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad8dc6ae8e69047b801a7344b17d0cc37',1,'Tgstation.Server.Host.IO.IIOManager.MoveDirectory()']]], - ['movefile_1275',['MoveFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a2ecf7ea4ad7cadd294a1a4882e56a812',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a2dff052035f4d3d0c689d0e89d8deecd',1,'Tgstation.Server.Host.IO.IIOManager.MoveFile()']]], - ['moveinstance_1276',['MoveInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a49689525bbd1c48b33d8e5902d6129f5',1,'Tgstation.Server.Host.Components.IInstanceManager.MoveInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a232e9720186876671fb9709f433a507b',1,'Tgstation.Server.Host.Components.InstanceManager.MoveInstance()']]], - ['moveinstancejobprefix_1277',['MoveInstanceJobPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a05f43b931e38b2d401566435d5a3de75',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['movejob_1278',['MoveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a31e76cb0774e6aa2f2a8f667a3c89a5c',1,'Tgstation::Server::Api::Models::Instance']]], - ['msaddchatbotreconnectioninterval_1279',['MSAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddcompilejobdmapiversion_1280',['MSAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddheartbeat_1281',['MSAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddjoberrorcodes_1282',['MSAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddminimumsecurity_1283',['MSAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msallownulldmapi_1284',['MSAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mscheckpointrebuild_1285',['MSCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msfixcascadingdelete_1286',['MSFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msfixrevinfoindex_1287',['MSFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msinitialcreate_1288',['MSInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mskilljsonsadddmapiversion_1289',['MSKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mslimitsonchat_1290',['MSLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msnullableandforeignkeycleanup_1291',['MSNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msreattachcompilejobrequired_1292',['MSReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msremoveexperimentalwatchdog_1293',['MSRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msremovesoftcolumns_1294',['MSRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mstoggletestmergecomments_1295',['MSToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mstonsofvalidation_1296',['MSTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mstopictimeout_1297',['MSTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddchatbotreconnectioninterval_1298',['MYAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddcompilejobdmapiversion_1299',['MYAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddheartbeat_1300',['MYAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddjoberrorcodes_1301',['MYAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddminimumsecurity_1302',['MYAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myallownulldmapi_1303',['MYAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mycheckpointrebuild_1304',['MYCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myfixcascadingdelete_1305',['MYFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myfixforeignkey_1306',['MYFixForeignKey',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myfixrevinfoindex_1307',['MYFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myinitialcreate_1308',['MYInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mykilljsonsadddmapiversion_1309',['MYKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mylimitsonchat_1310',['MYLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mynullableandforeignkeycleanup_1311',['MYNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myreattachcompilejobrequired_1312',['MYReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myremoveexperimentalwatchdog_1313',['MYRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myremovesoftcolumns_1314',['MYRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mysql_1315',['MySql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca9df306f03daedccf83f5e2983dbb5422',1,'Tgstation::Server::Host::Configuration']]], - ['mysqldatabasecontext_1316',['MySqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#aba92933ea065139f2f91518346dbd9c0',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.MySqlDatabaseContext()']]], - ['mysqldatabasecontext_2ecs_1317',['MySqlDatabaseContext.cs',['../_my_sql_database_context_8cs.html',1,'']]], - ['mysqldatabasecontextmodelsnapshot_1318',['MySqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mysqldatabasecontextmodelsnapshot_2ecs_1319',['MySqlDatabaseContextModelSnapshot.cs',['../_my_sql_database_context_model_snapshot_8cs.html',1,'']]], - ['mysqldesigntimedbcontextfactory_1320',['MySqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['mysqldesigntimedbcontextfactory_2ecs_1321',['MySqlDesignTimeDbContextFactory.cs',['../_my_sql_design_time_db_context_factory_8cs.html',1,'']]], - ['mytoggletestmergecomments_1322',['MYToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mytonsofvalidation_1323',['MYTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mytopictimeout_1324',['MYTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]] + ['main_1271',['Main',['../class_tgstation_1_1_server_1_1_host_1_1_program.html#ad9df0f26f38c75cf0c376910caef770c',1,'Tgstation.Server.Host.Program.Main()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a626a9a4670edb87ce05328762d46cf8f',1,'Tgstation.Server.Host.Service.Program.Main()']]], + ['makeactive_1272',['MakeActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#aad43d92c91213a21064a18f0006a310b',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['mapchannels_1273',['MapChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a8f3c3fbf096a7118ad96f94838852028',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.MapChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acb8970c1062c37761b832ea9aa4f3254',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a11c9e7a1c9b6ec1fdeb711f1ab519713',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac08fc8e6866dc5659c16a28840674cdc',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.MapChannels()']]], + ['mappedchannels_1274',['mappedChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a556af78ef77307e5bff2d79daa628bcb',1,'Tgstation.Server.Host.Components.Chat.ChatManager.mappedChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a044ae95d278a4ed4a6a02449e24e8146',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.mappedChannels()']]], + ['mariadb_1275',['MariaDB',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca7f9733e208088b1ce6df3d4be1765396',1,'Tgstation::Server::Host::Configuration']]], + ['markinactive_1276',['MarkInactive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a0b24dc2fd63d512f421c33034f19d797',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.MarkInactive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a1be750d6c4665373d98645a890db78fb',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.MarkInactive()']]], + ['maximumcommitshalength_1277',['MaximumCommitShaLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#af0c12b57e368c7866383bda0935f7238',1,'Tgstation::Server::Api::Models::Limits']]], + ['maximumindexablestringlength_1278',['MaximumIndexableStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aefd2529f2213c4bfdc9ba41812ef108b',1,'Tgstation::Server::Api::Models::Limits']]], + ['maximumstringlength_1279',['MaximumStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aceff5849fdb5c12fd9573b1e9ce0e609',1,'Tgstation::Server::Api::Models::Limits']]], + ['mention_1280',['Mention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a2e61afea61b8aaee53d0ada74b214c46',1,'Tgstation::Server::Host::Components::Chat::ChatUser']]], + ['mergedat_1281',['MergedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#aa9544b21a01f937b6e1954670001234d',1,'Tgstation::Server::Api::Models::Internal::TestMerge']]], + ['mergedby_1282',['MergedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html#a2014bd31ea631609775a5ea4100d5aa6',1,'Tgstation.Server.Api.Models.TestMerge.MergedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#af1122a5c2625038f509330ed4c77bb56',1,'Tgstation.Server.Host.Models.TestMerge.MergedBy()']]], + ['mergeorigin_1283',['MergeOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a2911d39fd36e857c0d77503fc5c41a94',1,'Tgstation.Server.Host.Components.Repository.IRepository.MergeOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aa2437784b303f5c523a6638d717919eb',1,'Tgstation.Server.Host.Components.Repository.Repository.MergeOrigin()']]], + ['mergepullrequest_1284',['MergePullRequest',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a38de88c6dfc8b8669a4ffbc35be88aa2',1,'Tgstation::Server::Api::Rights']]], + ['message_1285',['Message',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html',1,'Tgstation.Server.Host.Components.Chat.Providers.Message'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#aa6fca7f7887f8a6bf1c7c474332f94c1',1,'Tgstation.Server.Api.Models.ErrorMessage.Message()']]], + ['message_2ecs_1286',['Message.cs',['../_message_8cs.html',1,'']]], + ['messagequeue_1287',['messageQueue',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a0cf9e8f2427fc076d90805ef6ee06a66',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['messagesprocessed_1288',['messagesProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0f90df8e6ed21489cc4b57f690f41c7e',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['metadata_1289',['metadata',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ac5b667aa89c476c9cb0cf71cb5add8a6',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a8db35493ab3bf121fa830e40bd58700b',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ad54344c590beab965fead49ac08224a9',1,'Tgstation.Server.Host.Components.Instance.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ae36a4037565f0f7a476eb465d0c0e4',1,'Tgstation.Server.Host.Components.Session.SessionController.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a3942d5832fa872589b17d1ea8b6d7150',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.metadata()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a22f01f297f6ddfa2cfca204c8b94fd83',1,'Tgstation.Server.Client.Components.IInstanceClient.Metadata()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a0107f70cae241fd15612608e8eb93f51',1,'Tgstation.Server.Client.Components.InstanceClient.Metadata()']]], + ['methodnotsupportedexception_1290',['MethodNotSupportedException',['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html',1,'Tgstation.Server.Client.MethodNotSupportedException'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a6f42485beb2334c310038cc39e0a8f5c',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a37543ec8aabe8b8fa96a15243d02e318',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a5b0a4306e368279a8b18f50a7ad6bb63',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message, Exception innerException)']]], + ['methodnotsupportedexception_2ecs_1291',['MethodNotSupportedException.cs',['../_method_not_supported_exception_8cs.html',1,'']]], + ['microsoftloglevel_1292',['MicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a5d27b790b93c94ea77f83b3729be63df',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['migrate_1293',['Migrate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a56bbcd54599c04c0d8c6977fd6908804',1,'Tgstation.Server.Host.Database.DatabaseContext.Migrate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac03f819c07cb242b5257f5c158235b06',1,'Tgstation.Server.Host.Database.IDatabaseContext.Migrate()']]], + ['migration_1294',['Migration',['../class_migration.html',1,'']]], + ['minidumptype_1295',['MiniDumpType',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2',1,'Tgstation::Server::Host::NativeMethods']]], + ['minidumpwritedump_1296',['MiniDumpWriteDump',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a61d55043e027524245f877070f168e45',1,'Tgstation::Server::Host::NativeMethods']]], + ['minimumpasswordlength_1297',['MinimumPasswordLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a75a74ceadd0c4527bc17f18a5d747a85',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['minimumsecuritylevel_1298',['MinimumSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aba859254f245bc21a8ff640ab58caf03',1,'Tgstation.Server.Api.Models.Internal.CompileJob.MinimumSecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#ac4a844b6eae5fa0b3faee17a1ae13087',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.MinimumSecurityLevel()']]], + ['missinggcore_1299',['MissingGCore',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9ba2c8a326ad80df8e791b207e8c3b47',1,'Tgstation::Server::Api::Models']]], + ['missinghostwatchdog_1300',['MissingHostWatchdog',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2ccc27c4e4def41ceaa583ef4eb565ef',1,'Tgstation::Server::Api::Models']]], + ['missingormalformedheaders_1301',['MissingOrMalformedHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#ad6cff8dd9410c9e7f097259642101a7d',1,'Tgstation::Server::Api::HeadersException']]], + ['modelsnapshot_1302',['ModelSnapshot',['../class_model_snapshot.html',1,'']]], + ['modelvalidationfailure_1303',['ModelValidationFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a036d4fdb3297f73bb3c4e14bcf438e3e',1,'Tgstation::Server::Api::Models']]], + ['modifydme_1304',['ModifyDme',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1f48709bfdc0a2d5f675a2a2862755aa',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['monitoraction_1305',['MonitorAction',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['monitoraction_2ecs_1306',['MonitorAction.cs',['../_monitor_action_8cs.html',1,'']]], + ['monitoractivationreason_1307',['MonitorActivationReason',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['monitoractivationreason_2ecs_1308',['MonitorActivationReason.cs',['../_monitor_activation_reason_8cs.html',1,'']]], + ['monitorcts_1309',['monitorCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a47a5f64148a117c561df7b0e7e1703e6',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['monitorlifetimes_1310',['MonitorLifetimes',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#adfec26f530228b80d384b86ee979ef2f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['monitormessages_1311',['MonitorMessages',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a530e8ef5a58711a9c6744021df74afb2',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['monitorrestart_1312',['MonitorRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24fd29d12e91f659010d483228be1225',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['monitortask_1313',['monitorTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abfb7590db69ab59a040c1ac91c671d6d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['movedirectory_1314',['MoveDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5c7c3fb8d450153922c11e37ea118f62',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad8dc6ae8e69047b801a7344b17d0cc37',1,'Tgstation.Server.Host.IO.IIOManager.MoveDirectory()']]], + ['movefile_1315',['MoveFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a2ecf7ea4ad7cadd294a1a4882e56a812',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a2dff052035f4d3d0c689d0e89d8deecd',1,'Tgstation.Server.Host.IO.IIOManager.MoveFile()']]], + ['moveinstance_1316',['MoveInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a49689525bbd1c48b33d8e5902d6129f5',1,'Tgstation.Server.Host.Components.IInstanceManager.MoveInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a232e9720186876671fb9709f433a507b',1,'Tgstation.Server.Host.Components.InstanceManager.MoveInstance()']]], + ['moveinstancejobprefix_1317',['MoveInstanceJobPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a05f43b931e38b2d401566435d5a3de75',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['movejob_1318',['MoveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a31e76cb0774e6aa2f2a8f667a3c89a5c',1,'Tgstation::Server::Api::Models::Instance']]], + ['msaddchatbotreconnectioninterval_1319',['MSAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddcompilejobdmapiversion_1320',['MSAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msadddeploymentcolumns_1321',['MSAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddheartbeat_1322',['MSAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddjoberrorcodes_1323',['MSAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddminimumsecurity_1324',['MSAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msallownulldmapi_1325',['MSAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mscheckpointrebuild_1326',['MSCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msfixcascadingdelete_1327',['MSFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msfixrevinfoindex_1328',['MSFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msinitialcreate_1329',['MSInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mskilljsonsadddmapiversion_1330',['MSKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mslimitsonchat_1331',['MSLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msnullableandforeignkeycleanup_1332',['MSNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msreattachcompilejobrequired_1333',['MSReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msremoveexperimentalwatchdog_1334',['MSRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msremovesoftcolumns_1335',['MSRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mstoggletestmergecomments_1336',['MSToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mstonsofvalidation_1337',['MSTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mstopictimeout_1338',['MSTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddchatbotreconnectioninterval_1339',['MYAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddcompilejobdmapiversion_1340',['MYAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myadddeploymentcolumns_1341',['MYAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddheartbeat_1342',['MYAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddjoberrorcodes_1343',['MYAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddminimumsecurity_1344',['MYAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myallownulldmapi_1345',['MYAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mycheckpointrebuild_1346',['MYCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myfixcascadingdelete_1347',['MYFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myfixforeignkey_1348',['MYFixForeignKey',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myfixrevinfoindex_1349',['MYFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myinitialcreate_1350',['MYInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mykilljsonsadddmapiversion_1351',['MYKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mylimitsonchat_1352',['MYLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mynullableandforeignkeycleanup_1353',['MYNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myreattachcompilejobrequired_1354',['MYReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myremoveexperimentalwatchdog_1355',['MYRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myremovesoftcolumns_1356',['MYRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mysql_1357',['MySql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca9df306f03daedccf83f5e2983dbb5422',1,'Tgstation::Server::Host::Configuration']]], + ['mysqldatabasecontext_1358',['MySqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#aba92933ea065139f2f91518346dbd9c0',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.MySqlDatabaseContext()']]], + ['mysqldatabasecontext_2ecs_1359',['MySqlDatabaseContext.cs',['../_my_sql_database_context_8cs.html',1,'']]], + ['mysqldatabasecontextmodelsnapshot_1360',['MySqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mysqldatabasecontextmodelsnapshot_2ecs_1361',['MySqlDatabaseContextModelSnapshot.cs',['../_my_sql_database_context_model_snapshot_8cs.html',1,'']]], + ['mysqldesigntimedbcontextfactory_1362',['MySqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['mysqldesigntimedbcontextfactory_2ecs_1363',['MySqlDesignTimeDbContextFactory.cs',['../_my_sql_design_time_db_context_factory_8cs.html',1,'']]], + ['mytoggletestmergecomments_1364',['MYToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mytonsofvalidation_1365',['MYTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mytopictimeout_1366',['MYTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]] ]; diff --git a/search/all_e.html b/search/all_e.html index 57cce7600e..a9ee138f52 100644 --- a/search/all_e.html +++ b/search/all_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_e.js b/search/all_e.js index d40e9d9afb..7b0b75fca5 100644 --- a/search/all_e.js +++ b/search/all_e.js @@ -1,30 +1,30 @@ var searchData= [ - ['name_1325',['Name',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#adccb5a6eaa5665bac809ef9894188e6d',1,'Tgstation.Server.Api.Models.Instance.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a130fc5e97a0f75b63a8cc1ca994e9667',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a64d5e260db4e3f658aa042a376efd090',1,'Tgstation.Server.Api.Models.Internal.User.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#a6c4100d93cf74f1265f2912903068029',1,'Tgstation.Server.Api.Models.LogFile.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aa3c25add23e8a5463468700cb5d3f8fe',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a639265f4892f69fac25fa32d7413fe75',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Name()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aa9cbbf23975efc1dde048ee43a6e1d4b',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a310057ff5025763b3a208631f9f76daf',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a161ed3eee61c1cdb62fc5de7ba6e54b5',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a12e4e89bc06dc6f44f953760a3bcf800',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a5c8f4bdfbf9054761790392222009914',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a9b8966f662692c85d651bb27caaa0b0b',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a4277ab0385a8c8fea9065c2e4d1097dd',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Name()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a306a86b64ef5952f0e21c83ae7821100',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a82a1c35bb13819cd1003592351251fc1',1,'Tgstation.Server.Host.Service.ServerService.Name()']]], - ['nativemethods_1326',['NativeMethods',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html',1,'Tgstation::Server::Host']]], - ['nativemethods_2ecs_1327',['NativeMethods.cs',['../_native_methods_8cs.html',1,'']]], - ['networkpromptreaper_1328',['networkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af4c3eca3b6ba03440f6f2397eeb2ccc3',1,'Tgstation.Server.Host.Components.InstanceFactory.networkPromptReaper()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b73a5e0ea646cfe55c2bd6679e4cab6',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper()']]], - ['never_1329',['Never',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a6e7b34fa59e1bd229b207892956dc41c',1,'Tgstation::Server::Host::Configuration']]], - ['nevervalidated_1330',['NeverValidated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a48849e38346e47a569371c42b698fe36',1,'Tgstation::Server::Host::Components::Session']]], - ['newdmbavailable_1331',['NewDmbAvailable',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9aa2bd02c12bb4927940a72a240edf9707',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['newerdmbtcs_1332',['newerDmbTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a46cb9fe7ded7d00dc6ef7bbbd1b09518',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['newinstancename_1333',['NewInstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a96125b9afabdcb00e1fd06d5dadb3695',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['newport_1334',['NewPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a0a70914ed2c179b00d9bc5952ba4cd62',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.NewPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa5f71956124a07c95c4e85d7f423b3f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.NewPort()']]], - ['newrebootstate_1335',['NewRebootState',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a8e38bf3401407c0ccadcccc9daf293ae',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['newserverversion_1336',['NewServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a9e0422cc12040f835acbbb340d453ff7',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['newtestmerges_1337',['NewTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ad4bb63897d14c742a2c52a159ec75641',1,'Tgstation::Server::Api::Models::Repository']]], - ['newversion_1338',['NewVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a9f0215ce9fd8bdd6d896f547cf6ee1f9',1,'Tgstation::Server::Api::Models::Administration']]], - ['nextdmbprovider_1339',['nextDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#affbfb8dd410addc55b47b5c08143a509',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['nextmessage_1340',['nextMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac27feec8aca499fa963dd6f6b557b818',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.nextMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ab6cd020395b652aa9d79c00497b739fb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.NextMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a962a3510e617d6754d8e21a237d4b933',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.NextMessage()']]], - ['nextport_1341',['nextPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#acef2971a7fcc65613d54b646d2484d0b',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['nickname_1342',['Nickname',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#af638755232f5c716bacfb8db5a68950c',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Nickname()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a75457eda73c1935c8784dc7fadf9e0ba',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.nickname()']]], - ['nickserv_1343',['NickServ',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba1d351e780172667f7ac246f762907249',1,'Tgstation::Server::Api::Models']]], - ['nonblockinglisten_1344',['NonBlockingListen',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#af74b65e6c05dba2490bb2fb62bdb7f40',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['none_1345',['None',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Host.NativeMethods.None()'],['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()']]], - ['normal_1346',['Normal',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a960b44c579bc2f6818d2daaf9e4c16f0',1,'Tgstation::Server::Host::Components::Session']]], - ['normalizeanddelete_1347',['NormalizeAndDelete',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab0629dee77100aa23cc5f7934efccdb7',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['normalizementions_1348',['NormalizeMentions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3cf5b9ba9079d6c9f582f61b5894f7c1',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], - ['normalizepath_1349',['NormalizePath',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8b8a858eef2c16d29e1aff3603f91cce',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['notfound_1350',['NotFound',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30874703840788ecc629d91fc7e15a5f',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['number_1351',['Number',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a91cb81663a87f96476a47a2628ac1a86',1,'Tgstation::Server::Api::Models::TestMergeParameters']]] + ['name_1367',['Name',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#adccb5a6eaa5665bac809ef9894188e6d',1,'Tgstation.Server.Api.Models.Instance.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a130fc5e97a0f75b63a8cc1ca994e9667',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a64d5e260db4e3f658aa042a376efd090',1,'Tgstation.Server.Api.Models.Internal.User.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#a7501e340efb4d470bec74a85ec3890cd',1,'Tgstation.Server.Api.Models.LogFile.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aa3c25add23e8a5463468700cb5d3f8fe',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a639265f4892f69fac25fa32d7413fe75',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Name()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aa9cbbf23975efc1dde048ee43a6e1d4b',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a310057ff5025763b3a208631f9f76daf',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a161ed3eee61c1cdb62fc5de7ba6e54b5',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a12e4e89bc06dc6f44f953760a3bcf800',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a5c8f4bdfbf9054761790392222009914',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a9b8966f662692c85d651bb27caaa0b0b',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a82a1c35bb13819cd1003592351251fc1',1,'Tgstation.Server.Host.Service.ServerService.Name()']]], + ['nativemethods_1368',['NativeMethods',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html',1,'Tgstation::Server::Host']]], + ['nativemethods_2ecs_1369',['NativeMethods.cs',['../_native_methods_8cs.html',1,'']]], + ['networkpromptreaper_1370',['networkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af4c3eca3b6ba03440f6f2397eeb2ccc3',1,'Tgstation.Server.Host.Components.InstanceFactory.networkPromptReaper()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b73a5e0ea646cfe55c2bd6679e4cab6',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper()']]], + ['never_1371',['Never',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221a6e7b34fa59e1bd229b207892956dc41c',1,'Tgstation.Server.Api.Models.Never()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a6e7b34fa59e1bd229b207892956dc41c',1,'Tgstation.Server.Host.Configuration.Never()']]], + ['nevervalidated_1372',['NeverValidated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a48849e38346e47a569371c42b698fe36',1,'Tgstation::Server::Host::Components::Session']]], + ['newdmbavailable_1373',['NewDmbAvailable',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9aa2bd02c12bb4927940a72a240edf9707',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['newerdmbtcs_1374',['newerDmbTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a46cb9fe7ded7d00dc6ef7bbbd1b09518',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['newinstancename_1375',['NewInstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a96125b9afabdcb00e1fd06d5dadb3695',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['newport_1376',['NewPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a0a70914ed2c179b00d9bc5952ba4cd62',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.NewPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa5f71956124a07c95c4e85d7f423b3f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.NewPort()']]], + ['newrebootstate_1377',['NewRebootState',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a8e38bf3401407c0ccadcccc9daf293ae',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['newserverversion_1378',['NewServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a9e0422cc12040f835acbbb340d453ff7',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['newtestmerges_1379',['NewTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ad4bb63897d14c742a2c52a159ec75641',1,'Tgstation::Server::Api::Models::Repository']]], + ['newversion_1380',['NewVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a9f0215ce9fd8bdd6d896f547cf6ee1f9',1,'Tgstation::Server::Api::Models::Administration']]], + ['nextdmbprovider_1381',['nextDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#affbfb8dd410addc55b47b5c08143a509',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['nextmessage_1382',['NextMessage',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ab6cd020395b652aa9d79c00497b739fb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.NextMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a962a3510e617d6754d8e21a237d4b933',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.NextMessage(CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac27feec8aca499fa963dd6f6b557b818',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.nextMessage()']]], + ['nextport_1383',['nextPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#acef2971a7fcc65613d54b646d2484d0b',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['nickname_1384',['Nickname',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#af638755232f5c716bacfb8db5a68950c',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Nickname()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a75457eda73c1935c8784dc7fadf9e0ba',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.nickname()']]], + ['nickserv_1385',['NickServ',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba1d351e780172667f7ac246f762907249',1,'Tgstation::Server::Api::Models']]], + ['nonblockinglisten_1386',['NonBlockingListen',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#af74b65e6c05dba2490bb2fb62bdb7f40',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['none_1387',['None',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Host.NativeMethods.None()'],['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()']]], + ['normal_1388',['Normal',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a960b44c579bc2f6818d2daaf9e4c16f0',1,'Tgstation::Server::Host::Components::Session']]], + ['normalizeanddelete_1389',['NormalizeAndDelete',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab0629dee77100aa23cc5f7934efccdb7',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['normalizementions_1390',['NormalizeMentions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3cf5b9ba9079d6c9f582f61b5894f7c1',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], + ['normalizepath_1391',['NormalizePath',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8b8a858eef2c16d29e1aff3603f91cce',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['notfound_1392',['NotFound',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30874703840788ecc629d91fc7e15a5f',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['number_1393',['Number',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a91cb81663a87f96476a47a2628ac1a86',1,'Tgstation::Server::Api::Models::TestMergeParameters']]] ]; diff --git a/search/all_f.html b/search/all_f.html index ac1e704fb9..298cf1478b 100644 --- a/search/all_f.html +++ b/search/all_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/all_f.js b/search/all_f.js index cd5d10c3af..d0889ba522 100644 --- a/search/all_f.js +++ b/search/all_f.js @@ -1,29 +1,31 @@ var searchData= [ - ['octokitexception_1352',['OctokitException',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aae91f209dda2b1d6a356a3cc3700750e',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['offline_1353',['Offline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a8d9da4bc0e49a50e09ac9f7e56789d39',1,'Tgstation::Server::Api::Models']]], - ['offlineinstance_1354',['OfflineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ad749e8ae302cb4f361be8e6641d8504f',1,'Tgstation.Server.Host.Components.IInstanceManager.OfflineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a77615fe1970391e6ebe643dc3033156f',1,'Tgstation.Server.Host.Components.InstanceManager.OfflineInstance()']]], - ['onactionexecutionasync_1355',['OnActionExecutionAsync',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae6314cf236db98c1e453639df84e8242',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['ondispose_1356',['onDispose',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#aa654791d4441face9f27fcf8cf2db03a',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ac585ca7dfac5652bc826aedb0e6bd4e9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a0855377d10534ad3c22b7961c569a478',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#af2a69a0a07eff91257bace7640a3df8e',1,'Tgstation.Server.Host.Components.Repository.Repository.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a7db0cb09e48b12745868127e77dba1d0',1,'Tgstation.Server.Host.Core.RestartRegistration.onDispose()']]], - ['ondisposed_1357',['onDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a9f08085436ed4e7e2cc1079b08934f4c',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], - ['onexecuteasync_1358',['OnExecuteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a86d24d735c64eb7c67a935b809927dd4',1,'Tgstation::Server::Host::Service::Program']]], - ['online_1359',['Online',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6f024aa440adbecbd80b053eb57badc2',1,'Tgstation.Server.Api.Models.Instance.Online()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a54f664c70c22054ea0d8d26fc3997ce7',1,'Tgstation.Server.Api.Models.Online()']]], - ['onlineinstance_1360',['OnlineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#af016d9fc2c80b6b2849540f2cd1ddfda',1,'Tgstation.Server.Host.Components.IInstanceManager.OnlineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a00b4178d67ebc7ac4b0e3fe87484df15',1,'Tgstation.Server.Host.Components.InstanceManager.OnlineInstance()']]], - ['only_1361',['Only',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a8392461cf759088854e16710b9b75d1a',1,'Tgstation::Server::Host::Configuration']]], - ['onmodelcreating_1362',['OnModelCreating',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a72af635ad6da50cf2f063acdef4a6347',1,'Tgstation.Server.Host.Database.DatabaseContext.OnModelCreating()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#ae56eb4773fc916d56607ccea5c02a354',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.OnModelCreating()']]], - ['onnewerdmb_1363',['OnNewerDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ab61dd81459c04b375182d4a0c8c4cdfe',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.OnNewerDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#af9bafcbf93da7b38e18284cee87f2a33',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.OnNewerDmb()']]], - ['onprime_1364',['OnPrime',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a480da485a3a5b316653391a49be981e3',1,'Tgstation.Server.Host.Components.Session.ISessionController.OnPrime()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ad23f514f201deec4a378afd17cb0bd65',1,'Tgstation.Server.Host.Components.Session.SessionController.OnPrime()']]], - ['onreboot_1365',['OnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a625d6e340c7c82b944a35636c6e47ce3',1,'Tgstation.Server.Host.Components.Session.ISessionController.OnReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1bb042033da859b1176707af6367aff0',1,'Tgstation.Server.Host.Components.Session.SessionController.OnReboot()']]], - ['onstart_1366',['OnStart',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a40bef17d85eb30f2cbad7ed81ef9c774',1,'Tgstation::Server::Host::Service::ServerService']]], - ['onstop_1367',['OnStop',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a6e54a00e5d8fc3f0629277f2bb7274ba',1,'Tgstation::Server::Host::Service::ServerService']]], - ['onzeroreferences_1368',['OnZeroReferences',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a56b930287994449e0179439173b88327',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['onzeroreferencestcs_1369',['onZeroReferencesTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#ad240137a8b9d659005cd3ded2729b224',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['openapienumvarnamesextension_1370',['OpenApiEnumVarNamesExtension',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a325781de83b912f4783aa6d4077765fb',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.OpenApiEnumVarNamesExtension()']]], - ['openapienumvarnamesextension_2ecs_1371',['OpenApiEnumVarNamesExtension.cs',['../_open_api_enum_var_names_extension_8cs.html',1,'']]], - ['openthread_1372',['OpenThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a8680bb0a60dc39bc6652442a2fa9cdb4',1,'Tgstation::Server::Host::NativeMethods']]], - ['openwritestream_1373',['OpenWriteStream',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a888245bfe6d20d98807cec9257289a03',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['origin_1374',['Origin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a560111c8642096989558062e0348b4ab',1,'Tgstation.Server.Api.Models.Repository.Origin()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ad8e2dda20f93df7994dd3ffc903c6531',1,'Tgstation.Server.Host.Components.Repository.IRepository.Origin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4885e47a21a11d7fdf1f2071f7cfbb0a',1,'Tgstation.Server.Host.Components.Repository.Repository.Origin()']]], - ['origincommitsha_1375',['OriginCommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#a7239f5d0bb2d47b69a444b9ce6ecddea',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], - ['origintrackingerrortemplate_1376',['OriginTrackingErrorTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a160b164a1b668c2951ac4cff5db5205b',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['output_1377',['Output',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aef6bf340dda1f9242209505036526e57',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]] + ['octokitexception_1394',['OctokitException',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aae91f209dda2b1d6a356a3cc3700750e',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['offline_1395',['Offline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a8d9da4bc0e49a50e09ac9f7e56789d39',1,'Tgstation::Server::Api::Models']]], + ['offlineinstance_1396',['OfflineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ad749e8ae302cb4f361be8e6641d8504f',1,'Tgstation.Server.Host.Components.IInstanceManager.OfflineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a77615fe1970391e6ebe643dc3033156f',1,'Tgstation.Server.Host.Components.InstanceManager.OfflineInstance()']]], + ['onactionexecutionasync_1397',['OnActionExecutionAsync',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae6314cf236db98c1e453639df84e8242',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['ondispose_1398',['onDispose',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#aa654791d4441face9f27fcf8cf2db03a',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ac585ca7dfac5652bc826aedb0e6bd4e9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a0855377d10534ad3c22b7961c569a478',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#af2a69a0a07eff91257bace7640a3df8e',1,'Tgstation.Server.Host.Components.Repository.Repository.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a7db0cb09e48b12745868127e77dba1d0',1,'Tgstation.Server.Host.Core.RestartRegistration.onDispose()']]], + ['ondisposed_1399',['onDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a9f08085436ed4e7e2cc1079b08934f4c',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], + ['onerror_1400',['OnError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221a44cdeb54c6f2aebad54611201c26d6f0',1,'Tgstation::Server::Api::Models']]], + ['onexecuteasync_1401',['OnExecuteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a86d24d735c64eb7c67a935b809927dd4',1,'Tgstation::Server::Host::Service::Program']]], + ['online_1402',['Online',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6f024aa440adbecbd80b053eb57badc2',1,'Tgstation.Server.Api.Models.Instance.Online()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a54f664c70c22054ea0d8d26fc3997ce7',1,'Tgstation.Server.Api.Models.Online()']]], + ['onlineinstance_1403',['OnlineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#af016d9fc2c80b6b2849540f2cd1ddfda',1,'Tgstation.Server.Host.Components.IInstanceManager.OnlineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a00b4178d67ebc7ac4b0e3fe87484df15',1,'Tgstation.Server.Host.Components.InstanceManager.OnlineInstance()']]], + ['only_1404',['Only',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a8392461cf759088854e16710b9b75d1a',1,'Tgstation::Server::Host::Configuration']]], + ['onmodelcreating_1405',['OnModelCreating',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a72af635ad6da50cf2f063acdef4a6347',1,'Tgstation.Server.Host.Database.DatabaseContext.OnModelCreating()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#ae56eb4773fc916d56607ccea5c02a354',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.OnModelCreating()']]], + ['onnewerdmb_1406',['OnNewerDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ab61dd81459c04b375182d4a0c8c4cdfe',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.OnNewerDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#af9bafcbf93da7b38e18284cee87f2a33',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.OnNewerDmb()']]], + ['onprime_1407',['OnPrime',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a480da485a3a5b316653391a49be981e3',1,'Tgstation.Server.Host.Components.Session.ISessionController.OnPrime()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ad23f514f201deec4a378afd17cb0bd65',1,'Tgstation.Server.Host.Components.Session.SessionController.OnPrime()']]], + ['onreboot_1408',['OnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a625d6e340c7c82b944a35636c6e47ce3',1,'Tgstation.Server.Host.Components.Session.ISessionController.OnReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1bb042033da859b1176707af6367aff0',1,'Tgstation.Server.Host.Components.Session.SessionController.OnReboot()']]], + ['onstart_1409',['OnStart',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a40bef17d85eb30f2cbad7ed81ef9c774',1,'Tgstation::Server::Host::Service::ServerService']]], + ['onstop_1410',['OnStop',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a6e54a00e5d8fc3f0629277f2bb7274ba',1,'Tgstation::Server::Host::Service::ServerService']]], + ['onzeroreferences_1411',['OnZeroReferences',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a56b930287994449e0179439173b88327',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['onzeroreferencestcs_1412',['onZeroReferencesTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#ad240137a8b9d659005cd3ded2729b224',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['openapienumvarnamesextension_1413',['OpenApiEnumVarNamesExtension',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a325781de83b912f4783aa6d4077765fb',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.OpenApiEnumVarNamesExtension()']]], + ['openapienumvarnamesextension_2ecs_1414',['OpenApiEnumVarNamesExtension.cs',['../_open_api_enum_var_names_extension_8cs.html',1,'']]], + ['openthread_1415',['OpenThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a8680bb0a60dc39bc6652442a2fa9cdb4',1,'Tgstation::Server::Host::NativeMethods']]], + ['openwritestream_1416',['OpenWriteStream',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a888245bfe6d20d98807cec9257289a03',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['origin_1417',['Origin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a560111c8642096989558062e0348b4ab',1,'Tgstation.Server.Api.Models.Repository.Origin()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ad8e2dda20f93df7994dd3ffc903c6531',1,'Tgstation.Server.Host.Components.Repository.IRepository.Origin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4885e47a21a11d7fdf1f2071f7cfbb0a',1,'Tgstation.Server.Host.Components.Repository.Repository.Origin()']]], + ['origincommitsha_1418',['OriginCommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#a7239f5d0bb2d47b69a444b9ce6ecddea',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], + ['origintrackingerrortemplate_1419',['OriginTrackingErrorTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a160b164a1b668c2951ac4cff5db5205b',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['output_1420',['Output',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aef6bf340dda1f9242209505036526e57',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], + ['outputdisplaytype_1421',['outputDisplayType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a96681c4d5a393d80bd2ff022eed95ee5',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]] ]; diff --git a/search/classes_0.html b/search/classes_0.html index 5b441a359e..12f21c5982 100644 --- a/search/classes_0.html +++ b/search/classes_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_0.js b/search/classes_0.js index a29124a09f..c10bb3a26f 100644 --- a/search/classes_0.js +++ b/search/classes_0.js @@ -1,20 +1,20 @@ var searchData= [ - ['administration_2086',['Administration',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html',1,'Tgstation::Server::Api::Models']]], - ['administrationclient_2087',['AdministrationClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html',1,'Tgstation::Server::Client']]], - ['administrationcontroller_2088',['AdministrationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['apiclient_2089',['ApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html',1,'Tgstation::Server::Client']]], - ['apiclientfactory_2090',['ApiClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html',1,'Tgstation::Server::Client']]], - ['apiconflictexception_2091',['ApiConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html',1,'Tgstation::Server::Client']]], - ['apicontroller_2092',['ApiController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['apiexception_2093',['ApiException',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html',1,'Tgstation::Server::Client']]], - ['apiheaders_2094',['ApiHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html',1,'Tgstation::Server::Api']]], - ['application_2095',['Application',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html',1,'Tgstation::Server::Host::Core']]], - ['applicationbuilderextensions_2096',['ApplicationBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['assemblyinformationprovider_2097',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html',1,'Tgstation::Server::Host::System']]], - ['asyncdelayer_2098',['AsyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html',1,'Tgstation::Server::Host::Core']]], - ['attribute_2099',['Attribute',['../class_attribute.html',1,'']]], - ['authenticationcontext_2100',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html',1,'Tgstation::Server::Host::Security']]], - ['authenticationcontextfactory_2101',['AuthenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html',1,'Tgstation::Server::Host::Security']]], - ['authorizeattribute_2102',['AuthorizeAttribute',['../class_authorize_attribute.html',1,'']]] + ['administration_2140',['Administration',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html',1,'Tgstation::Server::Api::Models']]], + ['administrationclient_2141',['AdministrationClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html',1,'Tgstation::Server::Client']]], + ['administrationcontroller_2142',['AdministrationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['apiclient_2143',['ApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html',1,'Tgstation::Server::Client']]], + ['apiclientfactory_2144',['ApiClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html',1,'Tgstation::Server::Client']]], + ['apiconflictexception_2145',['ApiConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html',1,'Tgstation::Server::Client']]], + ['apicontroller_2146',['ApiController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['apiexception_2147',['ApiException',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html',1,'Tgstation::Server::Client']]], + ['apiheaders_2148',['ApiHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html',1,'Tgstation::Server::Api']]], + ['application_2149',['Application',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html',1,'Tgstation::Server::Host::Core']]], + ['applicationbuilderextensions_2150',['ApplicationBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['assemblyinformationprovider_2151',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html',1,'Tgstation::Server::Host::System']]], + ['asyncdelayer_2152',['AsyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html',1,'Tgstation::Server::Host::Core']]], + ['attribute_2153',['Attribute',['../class_attribute.html',1,'']]], + ['authenticationcontext_2154',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html',1,'Tgstation::Server::Host::Security']]], + ['authenticationcontextfactory_2155',['AuthenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html',1,'Tgstation::Server::Host::Security']]], + ['authorizeattribute_2156',['AuthorizeAttribute',['../class_authorize_attribute.html',1,'']]] ]; diff --git a/search/classes_1.html b/search/classes_1.html index 0ecc9f7965..397b6cd1aa 100644 --- a/search/classes_1.html +++ b/search/classes_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_1.js b/search/classes_1.js index 169b42477c..51dcc674e4 100644 --- a/search/classes_1.js +++ b/search/classes_1.js @@ -1,16 +1,16 @@ var searchData= [ - ['basicwatchdog_2103',['BasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['boolconverter_2104',['BoolConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], - ['bridgecontroller_2105',['BridgeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['bridgeparameters_2106',['BridgeParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['bridgeregistration_2107',['BridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['bridgeresponse_2108',['BridgeResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['byond_2109',['Byond',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html',1,'Tgstation::Server::Api::Models']]], - ['byondclient_2110',['ByondClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html',1,'Tgstation::Server::Client::Components']]], - ['byondcommand_2111',['ByondCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['byondcontroller_2112',['ByondController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['byondexecutablelock_2113',['ByondExecutableLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['byondinstallerbase_2114',['ByondInstallerBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['byondmanager_2115',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html',1,'Tgstation::Server::Host::Components::Byond']]] + ['basicwatchdog_2157',['BasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['boolconverter_2158',['BoolConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], + ['bridgecontroller_2159',['BridgeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['bridgeparameters_2160',['BridgeParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['bridgeregistration_2161',['BridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['bridgeresponse_2162',['BridgeResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['byond_2163',['Byond',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html',1,'Tgstation::Server::Api::Models']]], + ['byondclient_2164',['ByondClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html',1,'Tgstation::Server::Client::Components']]], + ['byondcommand_2165',['ByondCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['byondcontroller_2166',['ByondController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['byondexecutablelock_2167',['ByondExecutableLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['byondinstallerbase_2168',['ByondInstallerBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['byondmanager_2169',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html',1,'Tgstation::Server::Host::Components::Byond']]] ]; diff --git a/search/classes_10.html b/search/classes_10.html index fb544a9693..bdc2f19893 100644 --- a/search/classes_10.html +++ b/search/classes_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_10.js b/search/classes_10.js index 26847de479..517cf4fd53 100644 --- a/search/classes_10.js +++ b/search/classes_10.js @@ -1,21 +1,21 @@ var searchData= [ - ['ratelimitexception_2405',['RateLimitException',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html',1,'Tgstation::Server::Client']]], - ['rawdata_2406',['RawData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['reattachinformation_2407',['ReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html',1,'Tgstation.Server.Host.Models.ReattachInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html',1,'Tgstation.Server.Host.Components.Session.ReattachInformation']]], - ['reattachinformationbase_2408',['ReattachInformationBase',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html',1,'Tgstation::Server::Host::Models']]], - ['repository_2409',['Repository',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html',1,'Tgstation.Server.Api.Models.Repository'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html',1,'Tgstation.Server.Host.Components.Repository.Repository']]], - ['repositoryclient_2410',['RepositoryClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html',1,'Tgstation::Server::Client::Components']]], - ['repositorycontroller_2411',['RepositoryController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['repositorymanager_2412',['RepositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['repositorysettings_2413',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html',1,'Tgstation.Server.Host.Models.RepositorySettings'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html',1,'Tgstation.Server.Api.Models.Internal.RepositorySettings']]], - ['requesttimeoutexception_2414',['RequestTimeoutException',['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html',1,'Tgstation::Server::Client']]], - ['resolvingiomanager_2415',['ResolvingIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['restartregistration_2416',['RestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html',1,'Tgstation::Server::Host::Core']]], - ['revinfotestmerge_2417',['RevInfoTestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html',1,'Tgstation::Server::Host::Models']]], - ['revisioncommand_2418',['RevisionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['revisioninformation_2419',['RevisionInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Host.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.Internal.RevisionInformation']]], - ['rightshelper_2420',['RightsHelper',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html',1,'Tgstation::Server::Api::Rights']]], - ['routes_2421',['Routes',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html',1,'Tgstation::Server::Api']]], - ['runtimeinformation_2422',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] + ['ratelimitexception_2464',['RateLimitException',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html',1,'Tgstation::Server::Client']]], + ['rawdata_2465',['RawData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['reattachinformation_2466',['ReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html',1,'Tgstation.Server.Host.Models.ReattachInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html',1,'Tgstation.Server.Host.Components.Session.ReattachInformation']]], + ['reattachinformationbase_2467',['ReattachInformationBase',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html',1,'Tgstation::Server::Host::Models']]], + ['repository_2468',['Repository',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html',1,'Tgstation.Server.Api.Models.Repository'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html',1,'Tgstation.Server.Host.Components.Repository.Repository']]], + ['repositoryclient_2469',['RepositoryClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html',1,'Tgstation::Server::Client::Components']]], + ['repositorycontroller_2470',['RepositoryController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['repositorymanager_2471',['RepositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['repositorysettings_2472',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html',1,'Tgstation.Server.Host.Models.RepositorySettings'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html',1,'Tgstation.Server.Api.Models.Internal.RepositorySettings']]], + ['requesttimeoutexception_2473',['RequestTimeoutException',['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html',1,'Tgstation::Server::Client']]], + ['resolvingiomanager_2474',['ResolvingIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['restartregistration_2475',['RestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html',1,'Tgstation::Server::Host::Core']]], + ['revinfotestmerge_2476',['RevInfoTestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html',1,'Tgstation::Server::Host::Models']]], + ['revisioncommand_2477',['RevisionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['revisioninformation_2478',['RevisionInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.RevisionInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html',1,'Tgstation.Server.Api.Models.Internal.RevisionInformation'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html',1,'Tgstation.Server.Host.Models.RevisionInformation']]], + ['rightshelper_2479',['RightsHelper',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html',1,'Tgstation::Server::Api::Rights']]], + ['routes_2480',['Routes',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html',1,'Tgstation::Server::Api']]], + ['runtimeinformation_2481',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] ]; diff --git a/search/classes_11.html b/search/classes_11.html index 3428658662..8080d0041f 100644 --- a/search/classes_11.html +++ b/search/classes_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_11.js b/search/classes_11.js index cd60abd568..1c9cd9cefd 100644 --- a/search/classes_11.js +++ b/search/classes_11.js @@ -1,37 +1,39 @@ var searchData= [ - ['semaphoreslimcontext_2423',['SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html',1,'Tgstation::Server::Host::Core']]], - ['server_2424',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_server.html',1,'Tgstation::Server::Host']]], - ['serverclient_2425',['ServerClient',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html',1,'Tgstation::Server::Client']]], - ['serverclientfactory_2426',['ServerClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html',1,'Tgstation::Server::Client']]], - ['servererrorexception_2427',['ServerErrorException',['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html',1,'Tgstation::Server::Client']]], - ['serverfactory_2428',['ServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html',1,'Tgstation::Server::Host']]], - ['serverinformation_2429',['ServerInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html',1,'Tgstation.Server.Api.Models.Internal.ServerInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html',1,'Tgstation.Server.Api.Models.ServerInformation']]], - ['serverportproivder_2430',['ServerPortProivder',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html',1,'Tgstation::Server::Host::Core']]], - ['serverservice_2431',['ServerService',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html',1,'Tgstation::Server::Host::Service']]], - ['serversidemodifications_2432',['ServerSideModifications',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], - ['servicebase_2433',['ServiceBase',['../class_service_base.html',1,'']]], - ['servicecollectionextensions_2434',['ServiceCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['serviceunavailableexception_2435',['ServiceUnavailableException',['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html',1,'Tgstation::Server::Client']]], - ['sessioncontroller_2436',['SessionController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html',1,'Tgstation::Server::Host::Components::Session']]], - ['sessioncontrollerfactory_2437',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html',1,'Tgstation::Server::Host::Components::Session']]], - ['sessionpersistor_2438',['SessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html',1,'Tgstation::Server::Host::Components::Session']]], - ['setupapplication_2439',['SetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html',1,'Tgstation::Server::Host::Setup']]], - ['setupwizard_2440',['SetupWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html',1,'Tgstation::Server::Host::Setup']]], - ['sladdheartbeat_2441',['SLAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slallownulldmapi_2442',['SLAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slrebuild_2443',['SLRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slremoveexperimentalwatchdog_2444',['SLRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['slremovesoftcolumns_2445',['SLRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['sltopictimeout_2446',['SLTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['socketextensions_2447',['SocketExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['sqlitedatabasecontext_2448',['SqliteDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['sqlitedatabasecontextmodelsnapshot_2449',['SqliteDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['sqlitedesigntimedbcontextfactory_2450',['SqliteDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['sqlserverdatabasecontext_2451',['SqlServerDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['sqlserverdatabasecontextmodelsnapshot_2452',['SqlServerDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['sqlserverdesigntimedbcontextfactory_2453',['SqlServerDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['swaggerconfiguration_2454',['SwaggerConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html',1,'Tgstation::Server::Host::Core']]], - ['swappabledmbprovider_2455',['SwappableDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['synchronousiomanager_2456',['SynchronousIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html',1,'Tgstation::Server::Host::IO']]] + ['securityconfiguration_2482',['SecurityConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html',1,'Tgstation::Server::Host::Configuration']]], + ['semaphoreslimcontext_2483',['SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html',1,'Tgstation::Server::Host::Core']]], + ['server_2484',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_server.html',1,'Tgstation::Server::Host']]], + ['serverclient_2485',['ServerClient',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html',1,'Tgstation::Server::Client']]], + ['serverclientfactory_2486',['ServerClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html',1,'Tgstation::Server::Client']]], + ['servererrorexception_2487',['ServerErrorException',['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html',1,'Tgstation::Server::Client']]], + ['serverfactory_2488',['ServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html',1,'Tgstation::Server::Host']]], + ['serverinformation_2489',['ServerInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html',1,'Tgstation.Server.Api.Models.Internal.ServerInformation'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html',1,'Tgstation.Server.Api.Models.ServerInformation']]], + ['serverportproivder_2490',['ServerPortProivder',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html',1,'Tgstation::Server::Host::Core']]], + ['serverservice_2491',['ServerService',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html',1,'Tgstation::Server::Host::Service']]], + ['serversidemodifications_2492',['ServerSideModifications',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], + ['servicebase_2493',['ServiceBase',['../class_service_base.html',1,'']]], + ['servicecollectionextensions_2494',['ServiceCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['serviceunavailableexception_2495',['ServiceUnavailableException',['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html',1,'Tgstation::Server::Client']]], + ['sessioncontroller_2496',['SessionController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html',1,'Tgstation::Server::Host::Components::Session']]], + ['sessioncontrollerfactory_2497',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html',1,'Tgstation::Server::Host::Components::Session']]], + ['sessionpersistor_2498',['SessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html',1,'Tgstation::Server::Host::Components::Session']]], + ['setupapplication_2499',['SetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html',1,'Tgstation::Server::Host::Setup']]], + ['setupwizard_2500',['SetupWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html',1,'Tgstation::Server::Host::Setup']]], + ['sladddeploymentcolumns_2501',['SLAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sladdheartbeat_2502',['SLAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slallownulldmapi_2503',['SLAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slrebuild_2504',['SLRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slremoveexperimentalwatchdog_2505',['SLRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['slremovesoftcolumns_2506',['SLRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sltopictimeout_2507',['SLTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['socketextensions_2508',['SocketExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['sqlitedatabasecontext_2509',['SqliteDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['sqlitedatabasecontextmodelsnapshot_2510',['SqliteDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sqlitedesigntimedbcontextfactory_2511',['SqliteDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['sqlserverdatabasecontext_2512',['SqlServerDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['sqlserverdatabasecontextmodelsnapshot_2513',['SqlServerDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['sqlserverdesigntimedbcontextfactory_2514',['SqlServerDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['swaggerconfiguration_2515',['SwaggerConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html',1,'Tgstation::Server::Host::Core']]], + ['swappabledmbprovider_2516',['SwappableDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['synchronousiomanager_2517',['SynchronousIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html',1,'Tgstation::Server::Host::IO']]] ]; diff --git a/search/classes_12.html b/search/classes_12.html index 59539ed8d8..068e0e7958 100644 --- a/search/classes_12.html +++ b/search/classes_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_12.js b/search/classes_12.js index e18d57a0df..8362681516 100644 --- a/search/classes_12.js +++ b/search/classes_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['taskextensions_2457',['TaskExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['temporarydmbprovider_2458',['TemporaryDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['testmerge_2459',['TestMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.Internal.TestMerge'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.TestMerge'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Host.Models.TestMerge']]], - ['testmergebase_2460',['TestMergeBase',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['testmergeinformation_2461',['TestMergeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['testmergeparameters_2462',['TestMergeParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html',1,'Tgstation::Server::Api::Models']]], - ['tgsauthorizeattribute_2463',['TgsAuthorizeAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html',1,'Tgstation::Server::Host::Controllers']]], - ['token_2464',['Token',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html',1,'Tgstation::Server::Api::Models']]], - ['tokenfactory_2465',['TokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html',1,'Tgstation::Server::Host::Security']]], - ['topicclientfactory_2466',['TopicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html',1,'Tgstation::Server::Host::Components::Session']]], - ['topicparameters_2467',['TopicParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['topicresponse_2468',['TopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]] + ['taskextensions_2518',['TaskExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['temporarydmbprovider_2519',['TemporaryDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['testmerge_2520',['TestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Host.Models.TestMerge'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.Internal.TestMerge'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html',1,'Tgstation.Server.Api.Models.TestMerge']]], + ['testmergebase_2521',['TestMergeBase',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['testmergeinformation_2522',['TestMergeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['testmergeparameters_2523',['TestMergeParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html',1,'Tgstation::Server::Api::Models']]], + ['tgsauthorizeattribute_2524',['TgsAuthorizeAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html',1,'Tgstation::Server::Host::Controllers']]], + ['token_2525',['Token',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html',1,'Tgstation::Server::Api::Models']]], + ['tokenfactory_2526',['TokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html',1,'Tgstation::Server::Host::Security']]], + ['topicclientfactory_2527',['TopicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html',1,'Tgstation::Server::Host::Components::Session']]], + ['topicparameters_2528',['TopicParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['topicresponse_2529',['TopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]] ]; diff --git a/search/classes_13.html b/search/classes_13.html index 6650a22eea..6de8b7df8f 100644 --- a/search/classes_13.html +++ b/search/classes_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_13.js b/search/classes_13.js index 264d185ca4..c88a63f974 100644 --- a/search/classes_13.js +++ b/search/classes_13.js @@ -1,10 +1,10 @@ var searchData= [ - ['unauthorizedexception_2469',['UnauthorizedException',['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html',1,'Tgstation::Server::Client']]], - ['unrecognizedresponseexception_2470',['UnrecognizedResponseException',['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html',1,'Tgstation::Server::Client']]], - ['updatesconfiguration_2471',['UpdatesConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html',1,'Tgstation::Server::Host::Configuration']]], - ['user_2472',['User',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html',1,'Tgstation.Server.Api.Models.Internal.User'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html',1,'Tgstation.Server.Host.Models.User'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html',1,'Tgstation.Server.Api.Models.User']]], - ['usercontroller_2473',['UserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['usersclient_2474',['UsersClient',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html',1,'Tgstation::Server::Client']]], - ['userupdate_2475',['UserUpdate',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html',1,'Tgstation::Server::Api::Models']]] + ['unauthorizedexception_2530',['UnauthorizedException',['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html',1,'Tgstation::Server::Client']]], + ['unrecognizedresponseexception_2531',['UnrecognizedResponseException',['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html',1,'Tgstation::Server::Client']]], + ['updatesconfiguration_2532',['UpdatesConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html',1,'Tgstation::Server::Host::Configuration']]], + ['user_2533',['User',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html',1,'Tgstation.Server.Api.Models.User'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html',1,'Tgstation.Server.Host.Models.User'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html',1,'Tgstation.Server.Api.Models.Internal.User']]], + ['usercontroller_2534',['UserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['usersclient_2535',['UsersClient',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html',1,'Tgstation::Server::Client']]], + ['userupdate_2536',['UserUpdate',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/classes_14.html b/search/classes_14.html index af4ab26644..d24000b115 100644 --- a/search/classes_14.html +++ b/search/classes_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_14.js b/search/classes_14.js index 02da29860b..d99bd8c98f 100644 --- a/search/classes_14.js +++ b/search/classes_14.js @@ -1,7 +1,7 @@ var searchData= [ - ['versioncommand_2476',['VersionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['versionconverter_2477',['VersionConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], - ['versionextensions_2478',['VersionExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html',1,'Tgstation::Server::Api']]], - ['versionmismatchexception_2479',['VersionMismatchException',['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html',1,'Tgstation::Server::Client']]] + ['versioncommand_2537',['VersionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['versionconverter_2538',['VersionConverter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html',1,'Tgstation::Server::Host::Components::Interop::Converters']]], + ['versionextensions_2539',['VersionExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html',1,'Tgstation::Server::Api']]], + ['versionmismatchexception_2540',['VersionMismatchException',['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html',1,'Tgstation::Server::Client']]] ]; diff --git a/search/classes_15.html b/search/classes_15.html index dfd7dc69fa..e74af039c8 100644 --- a/search/classes_15.html +++ b/search/classes_15.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_15.js b/search/classes_15.js index f398156f89..dc32d99e59 100644 --- a/search/classes_15.js +++ b/search/classes_15.js @@ -1,16 +1,16 @@ var searchData= [ - ['watchdog_2480',['Watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html',1,'Tgstation::Server::Host::Watchdog']]], - ['watchdogbase_2481',['WatchdogBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['watchdogfactory_2482',['WatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory']]], - ['webhostbuilderextensions_2483',['WebHostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['windowsbyondinstaller_2484',['WindowsByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['windowsnetworkpromptreaper_2485',['WindowsNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], - ['windowspostwritehandler_2486',['WindowsPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], - ['windowsprocessfeatures_2487',['WindowsProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html',1,'Tgstation::Server::Host::System']]], - ['windowssymlinkfactory_2488',['WindowsSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], - ['windowssystemidentity_2489',['WindowsSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html',1,'Tgstation::Server::Host::Security']]], - ['windowssystemidentityfactory_2490',['WindowsSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], - ['windowswatchdog_2491',['WindowsWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['windowswatchdogfactory_2492',['WindowsWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html',1,'Tgstation::Server::Host::Components::Watchdog']]] + ['watchdog_2541',['Watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html',1,'Tgstation::Server::Host::Watchdog']]], + ['watchdogbase_2542',['WatchdogBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['watchdogfactory_2543',['WatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory']]], + ['webhostbuilderextensions_2544',['WebHostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['windowsbyondinstaller_2545',['WindowsByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['windowsnetworkpromptreaper_2546',['WindowsNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], + ['windowspostwritehandler_2547',['WindowsPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], + ['windowsprocessfeatures_2548',['WindowsProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html',1,'Tgstation::Server::Host::System']]], + ['windowssymlinkfactory_2549',['WindowsSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], + ['windowssystemidentity_2550',['WindowsSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html',1,'Tgstation::Server::Host::Security']]], + ['windowssystemidentityfactory_2551',['WindowsSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], + ['windowswatchdog_2552',['WindowsWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['windowswatchdogfactory_2553',['WindowsWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html',1,'Tgstation::Server::Host::Components::Watchdog']]] ]; diff --git a/search/classes_2.html b/search/classes_2.html index 9c253f2b65..8d854347ee 100644 --- a/search/classes_2.html +++ b/search/classes_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_2.js b/search/classes_2.js index e00368052f..66099b2950 100644 --- a/search/classes_2.js +++ b/search/classes_2.js @@ -1,33 +1,33 @@ var searchData= [ - ['channelmapping_2116',['ChannelMapping',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['channelrepresentation_2117',['ChannelRepresentation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['chatbot_2118',['ChatBot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.Internal.ChatBot'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Host.Models.ChatBot'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.ChatBot']]], - ['chatbotsclient_2119',['ChatBotsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html',1,'Tgstation::Server::Client::Components']]], - ['chatchannel_2120',['ChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Host.Models.ChatChannel'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Api.Models.ChatChannel']]], - ['chatchannelextensions_2121',['ChatChannelExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['chatcommand_2122',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['chatconnectionstringbuilder_2123',['ChatConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['chatcontroller_2124',['ChatController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['chatmanager_2125',['ChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['chatmanagerfactory_2126',['ChatManagerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['chatmessage_2127',['ChatMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['chattrackingcontext_2128',['ChatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['chatupdate_2129',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['chatuser_2130',['ChatUser',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['claimsinjector_2131',['ClaimsInjector',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html',1,'Tgstation::Server::Host::Security']]], - ['clientexception_2132',['ClientException',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html',1,'Tgstation::Server::Client']]], - ['combinedtopicresponse_2133',['CombinedTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html',1,'Tgstation::Server::Host::Components::Session']]], - ['commandfactory_2134',['CommandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['compilejob_2135',['CompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.Internal.CompileJob'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Host.Models.CompileJob'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.CompileJob']]], - ['configuration_2136',['Configuration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], - ['configurationclient_2137',['ConfigurationClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html',1,'Tgstation::Server::Client::Components']]], - ['configurationcontroller_2138',['ConfigurationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['configurationfile_2139',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html',1,'Tgstation::Server::Api::Models']]], - ['conflictexception_2140',['ConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html',1,'Tgstation::Server::Client']]], - ['console_2141',['Console',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html',1,'Tgstation::Server::Host::IO']]], - ['controller_2142',['Controller',['../class_controller.html',1,'']]], - ['controlpanelconfiguration_2143',['ControlPanelConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html',1,'Tgstation::Server::Host::Configuration']]], - ['cryptographysuite_2144',['CryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html',1,'Tgstation::Server::Host::Security']]], - ['customcommand_2145',['CustomCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]] + ['channelmapping_2170',['ChannelMapping',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['channelrepresentation_2171',['ChannelRepresentation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['chatbot_2172',['ChatBot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.Internal.ChatBot'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Host.Models.ChatBot'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html',1,'Tgstation.Server.Api.Models.ChatBot']]], + ['chatbotsclient_2173',['ChatBotsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html',1,'Tgstation::Server::Client::Components']]], + ['chatchannel_2174',['ChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Host.Models.ChatChannel'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html',1,'Tgstation.Server.Api.Models.ChatChannel']]], + ['chatchannelextensions_2175',['ChatChannelExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['chatcommand_2176',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['chatconnectionstringbuilder_2177',['ChatConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['chatcontroller_2178',['ChatController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['chatmanager_2179',['ChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['chatmanagerfactory_2180',['ChatManagerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['chatmessage_2181',['ChatMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['chattrackingcontext_2182',['ChatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['chatupdate_2183',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['chatuser_2184',['ChatUser',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['claimsinjector_2185',['ClaimsInjector',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html',1,'Tgstation::Server::Host::Security']]], + ['clientexception_2186',['ClientException',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html',1,'Tgstation::Server::Client']]], + ['combinedtopicresponse_2187',['CombinedTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html',1,'Tgstation::Server::Host::Components::Session']]], + ['commandfactory_2188',['CommandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['compilejob_2189',['CompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.Internal.CompileJob'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Host.Models.CompileJob'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html',1,'Tgstation.Server.Api.Models.CompileJob']]], + ['configuration_2190',['Configuration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], + ['configurationclient_2191',['ConfigurationClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html',1,'Tgstation::Server::Client::Components']]], + ['configurationcontroller_2192',['ConfigurationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['configurationfile_2193',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html',1,'Tgstation::Server::Api::Models']]], + ['conflictexception_2194',['ConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html',1,'Tgstation::Server::Client']]], + ['console_2195',['Console',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html',1,'Tgstation::Server::Host::IO']]], + ['controller_2196',['Controller',['../class_controller.html',1,'']]], + ['controlpanelconfiguration_2197',['ControlPanelConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html',1,'Tgstation::Server::Host::Configuration']]], + ['cryptographysuite_2198',['CryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html',1,'Tgstation::Server::Host::Security']]], + ['customcommand_2199',['CustomCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]] ]; diff --git a/search/classes_3.html b/search/classes_3.html index a89a0407b5..53ad6ee4ae 100644 --- a/search/classes_3.html +++ b/search/classes_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_3.js b/search/classes_3.js index 2656bd3791..06f7eb53d2 100644 --- a/search/classes_3.js +++ b/search/classes_3.js @@ -1,30 +1,30 @@ var searchData= [ - ['databasecollection_2146',['DatabaseCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['databasecollectionextensions_2147',['DatabaseCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['databaseconfiguration_2148',['DatabaseConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html',1,'Tgstation::Server::Host::Configuration']]], - ['databaseconnectionfactory_2149',['DatabaseConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], - ['databasecontext_2150',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['databasecontextfactory_2151',['DatabaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html',1,'Tgstation::Server::Host::Database']]], - ['databaseseeder_2152',['DatabaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html',1,'Tgstation::Server::Host::Database']]], - ['datetimeoffsetextensions_2153',['DateTimeOffsetExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['dbcontext_2154',['DbContext',['../class_db_context.html',1,'']]], - ['defaultiomanager_2155',['DefaultIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['designtimedbcontextfactoryhelpers_2156',['DesignTimeDbContextFactoryHelpers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html',1,'Tgstation::Server::Host::Database::Design']]], - ['discordconnectionstringbuilder_2157',['DiscordConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html',1,'Tgstation::Server::Api::Models']]], - ['discordprovider_2158',['DiscordProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['dmapiconstants_2159',['DMApiConstants',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['dmapiparameters_2160',['DMApiParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['dmapiresponse_2161',['DMApiResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['dmbfactory_2162',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['dmbprovider_2163',['DmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['dreamdaemon_2164',['DreamDaemon',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonclient_2165',['DreamDaemonClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html',1,'Tgstation::Server::Client::Components']]], - ['dreamdaemoncontroller_2166',['DreamDaemonController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['dreamdaemonlaunchparameters_2167',['DreamDaemonLaunchParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html',1,'Tgstation::Server::Api::Models::Internal']]], - ['dreamdaemonsettings_2168',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Host.Models.DreamDaemonSettings']]], - ['dreammaker_2169',['DreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html',1,'Tgstation.Server.Api.Models.DreamMaker']]], - ['dreammakerclient_2170',['DreamMakerClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html',1,'Tgstation::Server::Client::Components']]], - ['dreammakercontroller_2171',['DreamMakerController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['dreammakersettings_2172',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html',1,'Tgstation::Server::Host::Models']]] + ['databasecollection_2200',['DatabaseCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['databasecollectionextensions_2201',['DatabaseCollectionExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['databaseconfiguration_2202',['DatabaseConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html',1,'Tgstation::Server::Host::Configuration']]], + ['databaseconnectionfactory_2203',['DatabaseConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], + ['databasecontext_2204',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['databasecontextfactory_2205',['DatabaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html',1,'Tgstation::Server::Host::Database']]], + ['databaseseeder_2206',['DatabaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html',1,'Tgstation::Server::Host::Database']]], + ['datetimeoffsetextensions_2207',['DateTimeOffsetExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['dbcontext_2208',['DbContext',['../class_db_context.html',1,'']]], + ['defaultiomanager_2209',['DefaultIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['designtimedbcontextfactoryhelpers_2210',['DesignTimeDbContextFactoryHelpers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html',1,'Tgstation::Server::Host::Database::Design']]], + ['discordconnectionstringbuilder_2211',['DiscordConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html',1,'Tgstation::Server::Api::Models']]], + ['discordprovider_2212',['DiscordProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['dmapiconstants_2213',['DMApiConstants',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['dmapiparameters_2214',['DMApiParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['dmapiresponse_2215',['DMApiResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['dmbfactory_2216',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['dmbprovider_2217',['DmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['dreamdaemon_2218',['DreamDaemon',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonclient_2219',['DreamDaemonClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html',1,'Tgstation::Server::Client::Components']]], + ['dreamdaemoncontroller_2220',['DreamDaemonController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['dreamdaemonlaunchparameters_2221',['DreamDaemonLaunchParameters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html',1,'Tgstation::Server::Api::Models::Internal']]], + ['dreamdaemonsettings_2222',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonSettings'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html',1,'Tgstation.Server.Host.Models.DreamDaemonSettings']]], + ['dreammaker_2223',['DreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html',1,'Tgstation.Server.Api.Models.DreamMaker']]], + ['dreammakerclient_2224',['DreamMakerClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html',1,'Tgstation::Server::Client::Components']]], + ['dreammakercontroller_2225',['DreamMakerController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['dreammakersettings_2226',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html',1,'Tgstation::Server::Host::Models']]] ]; diff --git a/search/classes_4.html b/search/classes_4.html index 97fa6e88e2..f0fe452e59 100644 --- a/search/classes_4.html +++ b/search/classes_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_4.js b/search/classes_4.js index 43f4fd4294..4fc52898a1 100644 --- a/search/classes_4.js +++ b/search/classes_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['entityid_2173',['EntityId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html',1,'Tgstation::Server::Api::Models']]], - ['errorcodeextensions_2174',['ErrorCodeExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html',1,'Tgstation::Server::Api::Models']]], - ['errormessage_2175',['ErrorMessage',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html',1,'Tgstation::Server::Api::Models']]], - ['eventconsumer_2176',['EventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html',1,'Tgstation::Server::Host::Components::Events']]], - ['eventnotification_2177',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['eventscriptattribute_2178',['EventScriptAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html',1,'Tgstation::Server::Host::Components::Events']]] + ['entityid_2227',['EntityId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html',1,'Tgstation::Server::Api::Models']]], + ['errorcodeextensions_2228',['ErrorCodeExtensions',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html',1,'Tgstation::Server::Api::Models']]], + ['errormessage_2229',['ErrorMessage',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html',1,'Tgstation::Server::Api::Models']]], + ['eventconsumer_2230',['EventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html',1,'Tgstation::Server::Host::Components::Events']]], + ['eventnotification_2231',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['eventscriptattribute_2232',['EventScriptAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html',1,'Tgstation::Server::Host::Components::Events']]] ]; diff --git a/search/classes_5.html b/search/classes_5.html index fe82670c4d..83ac8a858f 100644 --- a/search/classes_5.html +++ b/search/classes_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_5.js b/search/classes_5.js index f7ee1bce5d..27e84c60e7 100644 --- a/search/classes_5.js +++ b/search/classes_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['fileloggingconfiguration_2179',['FileLoggingConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html',1,'Tgstation::Server::Host::Configuration']]] + ['fileloggingconfiguration_2233',['FileLoggingConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html',1,'Tgstation::Server::Host::Configuration']]] ]; diff --git a/search/classes_6.html b/search/classes_6.html index 2b4a09e649..d38fc852ae 100644 --- a/search/classes_6.html +++ b/search/classes_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_6.js b/search/classes_6.js index 2be575f720..a9a4445f7a 100644 --- a/search/classes_6.js +++ b/search/classes_6.js @@ -1,5 +1,6 @@ var searchData= [ - ['generalconfiguration_2180',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html',1,'Tgstation::Server::Host::Configuration']]], - ['githubclientfactory_2181',['GitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html',1,'Tgstation::Server::Host::Core']]] + ['generalconfiguration_2234',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html',1,'Tgstation::Server::Host::Configuration']]], + ['githubclientfactory_2235',['GitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html',1,'Tgstation::Server::Host::Core']]], + ['githubdeploymentmanager_2236',['GitHubDeploymentManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html',1,'Tgstation::Server::Host::Components::Deployment']]] ]; diff --git a/search/classes_7.html b/search/classes_7.html index f43072814e..d5006e6503 100644 --- a/search/classes_7.html +++ b/search/classes_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_7.js b/search/classes_7.js index 8b9dbcb29c..7816df6e63 100644 --- a/search/classes_7.js +++ b/search/classes_7.js @@ -1,7 +1,7 @@ var searchData= [ - ['headersexception_2182',['HeadersException',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html',1,'Tgstation::Server::Api']]], - ['homecontroller_2183',['HomeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['hostbuilderextensions_2184',['HostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], - ['httpclient_2185',['HttpClient',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html',1,'Tgstation::Server::Client']]] + ['headersexception_2237',['HeadersException',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html',1,'Tgstation::Server::Api']]], + ['homecontroller_2238',['HomeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['hostbuilderextensions_2239',['HostBuilderExtensions',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html',1,'Tgstation::Server::Host::Extensions']]], + ['httpclient_2240',['HttpClient',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html',1,'Tgstation::Server::Client']]] ]; diff --git a/search/classes_8.html b/search/classes_8.html index 822af8d8a8..d8f1331d87 100644 --- a/search/classes_8.html +++ b/search/classes_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_8.js b/search/classes_8.js index 42883743ba..7f7feac484 100644 --- a/search/classes_8.js +++ b/search/classes_8.js @@ -1,136 +1,137 @@ var searchData= [ - ['iadministrationclient_2186',['IAdministrationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html',1,'Tgstation::Server::Client']]], - ['iapiclient_2187',['IApiClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html',1,'Tgstation::Server::Client']]], - ['iapiclientfactory_2188',['IApiClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html',1,'Tgstation::Server::Client']]], - ['iassemblyinformationprovider_2189',['IAssemblyInformationProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html',1,'Tgstation::Server::Host::System']]], - ['iasyncdelayer_2190',['IAsyncDelayer',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html',1,'Tgstation::Server::Host::Core']]], - ['iasyncdisposable_2191',['IAsyncDisposable',['../class_i_async_disposable.html',1,'']]], - ['iasyncenumerable_2192',['IAsyncEnumerable',['../class_i_async_enumerable.html',1,'']]], - ['iauthenticationcontext_2193',['IAuthenticationContext',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html',1,'Tgstation::Server::Host::Security']]], - ['iauthenticationcontextfactory_2194',['IAuthenticationContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html',1,'Tgstation::Server::Host::Security']]], - ['ibridgedispatcher_2195',['IBridgeDispatcher',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgehandler_2196',['IBridgeHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgeregistrar_2197',['IBridgeRegistrar',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibridgeregistration_2198',['IBridgeRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registration.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['ibyondclient_2199',['IByondClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html',1,'Tgstation::Server::Client::Components']]], - ['ibyondexecutablelock_2200',['IByondExecutableLock',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['ibyondinstaller_2201',['IByondInstaller',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['ibyondmanager_2202',['IByondManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['ichannelsink_2203',['IChannelSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichatbotsclient_2204',['IChatBotsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html',1,'Tgstation::Server::Client::Components']]], - ['ichatmanager_2205',['IChatManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichatmanagerfactory_2206',['IChatManagerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['ichattrackingcontext_2207',['IChatTrackingContext',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['iclaimsinjector_2208',['IClaimsInjector',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html',1,'Tgstation::Server::Host::Security']]], - ['icommand_2209',['ICommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['icommandfactory_2210',['ICommandFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], - ['icompilejobsink_2211',['ICompileJobSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['iconfiguration_2212',['IConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], - ['iconfigurationclient_2213',['IConfigurationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html',1,'Tgstation::Server::Client::Components']]], - ['iconsole_2214',['IConsole',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html',1,'Tgstation::Server::Host::IO']]], - ['icredentialsprovider_2215',['ICredentialsProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['icryptographysuite_2216',['ICryptographySuite',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html',1,'Tgstation::Server::Host::Security']]], - ['icustomcommandhandler_2217',['ICustomCommandHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['idatabasecollection_2218',['IDatabaseCollection',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20chatbot_20_3e_2219',['IDatabaseCollection< ChatBot >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20chatchannel_20_3e_2220',['IDatabaseCollection< ChatChannel >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20compilejob_20_3e_2221',['IDatabaseCollection< CompileJob >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20dreamdaemonsettings_20_3e_2222',['IDatabaseCollection< DreamDaemonSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20dreammakersettings_20_3e_2223',['IDatabaseCollection< DreamMakerSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20instance_20_3e_2224',['IDatabaseCollection< Instance >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20instanceuser_20_3e_2225',['IDatabaseCollection< InstanceUser >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20job_20_3e_2226',['IDatabaseCollection< Job >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20reattachinformation_20_3e_2227',['IDatabaseCollection< ReattachInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20repositorysettings_20_3e_2228',['IDatabaseCollection< RepositorySettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20revisioninformation_20_3e_2229',['IDatabaseCollection< RevisionInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecollection_3c_20user_20_3e_2230',['IDatabaseCollection< User >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], - ['idatabaseconnectionfactory_2231',['IDatabaseConnectionFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecontext_2232',['IDatabaseContext',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['idatabasecontextfactory_2233',['IDatabaseContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html',1,'Tgstation::Server::Host::Database']]], - ['idatabaseseeder_2234',['IDatabaseSeeder',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html',1,'Tgstation::Server::Host::Database']]], - ['identitycache_2235',['IdentityCache',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html',1,'Tgstation::Server::Host::Security']]], - ['identitycacheobject_2236',['IdentityCacheObject',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html',1,'Tgstation::Server::Host::Security']]], - ['idesigntimedbcontextfactory_2237',['IDesignTimeDbContextFactory',['../class_i_design_time_db_context_factory.html',1,'']]], - ['idisposable_2238',['IDisposable',['../class_i_disposable.html',1,'']]], - ['idmbfactory_2239',['IDmbFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['idmbprovider_2240',['IDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['idocumentfilter_2241',['IDocumentFilter',['../class_i_document_filter.html',1,'']]], - ['idreamdaemonclient_2242',['IDreamDaemonClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html',1,'Tgstation::Server::Client::Components']]], - ['idreammaker_2243',['IDreamMaker',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['idreammakerclient_2244',['IDreamMakerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html',1,'Tgstation::Server::Client::Components']]], - ['ieventconsumer_2245',['IEventConsumer',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html',1,'Tgstation::Server::Host::Components::Events']]], - ['igithubclientfactory_2246',['IGitHubClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html',1,'Tgstation::Server::Host::Core']]], - ['ihostedservice_2247',['IHostedService',['../class_i_hosted_service.html',1,'']]], - ['ihttpclient_2248',['IHttpClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html',1,'Tgstation::Server::Client']]], - ['iidentitycache_2249',['IIdentityCache',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html',1,'Tgstation::Server::Host::Security']]], - ['iinstance_2250',['IInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance.html',1,'Tgstation::Server::Host::Components']]], - ['iinstanceclient_2251',['IInstanceClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html',1,'Tgstation::Server::Client::Components']]], - ['iinstancecore_2252',['IInstanceCore',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancecoreprovider_2253',['IInstanceCoreProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancefactory_2254',['IInstanceFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancemanager_2255',['IInstanceManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html',1,'Tgstation::Server::Host::Components']]], - ['iinstancemanagerclient_2256',['IInstanceManagerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html',1,'Tgstation::Server::Client']]], - ['iinstancereference_2257',['IInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html',1,'Tgstation::Server::Host::Components']]], - ['iinstanceuserclient_2258',['IInstanceUserClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html',1,'Tgstation::Server::Client::Components']]], - ['iiomanager_2259',['IIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['ijobmanager_2260',['IJobManager',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html',1,'Tgstation::Server::Host::Jobs']]], - ['ijobsclient_2261',['IJobsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html',1,'Tgstation::Server::Client::Components']]], - ['ilatestcompilejobprovider_2262',['ILatestCompileJobProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], - ['ilibgit2commands_2263',['ILibGit2Commands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['ilibgit2repositoryfactory_2264',['ILibGit2RepositoryFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['inetworkpromptreaper_2265',['INetworkPromptReaper',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], - ['instance_2266',['Instance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html',1,'Tgstation.Server.Host.Components.Instance'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html',1,'Tgstation.Server.Host.Models.Instance'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html',1,'Tgstation.Server.Api.Models.Instance']]], - ['instanceclient_2267',['InstanceClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html',1,'Tgstation::Server::Client::Components']]], - ['instancecontainer_2268',['InstanceContainer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html',1,'Tgstation::Server::Host::Components']]], - ['instancecontroller_2269',['InstanceController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['instancefactory_2270',['InstanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html',1,'Tgstation::Server::Host::Components']]], - ['instancemanager_2271',['InstanceManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html',1,'Tgstation::Server::Host::Components']]], - ['instancemanagerclient_2272',['InstanceManagerClient',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html',1,'Tgstation::Server::Client']]], - ['instancerequiredcontroller_2273',['InstanceRequiredController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['instanceuser_2274',['InstanceUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Api.Models.InstanceUser'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Host.Models.InstanceUser']]], - ['instanceuserclient_2275',['InstanceUserClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html',1,'Tgstation::Server::Client::Components']]], - ['instanceusercontroller_2276',['InstanceUserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['instancewrapper_2277',['InstanceWrapper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html',1,'Tgstation::Server::Host::Components']]], - ['insufficientpermissionsexception_2278',['InsufficientPermissionsException',['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html',1,'Tgstation::Server::Client']]], - ['iopenapiextension_2279',['IOpenApiExtension',['../class_i_open_api_extension.html',1,'']]], - ['ioperationfilter_2280',['IOperationFilter',['../class_i_operation_filter.html',1,'']]], - ['iplatformidentifier_2281',['IPlatformIdentifier',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html',1,'Tgstation::Server::Host::System']]], - ['ipostsetupservices_2282',['IPostSetupServices',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html',1,'Tgstation::Server::Host::Setup']]], - ['ipostwritehandler_2283',['IPostWriteHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], - ['iprocess_2284',['IProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html',1,'Tgstation::Server::Host::System']]], - ['iprocessbase_2285',['IProcessBase',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html',1,'Tgstation::Server::Host::System']]], - ['iprocessexecutor_2286',['IProcessExecutor',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html',1,'Tgstation::Server::Host::System']]], - ['iprocessfeatures_2287',['IProcessFeatures',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html',1,'Tgstation::Server::Host::System']]], - ['iprovider_2288',['IProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['iproviderfactory_2289',['IProviderFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['iqueryable_2290',['IQueryable',['../class_i_queryable.html',1,'']]], - ['ircconnectionstringbuilder_2291',['IrcConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html',1,'Tgstation::Server::Api::Models']]], - ['ircprovider_2292',['IrcProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['irenamenotifyee_2293',['IRenameNotifyee',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html',1,'Tgstation::Server::Host::Components']]], - ['irepository_2294',['IRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['irepositoryclient_2295',['IRepositoryClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html',1,'Tgstation::Server::Client::Components']]], - ['irepositorymanager_2296',['IRepositoryManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['irequestlogger_2297',['IRequestLogger',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html',1,'Tgstation::Server::Client']]], - ['irestarthandler_2298',['IRestartHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html',1,'Tgstation::Server::Host::Core']]], - ['irestartregistration_2299',['IRestartRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_registration.html',1,'Tgstation::Server::Host::Core']]], - ['ischemafilter_2300',['ISchemaFilter',['../class_i_schema_filter.html',1,'']]], - ['iserver_2301',['IServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html',1,'Tgstation::Server::Host']]], - ['iserverclient_2302',['IServerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html',1,'Tgstation::Server::Client']]], - ['iserverclientfactory_2303',['IServerClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html',1,'Tgstation::Server::Client']]], - ['iservercontrol_2304',['IServerControl',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html',1,'Tgstation::Server::Host::Core']]], - ['iserverfactory_2305',['IServerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html',1,'Tgstation::Server::Host']]], - ['iserverportprovider_2306',['IServerPortProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html',1,'Tgstation::Server::Host::Core']]], - ['isessioncontroller_2307',['ISessionController',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html',1,'Tgstation::Server::Host::Components::Session']]], - ['isessioncontrollerfactory_2308',['ISessionControllerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html',1,'Tgstation::Server::Host::Components::Session']]], - ['isessionpersistor_2309',['ISessionPersistor',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html',1,'Tgstation::Server::Host::Components::Session']]], - ['isymlinkfactory_2310',['ISymlinkFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], - ['isynchronousiomanager_2311',['ISynchronousIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], - ['isystemidentity_2312',['ISystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html',1,'Tgstation::Server::Host::Security']]], - ['isystemidentityfactory_2313',['ISystemIdentityFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], - ['itokenfactory_2314',['ITokenFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html',1,'Tgstation::Server::Host::Security']]], - ['itopicclientfactory_2315',['ITopicClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html',1,'Tgstation::Server::Host::Components::Session']]], - ['iusersclient_2316',['IUsersClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html',1,'Tgstation::Server::Client']]], - ['iwatchdog_2317',['IWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Watchdog.IWatchdog']]], - ['iwatchdogfactory_2318',['IWatchdogFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory']]] + ['iadministrationclient_2241',['IAdministrationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html',1,'Tgstation::Server::Client']]], + ['iapiclient_2242',['IApiClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html',1,'Tgstation::Server::Client']]], + ['iapiclientfactory_2243',['IApiClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html',1,'Tgstation::Server::Client']]], + ['iassemblyinformationprovider_2244',['IAssemblyInformationProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html',1,'Tgstation::Server::Host::System']]], + ['iasyncdelayer_2245',['IAsyncDelayer',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html',1,'Tgstation::Server::Host::Core']]], + ['iasyncdisposable_2246',['IAsyncDisposable',['../class_i_async_disposable.html',1,'']]], + ['iasyncenumerable_2247',['IAsyncEnumerable',['../class_i_async_enumerable.html',1,'']]], + ['iauthenticationcontext_2248',['IAuthenticationContext',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html',1,'Tgstation::Server::Host::Security']]], + ['iauthenticationcontextfactory_2249',['IAuthenticationContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html',1,'Tgstation::Server::Host::Security']]], + ['ibridgedispatcher_2250',['IBridgeDispatcher',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgehandler_2251',['IBridgeHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgeregistrar_2252',['IBridgeRegistrar',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibridgeregistration_2253',['IBridgeRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registration.html',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['ibyondclient_2254',['IByondClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html',1,'Tgstation::Server::Client::Components']]], + ['ibyondexecutablelock_2255',['IByondExecutableLock',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['ibyondinstaller_2256',['IByondInstaller',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['ibyondmanager_2257',['IByondManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['ichannelsink_2258',['IChannelSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichatbotsclient_2259',['IChatBotsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html',1,'Tgstation::Server::Client::Components']]], + ['ichatmanager_2260',['IChatManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichatmanagerfactory_2261',['IChatManagerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['ichattrackingcontext_2262',['IChatTrackingContext',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['iclaimsinjector_2263',['IClaimsInjector',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html',1,'Tgstation::Server::Host::Security']]], + ['icommand_2264',['ICommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['icommandfactory_2265',['ICommandFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]], + ['icompilejobsink_2266',['ICompileJobSink',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['iconfiguration_2267',['IConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html',1,'Tgstation::Server::Host::Components::StaticFiles']]], + ['iconfigurationclient_2268',['IConfigurationClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html',1,'Tgstation::Server::Client::Components']]], + ['iconsole_2269',['IConsole',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html',1,'Tgstation::Server::Host::IO']]], + ['icredentialsprovider_2270',['ICredentialsProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['icryptographysuite_2271',['ICryptographySuite',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html',1,'Tgstation::Server::Host::Security']]], + ['icustomcommandhandler_2272',['ICustomCommandHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['idatabasecollection_2273',['IDatabaseCollection',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20chatbot_20_3e_2274',['IDatabaseCollection< ChatBot >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20chatchannel_20_3e_2275',['IDatabaseCollection< ChatChannel >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20compilejob_20_3e_2276',['IDatabaseCollection< CompileJob >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20dreamdaemonsettings_20_3e_2277',['IDatabaseCollection< DreamDaemonSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20dreammakersettings_20_3e_2278',['IDatabaseCollection< DreamMakerSettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20instance_20_3e_2279',['IDatabaseCollection< Instance >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20instanceuser_20_3e_2280',['IDatabaseCollection< InstanceUser >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20job_20_3e_2281',['IDatabaseCollection< Job >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20reattachinformation_20_3e_2282',['IDatabaseCollection< ReattachInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20repositorysettings_20_3e_2283',['IDatabaseCollection< RepositorySettings >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20revisioninformation_20_3e_2284',['IDatabaseCollection< RevisionInformation >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecollection_3c_20user_20_3e_2285',['IDatabaseCollection< User >',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html',1,'Tgstation::Server::Host::Database']]], + ['idatabaseconnectionfactory_2286',['IDatabaseConnectionFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecontext_2287',['IDatabaseContext',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['idatabasecontextfactory_2288',['IDatabaseContextFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html',1,'Tgstation::Server::Host::Database']]], + ['idatabaseseeder_2289',['IDatabaseSeeder',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html',1,'Tgstation::Server::Host::Database']]], + ['identitycache_2290',['IdentityCache',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html',1,'Tgstation::Server::Host::Security']]], + ['identitycacheobject_2291',['IdentityCacheObject',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html',1,'Tgstation::Server::Host::Security']]], + ['idesigntimedbcontextfactory_2292',['IDesignTimeDbContextFactory',['../class_i_design_time_db_context_factory.html',1,'']]], + ['idisposable_2293',['IDisposable',['../class_i_disposable.html',1,'']]], + ['idmbfactory_2294',['IDmbFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['idmbprovider_2295',['IDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['idocumentfilter_2296',['IDocumentFilter',['../class_i_document_filter.html',1,'']]], + ['idreamdaemonclient_2297',['IDreamDaemonClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html',1,'Tgstation::Server::Client::Components']]], + ['idreammaker_2298',['IDreamMaker',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['idreammakerclient_2299',['IDreamMakerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html',1,'Tgstation::Server::Client::Components']]], + ['ieventconsumer_2300',['IEventConsumer',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html',1,'Tgstation::Server::Host::Components::Events']]], + ['igithubclientfactory_2301',['IGitHubClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html',1,'Tgstation::Server::Host::Core']]], + ['igithubdeploymentmanager_2302',['IGitHubDeploymentManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['ihostedservice_2303',['IHostedService',['../class_i_hosted_service.html',1,'']]], + ['ihttpclient_2304',['IHttpClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html',1,'Tgstation::Server::Client']]], + ['iidentitycache_2305',['IIdentityCache',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html',1,'Tgstation::Server::Host::Security']]], + ['iinstance_2306',['IInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance.html',1,'Tgstation::Server::Host::Components']]], + ['iinstanceclient_2307',['IInstanceClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html',1,'Tgstation::Server::Client::Components']]], + ['iinstancecore_2308',['IInstanceCore',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancecoreprovider_2309',['IInstanceCoreProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancefactory_2310',['IInstanceFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancemanager_2311',['IInstanceManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html',1,'Tgstation::Server::Host::Components']]], + ['iinstancemanagerclient_2312',['IInstanceManagerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html',1,'Tgstation::Server::Client']]], + ['iinstancereference_2313',['IInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html',1,'Tgstation::Server::Host::Components']]], + ['iinstanceuserclient_2314',['IInstanceUserClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html',1,'Tgstation::Server::Client::Components']]], + ['iiomanager_2315',['IIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['ijobmanager_2316',['IJobManager',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html',1,'Tgstation::Server::Host::Jobs']]], + ['ijobsclient_2317',['IJobsClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html',1,'Tgstation::Server::Client::Components']]], + ['ilatestcompilejobprovider_2318',['ILatestCompileJobProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html',1,'Tgstation::Server::Host::Components::Deployment']]], + ['ilibgit2commands_2319',['ILibGit2Commands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['ilibgit2repositoryfactory_2320',['ILibGit2RepositoryFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['inetworkpromptreaper_2321',['INetworkPromptReaper',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], + ['instance_2322',['Instance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html',1,'Tgstation.Server.Host.Components.Instance'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html',1,'Tgstation.Server.Host.Models.Instance'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html',1,'Tgstation.Server.Api.Models.Instance']]], + ['instanceclient_2323',['InstanceClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html',1,'Tgstation::Server::Client::Components']]], + ['instancecontainer_2324',['InstanceContainer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html',1,'Tgstation::Server::Host::Components']]], + ['instancecontroller_2325',['InstanceController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['instancefactory_2326',['InstanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html',1,'Tgstation::Server::Host::Components']]], + ['instancemanager_2327',['InstanceManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html',1,'Tgstation::Server::Host::Components']]], + ['instancemanagerclient_2328',['InstanceManagerClient',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html',1,'Tgstation::Server::Client']]], + ['instancerequiredcontroller_2329',['InstanceRequiredController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['instanceuser_2330',['InstanceUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Api.Models.InstanceUser'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html',1,'Tgstation.Server.Host.Models.InstanceUser']]], + ['instanceuserclient_2331',['InstanceUserClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html',1,'Tgstation::Server::Client::Components']]], + ['instanceusercontroller_2332',['InstanceUserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['instancewrapper_2333',['InstanceWrapper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html',1,'Tgstation::Server::Host::Components']]], + ['insufficientpermissionsexception_2334',['InsufficientPermissionsException',['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html',1,'Tgstation::Server::Client']]], + ['iopenapiextension_2335',['IOpenApiExtension',['../class_i_open_api_extension.html',1,'']]], + ['ioperationfilter_2336',['IOperationFilter',['../class_i_operation_filter.html',1,'']]], + ['iplatformidentifier_2337',['IPlatformIdentifier',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html',1,'Tgstation::Server::Host::System']]], + ['ipostsetupservices_2338',['IPostSetupServices',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html',1,'Tgstation::Server::Host::Setup']]], + ['ipostwritehandler_2339',['IPostWriteHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], + ['iprocess_2340',['IProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html',1,'Tgstation::Server::Host::System']]], + ['iprocessbase_2341',['IProcessBase',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html',1,'Tgstation::Server::Host::System']]], + ['iprocessexecutor_2342',['IProcessExecutor',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html',1,'Tgstation::Server::Host::System']]], + ['iprocessfeatures_2343',['IProcessFeatures',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html',1,'Tgstation::Server::Host::System']]], + ['iprovider_2344',['IProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['iproviderfactory_2345',['IProviderFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['iqueryable_2346',['IQueryable',['../class_i_queryable.html',1,'']]], + ['ircconnectionstringbuilder_2347',['IrcConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html',1,'Tgstation::Server::Api::Models']]], + ['ircprovider_2348',['IrcProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['irenamenotifyee_2349',['IRenameNotifyee',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html',1,'Tgstation::Server::Host::Components']]], + ['irepository_2350',['IRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['irepositoryclient_2351',['IRepositoryClient',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html',1,'Tgstation::Server::Client::Components']]], + ['irepositorymanager_2352',['IRepositoryManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['irequestlogger_2353',['IRequestLogger',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html',1,'Tgstation::Server::Client']]], + ['irestarthandler_2354',['IRestartHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html',1,'Tgstation::Server::Host::Core']]], + ['irestartregistration_2355',['IRestartRegistration',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_registration.html',1,'Tgstation::Server::Host::Core']]], + ['ischemafilter_2356',['ISchemaFilter',['../class_i_schema_filter.html',1,'']]], + ['iserver_2357',['IServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html',1,'Tgstation::Server::Host']]], + ['iserverclient_2358',['IServerClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html',1,'Tgstation::Server::Client']]], + ['iserverclientfactory_2359',['IServerClientFactory',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html',1,'Tgstation::Server::Client']]], + ['iservercontrol_2360',['IServerControl',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html',1,'Tgstation::Server::Host::Core']]], + ['iserverfactory_2361',['IServerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html',1,'Tgstation::Server::Host']]], + ['iserverportprovider_2362',['IServerPortProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html',1,'Tgstation::Server::Host::Core']]], + ['isessioncontroller_2363',['ISessionController',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html',1,'Tgstation::Server::Host::Components::Session']]], + ['isessioncontrollerfactory_2364',['ISessionControllerFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html',1,'Tgstation::Server::Host::Components::Session']]], + ['isessionpersistor_2365',['ISessionPersistor',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html',1,'Tgstation::Server::Host::Components::Session']]], + ['isymlinkfactory_2366',['ISymlinkFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], + ['isynchronousiomanager_2367',['ISynchronousIOManager',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html',1,'Tgstation::Server::Host::IO']]], + ['isystemidentity_2368',['ISystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html',1,'Tgstation::Server::Host::Security']]], + ['isystemidentityfactory_2369',['ISystemIdentityFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], + ['itokenfactory_2370',['ITokenFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html',1,'Tgstation::Server::Host::Security']]], + ['itopicclientfactory_2371',['ITopicClientFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html',1,'Tgstation::Server::Host::Components::Session']]], + ['iusersclient_2372',['IUsersClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html',1,'Tgstation::Server::Client']]], + ['iwatchdog_2373',['IWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html',1,'Tgstation.Server.Host.Watchdog.IWatchdog']]], + ['iwatchdogfactory_2374',['IWatchdogFactory',['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory']]] ]; diff --git a/search/classes_9.html b/search/classes_9.html index 6f4b440f3f..373ce3f603 100644 --- a/search/classes_9.html +++ b/search/classes_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_9.js b/search/classes_9.js index 692fa2294a..26eef61b56 100644 --- a/search/classes_9.js +++ b/search/classes_9.js @@ -1,10 +1,10 @@ var searchData= [ - ['job_2319',['Job',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html',1,'Tgstation.Server.Host.Models.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html',1,'Tgstation.Server.Api.Models.Internal.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html',1,'Tgstation.Server.Api.Models.Job']]], - ['jobcontroller_2320',['JobController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html',1,'Tgstation::Server::Host::Controllers']]], - ['jobexception_2321',['JobException',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html',1,'Tgstation::Server::Host::Jobs']]], - ['jobhandler_2322',['JobHandler',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html',1,'Tgstation::Server::Host::Jobs']]], - ['jobmanager_2323',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html',1,'Tgstation::Server::Host::Jobs']]], - ['jobsclient_2324',['JobsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html',1,'Tgstation::Server::Client::Components']]], - ['jsonconverter_2325',['JsonConverter',['../class_json_converter.html',1,'']]] + ['job_2375',['Job',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html',1,'Tgstation.Server.Host.Models.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html',1,'Tgstation.Server.Api.Models.Internal.Job'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html',1,'Tgstation.Server.Api.Models.Job']]], + ['jobcontroller_2376',['JobController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html',1,'Tgstation::Server::Host::Controllers']]], + ['jobexception_2377',['JobException',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html',1,'Tgstation::Server::Host::Jobs']]], + ['jobhandler_2378',['JobHandler',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html',1,'Tgstation::Server::Host::Jobs']]], + ['jobmanager_2379',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html',1,'Tgstation::Server::Host::Jobs']]], + ['jobsclient_2380',['JobsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html',1,'Tgstation::Server::Client::Components']]], + ['jsonconverter_2381',['JsonConverter',['../class_json_converter.html',1,'']]] ]; diff --git a/search/classes_a.html b/search/classes_a.html index dc28dfabdf..7e211e59a6 100644 --- a/search/classes_a.html +++ b/search/classes_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_a.js b/search/classes_a.js index 640819effc..466a324e1a 100644 --- a/search/classes_a.js +++ b/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['kekcommand_2326',['KekCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]] + ['kekcommand_2382',['KekCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]] ]; diff --git a/search/classes_b.html b/search/classes_b.html index df5f8486ca..bc9965fb95 100644 --- a/search/classes_b.html +++ b/search/classes_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_b.js b/search/classes_b.js index 8e7e14dc8c..07bbd5a33c 100644 --- a/search/classes_b.js +++ b/search/classes_b.js @@ -1,8 +1,8 @@ var searchData= [ - ['launchresult_2327',['LaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html',1,'Tgstation::Server::Host::Components::Session']]], - ['libgit2commands_2328',['LibGit2Commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['libgit2repositoryfactory_2329',['LibGit2RepositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html',1,'Tgstation::Server::Host::Components::Repository']]], - ['limits_2330',['Limits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html',1,'Tgstation::Server::Api::Models']]], - ['logfile_2331',['LogFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html',1,'Tgstation::Server::Api::Models']]] + ['launchresult_2383',['LaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html',1,'Tgstation::Server::Host::Components::Session']]], + ['libgit2commands_2384',['LibGit2Commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['libgit2repositoryfactory_2385',['LibGit2RepositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html',1,'Tgstation::Server::Host::Components::Repository']]], + ['limits_2386',['Limits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html',1,'Tgstation::Server::Api::Models']]], + ['logfile_2387',['LogFile',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/classes_c.html b/search/classes_c.html index 18e5b17d51..36410f9fb2 100644 --- a/search/classes_c.html +++ b/search/classes_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_c.js b/search/classes_c.js index 387d3c2c85..194696b6fb 100644 --- a/search/classes_c.js +++ b/search/classes_c.js @@ -1,49 +1,51 @@ var searchData= [ - ['message_2332',['Message',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['methodnotsupportedexception_2333',['MethodNotSupportedException',['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html',1,'Tgstation::Server::Client']]], - ['migration_2334',['Migration',['../class_migration.html',1,'']]], - ['modelsnapshot_2335',['ModelSnapshot',['../class_model_snapshot.html',1,'']]], - ['msaddchatbotreconnectioninterval_2336',['MSAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddcompilejobdmapiversion_2337',['MSAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddheartbeat_2338',['MSAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddjoberrorcodes_2339',['MSAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msaddminimumsecurity_2340',['MSAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msallownulldmapi_2341',['MSAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mscheckpointrebuild_2342',['MSCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msfixcascadingdelete_2343',['MSFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msfixrevinfoindex_2344',['MSFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msinitialcreate_2345',['MSInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mskilljsonsadddmapiversion_2346',['MSKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mslimitsonchat_2347',['MSLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msnullableandforeignkeycleanup_2348',['MSNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msreattachcompilejobrequired_2349',['MSReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msremoveexperimentalwatchdog_2350',['MSRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['msremovesoftcolumns_2351',['MSRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mstoggletestmergecomments_2352',['MSToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mstonsofvalidation_2353',['MSTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mstopictimeout_2354',['MSTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddchatbotreconnectioninterval_2355',['MYAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddcompilejobdmapiversion_2356',['MYAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddheartbeat_2357',['MYAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddjoberrorcodes_2358',['MYAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myaddminimumsecurity_2359',['MYAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myallownulldmapi_2360',['MYAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mycheckpointrebuild_2361',['MYCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myfixcascadingdelete_2362',['MYFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myfixforeignkey_2363',['MYFixForeignKey',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myfixrevinfoindex_2364',['MYFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myinitialcreate_2365',['MYInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mykilljsonsadddmapiversion_2366',['MYKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mylimitsonchat_2367',['MYLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mynullableandforeignkeycleanup_2368',['MYNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myreattachcompilejobrequired_2369',['MYReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myremoveexperimentalwatchdog_2370',['MYRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['myremovesoftcolumns_2371',['MYRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mysqldatabasecontext_2372',['MySqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['mysqldatabasecontextmodelsnapshot_2373',['MySqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mysqldesigntimedbcontextfactory_2374',['MySqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['mytoggletestmergecomments_2375',['MYToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mytonsofvalidation_2376',['MYTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['mytopictimeout_2377',['MYTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]] + ['message_2388',['Message',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['methodnotsupportedexception_2389',['MethodNotSupportedException',['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html',1,'Tgstation::Server::Client']]], + ['migration_2390',['Migration',['../class_migration.html',1,'']]], + ['modelsnapshot_2391',['ModelSnapshot',['../class_model_snapshot.html',1,'']]], + ['msaddchatbotreconnectioninterval_2392',['MSAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddcompilejobdmapiversion_2393',['MSAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msadddeploymentcolumns_2394',['MSAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddheartbeat_2395',['MSAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddjoberrorcodes_2396',['MSAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msaddminimumsecurity_2397',['MSAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msallownulldmapi_2398',['MSAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mscheckpointrebuild_2399',['MSCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msfixcascadingdelete_2400',['MSFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msfixrevinfoindex_2401',['MSFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msinitialcreate_2402',['MSInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mskilljsonsadddmapiversion_2403',['MSKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mslimitsonchat_2404',['MSLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msnullableandforeignkeycleanup_2405',['MSNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msreattachcompilejobrequired_2406',['MSReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msremoveexperimentalwatchdog_2407',['MSRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['msremovesoftcolumns_2408',['MSRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mstoggletestmergecomments_2409',['MSToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mstonsofvalidation_2410',['MSTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mstopictimeout_2411',['MSTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddchatbotreconnectioninterval_2412',['MYAddChatBotReconnectionInterval',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddcompilejobdmapiversion_2413',['MYAddCompileJobDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myadddeploymentcolumns_2414',['MYAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddheartbeat_2415',['MYAddHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddjoberrorcodes_2416',['MYAddJobErrorCodes',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myaddminimumsecurity_2417',['MYAddMinimumSecurity',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myallownulldmapi_2418',['MYAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mycheckpointrebuild_2419',['MYCheckpointRebuild',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myfixcascadingdelete_2420',['MYFixCascadingDelete',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myfixforeignkey_2421',['MYFixForeignKey',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myfixrevinfoindex_2422',['MYFixRevInfoIndex',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myinitialcreate_2423',['MYInitialCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mykilljsonsadddmapiversion_2424',['MYKillJsonsAddDMApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mylimitsonchat_2425',['MYLimitsOnChat',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mynullableandforeignkeycleanup_2426',['MYNullableAndForeignKeyCleanup',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myreattachcompilejobrequired_2427',['MYReattachCompileJobRequired',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myremoveexperimentalwatchdog_2428',['MYRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['myremovesoftcolumns_2429',['MYRemoveSoftColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mysqldatabasecontext_2430',['MySqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['mysqldatabasecontextmodelsnapshot_2431',['MySqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mysqldesigntimedbcontextfactory_2432',['MySqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['mytoggletestmergecomments_2433',['MYToggleTestmergeComments',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mytonsofvalidation_2434',['MYTonsOfValidation',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['mytopictimeout_2435',['MYTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]] ]; diff --git a/search/classes_d.html b/search/classes_d.html index e548fb3a83..ad5763d739 100644 --- a/search/classes_d.html +++ b/search/classes_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_d.js b/search/classes_d.js index c6e8cd7d48..52a0031eb0 100644 --- a/search/classes_d.js +++ b/search/classes_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['nativemethods_2378',['NativeMethods',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html',1,'Tgstation::Server::Host']]] + ['nativemethods_2436',['NativeMethods',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html',1,'Tgstation::Server::Host']]] ]; diff --git a/search/classes_e.html b/search/classes_e.html index 1c4ddf9e4e..b27ebc1e0a 100644 --- a/search/classes_e.html +++ b/search/classes_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_e.js b/search/classes_e.js index 7c438fc4dc..11781ca841 100644 --- a/search/classes_e.js +++ b/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['openapienumvarnamesextension_2379',['OpenApiEnumVarNamesExtension',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html',1,'Tgstation::Server::Host::Core']]] + ['openapienumvarnamesextension_2437',['OpenApiEnumVarNamesExtension',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html',1,'Tgstation::Server::Host::Core']]] ]; diff --git a/search/classes_f.html b/search/classes_f.html index fc6329168e..7cea637988 100644 --- a/search/classes_f.html +++ b/search/classes_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/classes_f.js b/search/classes_f.js index 7f643f6016..93c50732c9 100644 --- a/search/classes_f.js +++ b/search/classes_f.js @@ -1,28 +1,29 @@ var searchData= [ - ['pgallownulldmapi_2380',['PGAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['pgcreate_2381',['PGCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['pgremoveexperimentalwatchdog_2382',['PGRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['pgtopictimeout_2383',['PGTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['platformidentifier_2384',['PlatformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html',1,'Tgstation::Server::Host::System']]], - ['posixbyondinstaller_2385',['PosixByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], - ['posixnetworkpromptreaper_2386',['PosixNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], - ['posixpostwritehandler_2387',['PosixPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], - ['posixprocessfeatures_2388',['PosixProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html',1,'Tgstation::Server::Host::System']]], - ['posixsymlinkfactory_2389',['PosixSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], - ['posixsystemidentity_2390',['PosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html',1,'Tgstation::Server::Host::Security']]], - ['posixsystemidentityfactory_2391',['PosixSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], - ['posixwatchdog_2392',['PosixWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['posixwatchdogfactory_2393',['PosixWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['postgressqldatabasecontext_2394',['PostgresSqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html',1,'Tgstation::Server::Host::Database']]], - ['postgressqldatabasecontextmodelsnapshot_2395',['PostgresSqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], - ['postgressqldesigntimedbcontextfactory_2396',['PostgresSqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], - ['postsetupservices_2397',['PostSetupServices',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html',1,'Tgstation::Server::Host::Setup']]], - ['process_2398',['Process',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html',1,'Tgstation::Server::Host::System']]], - ['processexecutor_2399',['ProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html',1,'Tgstation::Server::Host::System']]], - ['program_2400',['Program',['../class_tgstation_1_1_server_1_1_host_1_1_console_1_1_program.html',1,'Tgstation.Server.Host.Console.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html',1,'Tgstation.Server.Host.Service.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_program.html',1,'Tgstation.Server.Host.Program']]], - ['programshutdowntokensource_2401',['ProgramShutdownTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html',1,'Tgstation::Server::Host::System']]], - ['provider_2402',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['providerfactory_2403',['ProviderFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], - ['pullrequestscommand_2404',['PullRequestsCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]] + ['pgadddeploymentcolumns_2438',['PGAddDeploymentColumns',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgallownulldmapi_2439',['PGAllowNullDMApi',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgcreate_2440',['PGCreate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgremoveexperimentalwatchdog_2441',['PGRemoveExperimentalWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['pgtopictimeout_2442',['PGTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['platformidentifier_2443',['PlatformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html',1,'Tgstation::Server::Host::System']]], + ['posixbyondinstaller_2444',['PosixByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html',1,'Tgstation::Server::Host::Components::Byond']]], + ['posixnetworkpromptreaper_2445',['PosixNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html',1,'Tgstation::Server::Host::System']]], + ['posixpostwritehandler_2446',['PosixPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html',1,'Tgstation::Server::Host::IO']]], + ['posixprocessfeatures_2447',['PosixProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html',1,'Tgstation::Server::Host::System']]], + ['posixsymlinkfactory_2448',['PosixSymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html',1,'Tgstation::Server::Host::IO']]], + ['posixsystemidentity_2449',['PosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html',1,'Tgstation::Server::Host::Security']]], + ['posixsystemidentityfactory_2450',['PosixSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html',1,'Tgstation::Server::Host::Security']]], + ['posixwatchdog_2451',['PosixWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['posixwatchdogfactory_2452',['PosixWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['postgressqldatabasecontext_2453',['PostgresSqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html',1,'Tgstation::Server::Host::Database']]], + ['postgressqldatabasecontextmodelsnapshot_2454',['PostgresSqlDatabaseContextModelSnapshot',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html',1,'Tgstation::Server::Host::Database::Migrations']]], + ['postgressqldesigntimedbcontextfactory_2455',['PostgresSqlDesignTimeDbContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html',1,'Tgstation::Server::Host::Database::Design']]], + ['postsetupservices_2456',['PostSetupServices',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html',1,'Tgstation::Server::Host::Setup']]], + ['process_2457',['Process',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html',1,'Tgstation::Server::Host::System']]], + ['processexecutor_2458',['ProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html',1,'Tgstation::Server::Host::System']]], + ['program_2459',['Program',['../class_tgstation_1_1_server_1_1_host_1_1_program.html',1,'Tgstation.Server.Host.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html',1,'Tgstation.Server.Host.Service.Program'],['../class_tgstation_1_1_server_1_1_host_1_1_console_1_1_program.html',1,'Tgstation.Server.Host.Console.Program']]], + ['programshutdowntokensource_2460',['ProgramShutdownTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html',1,'Tgstation::Server::Host::System']]], + ['provider_2461',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['providerfactory_2462',['ProviderFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html',1,'Tgstation::Server::Host::Components::Chat::Providers']]], + ['pullrequestscommand_2463',['PullRequestsCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html',1,'Tgstation::Server::Host::Components::Chat::Commands']]] ]; diff --git a/search/close.png b/search/close.png deleted file mode 100644 index 9342d3dfee..0000000000 Binary files a/search/close.png and /dev/null differ diff --git a/search/close.svg b/search/close.svg new file mode 100644 index 0000000000..a933eea1a2 --- /dev/null +++ b/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/search/enums_0.html b/search/enums_0.html index e99c4898c7..8e6e29f84d 100644 --- a/search/enums_0.html +++ b/search/enums_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_0.js b/search/enums_0.js index d133e76ee0..a96fa59a7b 100644 --- a/search/enums_0.js +++ b/search/enums_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['administrationrights_3939',['AdministrationRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21',1,'Tgstation::Server::Api::Rights']]], - ['apivalidationstatus_3940',['ApiValidationStatus',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3',1,'Tgstation::Server::Host::Components::Session']]] + ['administrationrights_4036',['AdministrationRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21',1,'Tgstation::Server::Api::Rights']]], + ['apivalidationstatus_4037',['ApiValidationStatus',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3',1,'Tgstation::Server::Host::Components::Session']]] ]; diff --git a/search/enums_1.html b/search/enums_1.html index 78971b5ae3..e05342f129 100644 --- a/search/enums_1.html +++ b/search/enums_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_1.js b/search/enums_1.js index af3b4d0e81..6b0ea4157a 100644 --- a/search/enums_1.js +++ b/search/enums_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['bridgecommandtype_3941',['BridgeCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91d',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['byondrights_3942',['ByondRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9',1,'Tgstation::Server::Api::Rights']]] + ['bridgecommandtype_4038',['BridgeCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91d',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['byondrights_4039',['ByondRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9',1,'Tgstation::Server::Api::Rights']]] ]; diff --git a/search/enums_2.html b/search/enums_2.html index 62198f9ff5..a5efcf3bb1 100644 --- a/search/enums_2.html +++ b/search/enums_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_2.js b/search/enums_2.js index 1aea433209..3a5f0c9849 100644 --- a/search/enums_2.js +++ b/search/enums_2.js @@ -1,8 +1,8 @@ var searchData= [ - ['chatbotrights_3943',['ChatBotRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72',1,'Tgstation::Server::Api::Rights']]], - ['chatprovider_3944',['ChatProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cc',1,'Tgstation::Server::Api::Models']]], - ['configurationrights_3945',['ConfigurationRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0c',1,'Tgstation::Server::Api::Rights']]], - ['configurationtype_3946',['ConfigurationType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440',1,'Tgstation::Server::Api::Models']]], - ['createsymboliclinkflags_3947',['CreateSymbolicLinkFlags',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556',1,'Tgstation::Server::Host::NativeMethods']]] + ['chatbotrights_4040',['ChatBotRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72',1,'Tgstation::Server::Api::Rights']]], + ['chatprovider_4041',['ChatProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cc',1,'Tgstation::Server::Api::Models']]], + ['configurationrights_4042',['ConfigurationRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0c',1,'Tgstation::Server::Api::Rights']]], + ['configurationtype_4043',['ConfigurationType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440',1,'Tgstation::Server::Api::Models']]], + ['createsymboliclinkflags_4044',['CreateSymbolicLinkFlags',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556',1,'Tgstation::Server::Host::NativeMethods']]] ]; diff --git a/search/enums_3.html b/search/enums_3.html index 220c6a1016..38cbfefbf6 100644 --- a/search/enums_3.html +++ b/search/enums_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_3.js b/search/enums_3.js index 5b20150b7e..c0a3652215 100644 --- a/search/enums_3.js +++ b/search/enums_3.js @@ -1,7 +1,8 @@ var searchData= [ - ['databasetype_3948',['DatabaseType',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617c',1,'Tgstation::Server::Host::Configuration']]], - ['dreamdaemonrights_3949',['DreamDaemonRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49',1,'Tgstation::Server::Api::Rights']]], - ['dreamdaemonsecurity_3950',['DreamDaemonSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5',1,'Tgstation::Server::Api::Models']]], - ['dreammakerrights_3951',['DreamMakerRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5d',1,'Tgstation::Server::Api::Rights']]] + ['databasetype_4045',['DatabaseType',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617c',1,'Tgstation::Server::Host::Configuration']]], + ['discorddmoutputdisplaytype_4046',['DiscordDMOutputDisplayType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonrights_4047',['DreamDaemonRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49',1,'Tgstation::Server::Api::Rights']]], + ['dreamdaemonsecurity_4048',['DreamDaemonSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5',1,'Tgstation::Server::Api::Models']]], + ['dreammakerrights_4049',['DreamMakerRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5d',1,'Tgstation::Server::Api::Rights']]] ]; diff --git a/search/enums_4.html b/search/enums_4.html index f717c6d743..89d70b31c7 100644 --- a/search/enums_4.html +++ b/search/enums_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_4.js b/search/enums_4.js index 1b04e889e6..46cd6ea8b8 100644 --- a/search/enums_4.js +++ b/search/enums_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['errorcode_3952',['ErrorCode',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8',1,'Tgstation::Server::Api::Models']]], - ['eventtype_3953',['EventType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7',1,'Tgstation::Server::Host::Components::Events']]] + ['errorcode_4050',['ErrorCode',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8',1,'Tgstation::Server::Api::Models']]], + ['eventtype_4051',['EventType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7',1,'Tgstation::Server::Host::Components::Events']]] ]; diff --git a/search/enums_5.html b/search/enums_5.html index 7ac7c720d4..477c2c3243 100644 --- a/search/enums_5.html +++ b/search/enums_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_5.js b/search/enums_5.js index 3da80a28cf..71e45b7009 100644 --- a/search/enums_5.js +++ b/search/enums_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['headertypes_3954',['HeaderTypes',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5ef',1,'Tgstation::Server::Api']]] + ['headertypes_4052',['HeaderTypes',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5ef',1,'Tgstation::Server::Api']]] ]; diff --git a/search/enums_6.html b/search/enums_6.html index e03fe93eeb..910aa67b04 100644 --- a/search/enums_6.html +++ b/search/enums_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_6.js b/search/enums_6.js index 54250454ff..6493c482e4 100644 --- a/search/enums_6.js +++ b/search/enums_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['instancemanagerrights_3955',['InstanceManagerRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79',1,'Tgstation::Server::Api::Rights']]], - ['instanceuserrights_3956',['InstanceUserRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601',1,'Tgstation::Server::Api::Rights']]], - ['ircpasswordtype_3957',['IrcPasswordType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545b',1,'Tgstation::Server::Api::Models']]] + ['instancemanagerrights_4053',['InstanceManagerRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79',1,'Tgstation::Server::Api::Rights']]], + ['instanceuserrights_4054',['InstanceUserRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601',1,'Tgstation::Server::Api::Rights']]], + ['ircpasswordtype_4055',['IrcPasswordType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545b',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enums_7.html b/search/enums_7.html index af70331d40..d149d93c75 100644 --- a/search/enums_7.html +++ b/search/enums_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_7.js b/search/enums_7.js index e8c5dbfd92..93c2d14a1f 100644 --- a/search/enums_7.js +++ b/search/enums_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['minidumptype_3958',['MiniDumpType',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2',1,'Tgstation::Server::Host::NativeMethods']]], - ['monitoraction_3959',['MonitorAction',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['monitoractivationreason_3960',['MonitorActivationReason',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9',1,'Tgstation::Server::Host::Components::Watchdog']]] + ['minidumptype_4056',['MiniDumpType',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2',1,'Tgstation::Server::Host::NativeMethods']]], + ['monitoraction_4057',['MonitorAction',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['monitoractivationreason_4058',['MonitorActivationReason',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9',1,'Tgstation::Server::Host::Components::Watchdog']]] ]; diff --git a/search/enums_8.html b/search/enums_8.html index d83359cf33..9274ac1358 100644 --- a/search/enums_8.html +++ b/search/enums_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_8.js b/search/enums_8.js index 9a3197cda6..76d988a78a 100644 --- a/search/enums_8.js +++ b/search/enums_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['rebootstate_3961',['RebootState',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2',1,'Tgstation::Server::Host::Components::Session']]], - ['repositoryrights_3962',['RepositoryRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39',1,'Tgstation::Server::Api::Rights']]], - ['rightstype_3963',['RightsType',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20',1,'Tgstation::Server::Api::Rights']]] + ['rebootstate_4059',['RebootState',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2',1,'Tgstation::Server::Host::Components::Session']]], + ['repositoryrights_4060',['RepositoryRights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39',1,'Tgstation::Server::Api::Rights']]], + ['rightstype_4061',['RightsType',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20',1,'Tgstation::Server::Api::Rights']]] ]; diff --git a/search/enums_9.html b/search/enums_9.html index e5b2d9949e..cddd974373 100644 --- a/search/enums_9.html +++ b/search/enums_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_9.js b/search/enums_9.js index cee60b6c1e..7667b2b89b 100644 --- a/search/enums_9.js +++ b/search/enums_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['setupwizardmode_3964',['SetupWizardMode',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1',1,'Tgstation::Server::Host::Configuration']]] + ['setupwizardmode_4062',['SetupWizardMode',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1',1,'Tgstation::Server::Host::Configuration']]] ]; diff --git a/search/enums_a.html b/search/enums_a.html index 3fd0c9fe8f..9205938457 100644 --- a/search/enums_a.html +++ b/search/enums_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_a.js b/search/enums_a.js index 26262d98c3..1e208a9367 100644 --- a/search/enums_a.js +++ b/search/enums_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['threadaccess_3965',['ThreadAccess',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52a',1,'Tgstation::Server::Host::NativeMethods']]], - ['topiccommandtype_3966',['TopicCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8',1,'Tgstation::Server::Host::Components::Interop::Topic']]] + ['threadaccess_4063',['ThreadAccess',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52a',1,'Tgstation::Server::Host::NativeMethods']]], + ['topiccommandtype_4064',['TopicCommandType',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8',1,'Tgstation::Server::Host::Components::Interop::Topic']]] ]; diff --git a/search/enums_b.html b/search/enums_b.html index e654b47b5c..5c9bcada1f 100644 --- a/search/enums_b.html +++ b/search/enums_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/enums_b.js b/search/enums_b.js index e6d994bd99..87eea08d37 100644 --- a/search/enums_b.js +++ b/search/enums_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['watchdogstatus_3967',['WatchdogStatus',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683',1,'Tgstation::Server::Api::Models']]] + ['watchdogstatus_4065',['WatchdogStatus',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_0.html b/search/enumvalues_0.html index f740569870..86c25b5fba 100644 --- a/search/enumvalues_0.html +++ b/search/enumvalues_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js index 63b4c34c5b..2b79b60dc0 100644 --- a/search/enumvalues_0.js +++ b/search/enumvalues_0.js @@ -1,13 +1,14 @@ var searchData= [ - ['accept_3968',['Accept',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efac4408d335012a56ff58937d78050efad',1,'Tgstation::Server::Api']]], - ['activelaunchparametersupdated_3969',['ActiveLaunchParametersUpdated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a5787c2f334905254452c2c362bf5874b',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['activeservercrashed_3970',['ActiveServerCrashed',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab92e148d2dd1c50669d594966a5ec6df',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['activeserverrebooted_3971',['ActiveServerRebooted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab97165994c837a20e96ed22267cb1a86',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['administration_3972',['Administration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7258e7251413465e0a3eb58094430bde',1,'Tgstation::Server::Api::Rights']]], - ['allowunprivilegedcreate_3973',['AllowUnprivilegedCreate',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556aa5039b48592e4eb0e0bcc4bebf94bdf8',1,'Tgstation::Server::Host::NativeMethods']]], - ['api_3974',['Api',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa72664dc0959f3b0c04891f8c7046a9f3',1,'Tgstation::Server::Api']]], - ['apimismatch_3975',['ApiMismatch',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a034045c1b65adb43b709ea2f4e573951',1,'Tgstation::Server::Api::Models']]], - ['authorization_3976',['Authorization',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa9cd8a2455b1839ff98ef70c05b9b5983',1,'Tgstation::Server::Api']]], - ['autodetect_3977',['Autodetect',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1aa0f56afccfad0701bc1076f838655233',1,'Tgstation::Server::Host::Configuration']]] + ['accept_4066',['Accept',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efac4408d335012a56ff58937d78050efad',1,'Tgstation::Server::Api']]], + ['activelaunchparametersupdated_4067',['ActiveLaunchParametersUpdated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a5787c2f334905254452c2c362bf5874b',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['activeservercrashed_4068',['ActiveServerCrashed',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab92e148d2dd1c50669d594966a5ec6df',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['activeserverrebooted_4069',['ActiveServerRebooted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9ab97165994c837a20e96ed22267cb1a86',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['administration_4070',['Administration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7258e7251413465e0a3eb58094430bde',1,'Tgstation::Server::Api::Rights']]], + ['allowunprivilegedcreate_4071',['AllowUnprivilegedCreate',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556aa5039b48592e4eb0e0bcc4bebf94bdf8',1,'Tgstation::Server::Host::NativeMethods']]], + ['always_4072',['Always',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221a68eec46437c384d8dad18d5464ebc35c',1,'Tgstation::Server::Api::Models']]], + ['api_4073',['Api',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa72664dc0959f3b0c04891f8c7046a9f3',1,'Tgstation::Server::Api']]], + ['apimismatch_4074',['ApiMismatch',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a034045c1b65adb43b709ea2f4e573951',1,'Tgstation::Server::Api::Models']]], + ['authorization_4075',['Authorization',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa9cd8a2455b1839ff98ef70c05b9b5983',1,'Tgstation::Server::Api']]], + ['autodetect_4076',['Autodetect',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1aa0f56afccfad0701bc1076f838655233',1,'Tgstation::Server::Host::Configuration']]] ]; diff --git a/search/enumvalues_1.html b/search/enumvalues_1.html index 043916c22d..1864288035 100644 --- a/search/enumvalues_1.html +++ b/search/enumvalues_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_1.js b/search/enumvalues_1.js index 22df24df64..3fa01661d9 100644 --- a/search/enumvalues_1.js +++ b/search/enumvalues_1.js @@ -1,14 +1,15 @@ var searchData= [ - ['badheaders_3978',['BadHeaders',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6433e3bb5e548a24d25deabfdefe72b2',1,'Tgstation::Server::Api::Models']]], - ['badvalidationrequest_3979',['BadValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a18d2471b9e1234b2d15002cbafa2adc2',1,'Tgstation::Server::Host::Components::Session']]], - ['break_3980',['Break',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812ae4c38d6d45baf080943d323dd51a2ce8',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['byond_3981',['Byond',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a2f4b44b678b37bcd3239cd83e64d0eb0',1,'Tgstation::Server::Api::Rights']]], - ['byondactiveversionchange_3982',['ByondActiveVersionChange',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a16551fe43323cca07bfc777afadbe5a1',1,'Tgstation::Server::Host::Components::Events']]], - ['byonddirectxinstallfail_3983',['ByondDirectXInstallFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9b2ecbcea908e6143901a21e7a1119cc',1,'Tgstation::Server::Api::Models']]], - ['byonddownloadfail_3984',['ByondDownloadFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a80f5b2695c2686d905a8945a15d1e160',1,'Tgstation::Server::Api::Models']]], - ['byondinstallfail_3985',['ByondInstallFail',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aa63abc793fbdf14cf7caf28a4812e682',1,'Tgstation::Server::Host::Components::Events']]], - ['byondinstallstart_3986',['ByondInstallStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a93c1e81c6ae4a9cc3637be6b044211e9',1,'Tgstation::Server::Host::Components::Events']]], - ['byondnonexistentcustomversion_3987',['ByondNonExistentCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefac06c6376519b5887300325a6fe5ec',1,'Tgstation::Server::Api::Models']]], - ['byondnoversionsinstalled_3988',['ByondNoVersionsInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae2984e03276657bdd906f1845d8035fa',1,'Tgstation::Server::Api::Models']]] + ['badheaders_4077',['BadHeaders',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6433e3bb5e548a24d25deabfdefe72b2',1,'Tgstation::Server::Api::Models']]], + ['badvalidationrequest_4078',['BadValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a18d2471b9e1234b2d15002cbafa2adc2',1,'Tgstation::Server::Host::Components::Session']]], + ['break_4079',['Break',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812ae4c38d6d45baf080943d323dd51a2ce8',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['byond_4080',['Byond',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a2f4b44b678b37bcd3239cd83e64d0eb0',1,'Tgstation::Server::Api::Rights']]], + ['byondactiveversionchange_4081',['ByondActiveVersionChange',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a16551fe43323cca07bfc777afadbe5a1',1,'Tgstation::Server::Host::Components::Events']]], + ['byonddirectxinstallfail_4082',['ByondDirectXInstallFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9b2ecbcea908e6143901a21e7a1119cc',1,'Tgstation::Server::Api::Models']]], + ['byonddownloadfail_4083',['ByondDownloadFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a80f5b2695c2686d905a8945a15d1e160',1,'Tgstation::Server::Api::Models']]], + ['byonddreamdaemonfirewallfail_4084',['ByondDreamDaemonFirewallFail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a52544d5ffb4da020f83e998f17c8a74d',1,'Tgstation::Server::Api::Models']]], + ['byondinstallfail_4085',['ByondInstallFail',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aa63abc793fbdf14cf7caf28a4812e682',1,'Tgstation::Server::Host::Components::Events']]], + ['byondinstallstart_4086',['ByondInstallStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a93c1e81c6ae4a9cc3637be6b044211e9',1,'Tgstation::Server::Host::Components::Events']]], + ['byondnonexistentcustomversion_4087',['ByondNonExistentCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefac06c6376519b5887300325a6fe5ec',1,'Tgstation::Server::Api::Models']]], + ['byondnoversionsinstalled_4088',['ByondNoVersionsInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae2984e03276657bdd906f1845d8035fa',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_10.html b/search/enumvalues_10.html index dab7908f3e..d639b6836a 100644 --- a/search/enumvalues_10.html +++ b/search/enumvalues_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_10.js b/search/enumvalues_10.js index cf8e4bd63b..0cec420c14 100644 --- a/search/enumvalues_10.js +++ b/search/enumvalues_10.js @@ -1,48 +1,48 @@ var searchData= [ - ['read_4104',['Read',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()']]], - ['readactive_4105',['ReadActive',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a3326023a4750bdbe33075fdad47d2a8d',1,'Tgstation::Server::Api::Rights']]], - ['readconnectionstring_4106',['ReadConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a1696551e4b826946427650d66b0a0c18',1,'Tgstation::Server::Api::Rights']]], - ['readmetadata_4107',['ReadMetadata',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6ac3e4ef171de3175ef0763a390eea05',1,'Tgstation::Server::Api::Rights']]], - ['readrevision_4108',['ReadRevision',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae49f7f612746455ed28b92600f4d973c',1,'Tgstation::Server::Api::Rights']]], - ['readusers_4109',['ReadUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()']]], - ['reboot_4110',['Reboot',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da1de72c4fc6d69a741fff1cbb7cdb9e90',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['relocate_4111',['Relocate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa8642eb657c3ab24f0a52b2ef8115d3f',1,'Tgstation::Server::Api::Rights']]], - ['rename_4112',['Rename',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a904a8304056d77e4547744781b7ceb50',1,'Tgstation::Server::Api::Rights']]], - ['repobusy_4113',['RepoBusy',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5977ae7b6edc818e0412f6c7846f2401',1,'Tgstation::Server::Api::Models']]], - ['repocannotauthenticate_4114',['RepoCannotAuthenticate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aebbb3dd24e1c4ada3a50e92e2dec4dfb',1,'Tgstation::Server::Api::Models']]], - ['repocantchangeorigin_4115',['RepoCantChangeOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8175ed8fec68e26692e684b17db8548c',1,'Tgstation::Server::Api::Models']]], - ['repocheckout_4116',['RepoCheckout',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab0586bbc30b26132d29bbc4a69bd0da2',1,'Tgstation::Server::Host::Components::Events']]], - ['repocloning_4117',['RepoCloning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9755914d72338e6ce57fb16e560209c0',1,'Tgstation::Server::Api::Models']]], - ['repocredentialsrequired_4118',['RepoCredentialsRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a94b932f9d2602bee2e67aed4ba38d0a6',1,'Tgstation::Server::Api::Models']]], - ['repoduplicatetestmerge_4119',['RepoDuplicateTestMerge',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a561351a05b0b60c943b21f38f23bd553',1,'Tgstation::Server::Api::Models']]], - ['repoexists_4120',['RepoExists',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a800c56a2841cf737b9c883507f4884f4',1,'Tgstation::Server::Api::Models']]], - ['repofetch_4121',['RepoFetch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab482b626f1064d696e63b2c62430cdf8',1,'Tgstation::Server::Host::Components::Events']]], - ['repomergeconflict_4122',['RepoMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Api.Models.RepoMergeConflict()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Host.Components.Events.RepoMergeConflict()']]], - ['repomergepullrequest_4123',['RepoMergePullRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7afc010e2f845e7e0e6b7507a47c17363b',1,'Tgstation::Server::Host::Components::Events']]], - ['repomismatchshaandreference_4124',['RepoMismatchShaAndReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a50003a969ded946db692896a4a5ec1c4',1,'Tgstation::Server::Api::Models']]], - ['repomismatchshaandupdate_4125',['RepoMismatchShaAndUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab97fe4295c7ba65db3c6ef4eb3c9c2bb',1,'Tgstation::Server::Api::Models']]], - ['repomismatchuserandaccesstoken_4126',['RepoMismatchUserAndAccessToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aafc428eb4bcd3a2488e41337c34ee233',1,'Tgstation::Server::Api::Models']]], - ['repomissing_4127',['RepoMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a147a10a81d501e59037c13e6c168f56c',1,'Tgstation::Server::Api::Models']]], - ['repomissingorigin_4128',['RepoMissingOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf3899d083ff7fb486eafce336a25148',1,'Tgstation::Server::Api::Models']]], - ['repopresynchronize_4129',['RepoPreSynchronize',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a28b74db9a0a4619b28a21c0573fbc0d8',1,'Tgstation::Server::Host::Components::Events']]], - ['reporeferencenottracking_4130',['RepoReferenceNotTracking',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6eaf9129eb60ec6c4ec0dff641b533ad',1,'Tgstation::Server::Api::Models']]], - ['reporeferencerequired_4131',['RepoReferenceRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf8ed188c1807a49b9ea5cdb5ceb12c9',1,'Tgstation::Server::Api::Models']]], - ['reporesetorigin_4132',['RepoResetOrigin',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a2d081595fabf6ba0facdc9d1fb7921e6',1,'Tgstation::Server::Host::Components::Events']]], - ['repository_4133',['Repository',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a33fcf2b3ec4686d9cd06051c726d0ba2',1,'Tgstation::Server::Api::Rights']]], - ['reposwappedshaorreference_4134',['RepoSwappedShaOrReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abe142fe273ff3a9ab873a266266e937f',1,'Tgstation::Server::Api::Models']]], - ['repotestmergeconflict_4135',['RepoTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a603c0a3f0177b41effb42dd4a932021b',1,'Tgstation::Server::Api::Models']]], - ['repotestmergeinvalidremote_4136',['RepoTestMergeInvalidRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac456aa0688e3c635d73c72b021de12bf',1,'Tgstation::Server::Api::Models']]], - ['repounsupportedtestmergeremote_4137',['RepoUnsupportedTestMergeRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9446652139c040e0af3351104d1ec913',1,'Tgstation::Server::Api::Models']]], - ['repowhitespacecommitteremail_4138',['RepoWhitespaceCommitterEmail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8b7cce03b4c7425e09ac4534a51b95b0',1,'Tgstation::Server::Api::Models']]], - ['repowhitespacecommittername_4139',['RepoWhitespaceCommitterName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5aac4df009b9b8c791899cd52c320593',1,'Tgstation::Server::Api::Models']]], - ['requiresposixsystemidentity_4140',['RequiresPosixSystemIdentity',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aab217c3aea820156b624733a34ab3c48',1,'Tgstation::Server::Api::Models']]], - ['requiressafe_4141',['RequiresSafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3aa664657b234543e1fc6702e00b784325',1,'Tgstation::Server::Host::Components::Session']]], - ['requirestrusted_4142',['RequiresTrusted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2cb40d93bedc4fe88f33d0fd49c87563',1,'Tgstation::Server::Host::Components::Session']]], - ['requiresultrasafe_4143',['RequiresUltrasafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a6125188ea908d44694f8cdff0eef43f4',1,'Tgstation::Server::Host::Components::Session']]], - ['resourceneverpresent_4144',['ResourceNeverPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf653fb5de0c10b302e6a44d01265fe8',1,'Tgstation::Server::Api::Models']]], - ['resourcenotpresent_4145',['ResourceNotPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac0333e5b9060e7ec5e504858490db907',1,'Tgstation::Server::Api::Models']]], - ['restart_4146',['Restart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Api.Rights.Restart()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Session.Restart()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Watchdog.Restart()']]], - ['restarthost_4147',['RestartHost',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a4ebebe34711c9ddafa1eff5faa9a377e',1,'Tgstation::Server::Api::Rights']]], - ['restoring_4148',['Restoring',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683ad6a7dfc0a40da7ac6674d7c9888fa5e8',1,'Tgstation::Server::Api::Models']]] + ['read_4205',['Read',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7a1a5f3e79fdc91edf2f5ead9d66abb4',1,'Tgstation.Server.Api.Rights.Read()']]], + ['readactive_4206',['ReadActive',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a3326023a4750bdbe33075fdad47d2a8d',1,'Tgstation::Server::Api::Rights']]], + ['readconnectionstring_4207',['ReadConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a1696551e4b826946427650d66b0a0c18',1,'Tgstation::Server::Api::Rights']]], + ['readmetadata_4208',['ReadMetadata',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6ac3e4ef171de3175ef0763a390eea05',1,'Tgstation::Server::Api::Rights']]], + ['readrevision_4209',['ReadRevision',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae49f7f612746455ed28b92600f4d973c',1,'Tgstation::Server::Api::Rights']]], + ['readusers_4210',['ReadUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a1a27a371ba5487ede2e91059df7cab27',1,'Tgstation.Server.Api.Rights.ReadUsers()']]], + ['reboot_4211',['Reboot',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da1de72c4fc6d69a741fff1cbb7cdb9e90',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['relocate_4212',['Relocate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa8642eb657c3ab24f0a52b2ef8115d3f',1,'Tgstation::Server::Api::Rights']]], + ['rename_4213',['Rename',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a904a8304056d77e4547744781b7ceb50',1,'Tgstation::Server::Api::Rights']]], + ['repobusy_4214',['RepoBusy',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5977ae7b6edc818e0412f6c7846f2401',1,'Tgstation::Server::Api::Models']]], + ['repocannotauthenticate_4215',['RepoCannotAuthenticate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aebbb3dd24e1c4ada3a50e92e2dec4dfb',1,'Tgstation::Server::Api::Models']]], + ['repocantchangeorigin_4216',['RepoCantChangeOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8175ed8fec68e26692e684b17db8548c',1,'Tgstation::Server::Api::Models']]], + ['repocheckout_4217',['RepoCheckout',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab0586bbc30b26132d29bbc4a69bd0da2',1,'Tgstation::Server::Host::Components::Events']]], + ['repocloning_4218',['RepoCloning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9755914d72338e6ce57fb16e560209c0',1,'Tgstation::Server::Api::Models']]], + ['repocredentialsrequired_4219',['RepoCredentialsRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a94b932f9d2602bee2e67aed4ba38d0a6',1,'Tgstation::Server::Api::Models']]], + ['repoduplicatetestmerge_4220',['RepoDuplicateTestMerge',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a561351a05b0b60c943b21f38f23bd553',1,'Tgstation::Server::Api::Models']]], + ['repoexists_4221',['RepoExists',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a800c56a2841cf737b9c883507f4884f4',1,'Tgstation::Server::Api::Models']]], + ['repofetch_4222',['RepoFetch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7ab482b626f1064d696e63b2c62430cdf8',1,'Tgstation::Server::Host::Components::Events']]], + ['repomergeconflict_4223',['RepoMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Api.Models.RepoMergeConflict()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a7f72fdbb58d503c2a30b23a72cd1134c',1,'Tgstation.Server.Host.Components.Events.RepoMergeConflict()']]], + ['repomergepullrequest_4224',['RepoMergePullRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7afc010e2f845e7e0e6b7507a47c17363b',1,'Tgstation::Server::Host::Components::Events']]], + ['repomismatchshaandreference_4225',['RepoMismatchShaAndReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a50003a969ded946db692896a4a5ec1c4',1,'Tgstation::Server::Api::Models']]], + ['repomismatchshaandupdate_4226',['RepoMismatchShaAndUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab97fe4295c7ba65db3c6ef4eb3c9c2bb',1,'Tgstation::Server::Api::Models']]], + ['repomismatchuserandaccesstoken_4227',['RepoMismatchUserAndAccessToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aafc428eb4bcd3a2488e41337c34ee233',1,'Tgstation::Server::Api::Models']]], + ['repomissing_4228',['RepoMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a147a10a81d501e59037c13e6c168f56c',1,'Tgstation::Server::Api::Models']]], + ['repomissingorigin_4229',['RepoMissingOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf3899d083ff7fb486eafce336a25148',1,'Tgstation::Server::Api::Models']]], + ['repopresynchronize_4230',['RepoPreSynchronize',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a28b74db9a0a4619b28a21c0573fbc0d8',1,'Tgstation::Server::Host::Components::Events']]], + ['reporeferencenottracking_4231',['RepoReferenceNotTracking',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a6eaf9129eb60ec6c4ec0dff641b533ad',1,'Tgstation::Server::Api::Models']]], + ['reporeferencerequired_4232',['RepoReferenceRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf8ed188c1807a49b9ea5cdb5ceb12c9',1,'Tgstation::Server::Api::Models']]], + ['reporesetorigin_4233',['RepoResetOrigin',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a2d081595fabf6ba0facdc9d1fb7921e6',1,'Tgstation::Server::Host::Components::Events']]], + ['repository_4234',['Repository',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a33fcf2b3ec4686d9cd06051c726d0ba2',1,'Tgstation::Server::Api::Rights']]], + ['reposwappedshaorreference_4235',['RepoSwappedShaOrReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abe142fe273ff3a9ab873a266266e937f',1,'Tgstation::Server::Api::Models']]], + ['repotestmergeconflict_4236',['RepoTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a603c0a3f0177b41effb42dd4a932021b',1,'Tgstation::Server::Api::Models']]], + ['repotestmergeinvalidremote_4237',['RepoTestMergeInvalidRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac456aa0688e3c635d73c72b021de12bf',1,'Tgstation::Server::Api::Models']]], + ['repounsupportedtestmergeremote_4238',['RepoUnsupportedTestMergeRemote',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9446652139c040e0af3351104d1ec913',1,'Tgstation::Server::Api::Models']]], + ['repowhitespacecommitteremail_4239',['RepoWhitespaceCommitterEmail',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8b7cce03b4c7425e09ac4534a51b95b0',1,'Tgstation::Server::Api::Models']]], + ['repowhitespacecommittername_4240',['RepoWhitespaceCommitterName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5aac4df009b9b8c791899cd52c320593',1,'Tgstation::Server::Api::Models']]], + ['requiresposixsystemidentity_4241',['RequiresPosixSystemIdentity',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aab217c3aea820156b624733a34ab3c48',1,'Tgstation::Server::Api::Models']]], + ['requiressafe_4242',['RequiresSafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3aa664657b234543e1fc6702e00b784325',1,'Tgstation::Server::Host::Components::Session']]], + ['requirestrusted_4243',['RequiresTrusted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2cb40d93bedc4fe88f33d0fd49c87563',1,'Tgstation::Server::Host::Components::Session']]], + ['requiresultrasafe_4244',['RequiresUltrasafe',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a6125188ea908d44694f8cdff0eef43f4',1,'Tgstation::Server::Host::Components::Session']]], + ['resourceneverpresent_4245',['ResourceNeverPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf653fb5de0c10b302e6a44d01265fe8',1,'Tgstation::Server::Api::Models']]], + ['resourcenotpresent_4246',['ResourceNotPresent',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac0333e5b9060e7ec5e504858490db907',1,'Tgstation::Server::Api::Models']]], + ['restart_4247',['Restart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Watchdog.Restart()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Host.Components.Session.Restart()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a51cfbcff36da74a9fc47f3a5140f99f2',1,'Tgstation.Server.Api.Rights.Restart()']]], + ['restarthost_4248',['RestartHost',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a4ebebe34711c9ddafa1eff5faa9a377e',1,'Tgstation::Server::Api::Rights']]], + ['restoring_4249',['Restoring',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683ad6a7dfc0a40da7ac6674d7c9888fa5e8',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_11.html b/search/enumvalues_11.html index 55b127c00f..147e80bf1d 100644 --- a/search/enumvalues_11.html +++ b/search/enumvalues_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_11.js b/search/enumvalues_11.js index 6c9e93e9bd..8325798118 100644 --- a/search/enumvalues_11.js +++ b/search/enumvalues_11.js @@ -1,37 +1,37 @@ var searchData= [ - ['safe_4149',['Safe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac6eea0560cd6f377e78dff2c85cc9122',1,'Tgstation::Server::Api::Models']]], - ['sasl_4150',['Sasl',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba722a094110489086589ef2ca86d2a516',1,'Tgstation::Server::Api::Models']]], - ['server_4151',['Server',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba9aa1b03934893d7134a660af4204f2a9',1,'Tgstation::Server::Api::Models']]], - ['serverportupdate_4152',['ServerPortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a295c0edab602acabdac91a82767b91f2',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['serverrestarted_4153',['ServerRestarted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8ad94a47cc065789bfb02933dc8be84a70',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['serverupdateinprogress_4154',['ServerUpdateInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7b3644a07defb6b7df279cc44dc46adb',1,'Tgstation::Server::Api::Models']]], - ['setapivalidationport_4155',['SetApiValidationPort',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da926d34b9044ba920f715e8e2f6a72c62',1,'Tgstation::Server::Api::Rights']]], - ['setapivalidationrequirement_4156',['SetApiValidationRequirement',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dafcfa8539b3ffa73a3ae9c81d1c75427f',1,'Tgstation::Server::Api::Rights']]], - ['setautostart_4157',['SetAutoStart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ac73c1c7e96a1b68753840b8502528ab0',1,'Tgstation::Server::Api::Rights']]], - ['setautoupdate_4158',['SetAutoUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e54e04dba31375a3401f9f300a80d81',1,'Tgstation::Server::Api::Rights']]], - ['setchatbotlimit_4159',['SetChatBotLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa0526dcf7b059eda11e1e3bc375eb6d0',1,'Tgstation::Server::Api::Rights']]], - ['setconfiguration_4160',['SetConfiguration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e423f35163ade75efce4061c98e1803',1,'Tgstation::Server::Api::Rights']]], - ['setdme_4161',['SetDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da14814465c8710a1dd49b3642c172ed36',1,'Tgstation::Server::Api::Rights']]], - ['setheartbeatinterval_4162',['SetHeartbeatInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a56edaf677f0c63f6d6b0d6bd90f151cc',1,'Tgstation::Server::Api::Rights']]], - ['setonline_4163',['SetOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a49241bae6f08ea45c321cbee8ce70cda',1,'Tgstation::Server::Api::Rights']]], - ['setorigin_4164',['SetOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a4cfe869c65c26d572cd5ab1b98abdb6a',1,'Tgstation::Server::Api::Rights']]], - ['setport_4165',['SetPort',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a7b2bea9e62a2137bc0bda533fb22b350',1,'Tgstation::Server::Api::Rights']]], - ['setreference_4166',['SetReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a177459d00b7f29a44b87c9a5e1cb1f11',1,'Tgstation::Server::Api::Rights']]], - ['setsecurity_4167',['SetSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ad01c76a7263a2d3af037a139b8563b5a',1,'Tgstation::Server::Api::Rights']]], - ['setsecuritylevel_4168',['SetSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dab49667168f82f3007e86f44c40e6322c',1,'Tgstation::Server::Api::Rights']]], - ['setsha_4169',['SetSha',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39ad8c2d7ddc75692573d20ed5254fcd06a',1,'Tgstation::Server::Api::Rights']]], - ['setstartuptimeout_4170',['SetStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae34541119c09d49ca1ba51be76c98aa1',1,'Tgstation::Server::Api::Rights']]], - ['settopictimeout_4171',['SetTopicTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a598cfc66b07c2c5b69d5cc126492418a',1,'Tgstation::Server::Api::Rights']]], - ['setwebclient_4172',['SetWebClient',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aba69275e93f440b20e7bebe7be6f8a7c',1,'Tgstation::Server::Api::Rights']]], - ['shutdown_4173',['Shutdown',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Api.Rights.Shutdown()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Host.Components.Session.Shutdown()']]], - ['skip_4174',['Skip',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a72ef2b9b6965d078e3c7f95487a82d1c',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['softrestart_4175',['SoftRestart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a31d920012be69305899466206d2a4823',1,'Tgstation::Server::Api::Rights']]], - ['softshutdown_4176',['SoftShutdown',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae814f60fe597531f5630e0aef1adea94',1,'Tgstation::Server::Api::Rights']]], - ['sqlite_4177',['Sqlite',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca283f4ac146a612fabb50409a640cf21b',1,'Tgstation::Server::Host::Configuration']]], - ['sqlserver_4178',['SqlServer',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617cae86e829e4d4c68b30a4fd26aa2bfca72',1,'Tgstation::Server::Host::Configuration']]], - ['start_4179',['Start',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aa6122a65eaa676f700ae68d393054a37',1,'Tgstation::Server::Api::Rights']]], - ['startup_4180',['Startup',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da13e685964c2548aa748f7ea263bad4e5',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['suspendresume_4181',['SuspendResume',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52aa225c7a85340534236811e3cae22e885e',1,'Tgstation::Server::Host::NativeMethods']]], - ['systemidentitywrite_4182',['SystemIdentityWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ab027b6d7abbf6c6fa50c64fc51437bce',1,'Tgstation::Server::Api::Models']]] + ['safe_4250',['Safe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac6eea0560cd6f377e78dff2c85cc9122',1,'Tgstation::Server::Api::Models']]], + ['sasl_4251',['Sasl',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba722a094110489086589ef2ca86d2a516',1,'Tgstation::Server::Api::Models']]], + ['server_4252',['Server',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba9aa1b03934893d7134a660af4204f2a9',1,'Tgstation::Server::Api::Models']]], + ['serverportupdate_4253',['ServerPortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a295c0edab602acabdac91a82767b91f2',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['serverrestarted_4254',['ServerRestarted',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8ad94a47cc065789bfb02933dc8be84a70',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['serverupdateinprogress_4255',['ServerUpdateInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7b3644a07defb6b7df279cc44dc46adb',1,'Tgstation::Server::Api::Models']]], + ['setapivalidationport_4256',['SetApiValidationPort',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da926d34b9044ba920f715e8e2f6a72c62',1,'Tgstation::Server::Api::Rights']]], + ['setapivalidationrequirement_4257',['SetApiValidationRequirement',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dafcfa8539b3ffa73a3ae9c81d1c75427f',1,'Tgstation::Server::Api::Rights']]], + ['setautostart_4258',['SetAutoStart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ac73c1c7e96a1b68753840b8502528ab0',1,'Tgstation::Server::Api::Rights']]], + ['setautoupdate_4259',['SetAutoUpdate',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e54e04dba31375a3401f9f300a80d81',1,'Tgstation::Server::Api::Rights']]], + ['setchatbotlimit_4260',['SetChatBotLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79aa0526dcf7b059eda11e1e3bc375eb6d0',1,'Tgstation::Server::Api::Rights']]], + ['setconfiguration_4261',['SetConfiguration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a2e423f35163ade75efce4061c98e1803',1,'Tgstation::Server::Api::Rights']]], + ['setdme_4262',['SetDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da14814465c8710a1dd49b3642c172ed36',1,'Tgstation::Server::Api::Rights']]], + ['setheartbeatinterval_4263',['SetHeartbeatInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a56edaf677f0c63f6d6b0d6bd90f151cc',1,'Tgstation::Server::Api::Rights']]], + ['setonline_4264',['SetOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a49241bae6f08ea45c321cbee8ce70cda',1,'Tgstation::Server::Api::Rights']]], + ['setorigin_4265',['SetOrigin',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a4cfe869c65c26d572cd5ab1b98abdb6a',1,'Tgstation::Server::Api::Rights']]], + ['setport_4266',['SetPort',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a7b2bea9e62a2137bc0bda533fb22b350',1,'Tgstation::Server::Api::Rights']]], + ['setreference_4267',['SetReference',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a177459d00b7f29a44b87c9a5e1cb1f11',1,'Tgstation::Server::Api::Rights']]], + ['setsecurity_4268',['SetSecurity',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ad01c76a7263a2d3af037a139b8563b5a',1,'Tgstation::Server::Api::Rights']]], + ['setsecuritylevel_4269',['SetSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5dab49667168f82f3007e86f44c40e6322c',1,'Tgstation::Server::Api::Rights']]], + ['setsha_4270',['SetSha',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39ad8c2d7ddc75692573d20ed5254fcd06a',1,'Tgstation::Server::Api::Rights']]], + ['setstartuptimeout_4271',['SetStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae34541119c09d49ca1ba51be76c98aa1',1,'Tgstation::Server::Api::Rights']]], + ['settopictimeout_4272',['SetTopicTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a598cfc66b07c2c5b69d5cc126492418a',1,'Tgstation::Server::Api::Rights']]], + ['setwebclient_4273',['SetWebClient',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aba69275e93f440b20e7bebe7be6f8a7c',1,'Tgstation::Server::Api::Rights']]], + ['shutdown_4274',['Shutdown',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Host.Components.Session.Shutdown()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a1a4ebb180ba59b067782515ffee6e975',1,'Tgstation.Server.Api.Rights.Shutdown()']]], + ['skip_4275',['Skip',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812a72ef2b9b6965d078e3c7f95487a82d1c',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['softrestart_4276',['SoftRestart',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a31d920012be69305899466206d2a4823',1,'Tgstation::Server::Api::Rights']]], + ['softshutdown_4277',['SoftShutdown',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49ae814f60fe597531f5630e0aef1adea94',1,'Tgstation::Server::Api::Rights']]], + ['sqlite_4278',['Sqlite',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca283f4ac146a612fabb50409a640cf21b',1,'Tgstation::Server::Host::Configuration']]], + ['sqlserver_4279',['SqlServer',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617cae86e829e4d4c68b30a4fd26aa2bfca72',1,'Tgstation::Server::Host::Configuration']]], + ['start_4280',['Start',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49aa6122a65eaa676f700ae68d393054a37',1,'Tgstation::Server::Api::Rights']]], + ['startup_4281',['Startup',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da13e685964c2548aa748f7ea263bad4e5',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['suspendresume_4282',['SuspendResume',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a14e5ef215cf77a3126bf7107d43bc52aa225c7a85340534236811e3cae22e885e',1,'Tgstation::Server::Host::NativeMethods']]], + ['systemidentitywrite_4283',['SystemIdentityWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ab027b6d7abbf6c6fa50c64fc51437bce',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_12.html b/search/enumvalues_12.html index 715692ccf5..f03529a1db 100644 --- a/search/enumvalues_12.html +++ b/search/enumvalues_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_12.js b/search/enumvalues_12.js index 6322c9202e..4b4d7b9b69 100644 --- a/search/enumvalues_12.js +++ b/search/enumvalues_12.js @@ -1,5 +1,5 @@ var searchData= [ - ['tokenwithtoken_4183',['TokenWithToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9a6fc03ca61381e162705346a62ddbea',1,'Tgstation::Server::Api::Models']]], - ['trusted_4184',['Trusted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac0405d71f21e769c787a10b9620f11ea',1,'Tgstation::Server::Api::Models']]] + ['tokenwithtoken_4284',['TokenWithToken',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9a6fc03ca61381e162705346a62ddbea',1,'Tgstation::Server::Api::Models']]], + ['trusted_4285',['Trusted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5ac0405d71f21e769c787a10b9620f11ea',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_13.html b/search/enumvalues_13.html index 8fca338c79..bc7ebe8af1 100644 --- a/search/enumvalues_13.html +++ b/search/enumvalues_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_13.js b/search/enumvalues_13.js index a14ead58f1..31c0bab7d7 100644 --- a/search/enumvalues_13.js +++ b/search/enumvalues_13.js @@ -1,15 +1,15 @@ var searchData= [ - ['ultrasafe_4185',['Ultrasafe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5a380d297f2cbdccba869676c96bd38bc1',1,'Tgstation::Server::Api::Models']]], - ['unaskedvalidationrequest_4186',['UnaskedValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a4b42bf5b19925da0a8866a1dfdc33ffd',1,'Tgstation::Server::Host::Components::Session']]], - ['updatebranch_4187',['UpdateBranch',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a31df5784b56922c3559917d3286fcac3',1,'Tgstation::Server::Api::Rights']]], - ['useragent_4188',['UserAgent',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa7a1c9344ffcbe2316169f2cbbc867973',1,'Tgstation::Server::Api']]], - ['usercoloninname_4189',['UserColonInName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8acc88a1ecdc7342ee66cbaa257334a82f',1,'Tgstation::Server::Api::Models']]], - ['usermismatchnamesid_4190',['UserMismatchNameSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab254802c60656270a5f21f42da04bc0e',1,'Tgstation::Server::Api::Models']]], - ['usermismatchpasswordsid_4191',['UserMismatchPasswordSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae272fba7876aca6039eb7560c8daa7be',1,'Tgstation::Server::Api::Models']]], - ['usermissingid_4192',['UserMissingId',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a044890652423551342e8a034741750b5',1,'Tgstation::Server::Api::Models']]], - ['usermissingname_4193',['UserMissingName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa3364f781ce5d54c217bdba6a4f8fe47',1,'Tgstation::Server::Api::Models']]], - ['usernamechange_4194',['UserNameChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a62cd93d475c146a93fa08ce89132bf72',1,'Tgstation::Server::Api::Models']]], - ['userpasswordlength_4195',['UserPasswordLength',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3c8306a8d5116e9f6584f3c845a6afbe',1,'Tgstation::Server::Api::Models']]], - ['usersidchange_4196',['UserSidChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97e2a1f4c98dbb3165aa317dc67ea435',1,'Tgstation::Server::Api::Models']]] + ['ultrasafe_4286',['Ultrasafe',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ad4850e6b78816679602b13d63d2869b5a380d297f2cbdccba869676c96bd38bc1',1,'Tgstation::Server::Api::Models']]], + ['unaskedvalidationrequest_4287',['UnaskedValidationRequest',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a4b42bf5b19925da0a8866a1dfdc33ffd',1,'Tgstation::Server::Host::Components::Session']]], + ['updatebranch_4288',['UpdateBranch',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a31df5784b56922c3559917d3286fcac3',1,'Tgstation::Server::Api::Rights']]], + ['useragent_4289',['UserAgent',['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa7a1c9344ffcbe2316169f2cbbc867973',1,'Tgstation::Server::Api']]], + ['usercoloninname_4290',['UserColonInName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8acc88a1ecdc7342ee66cbaa257334a82f',1,'Tgstation::Server::Api::Models']]], + ['usermismatchnamesid_4291',['UserMismatchNameSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab254802c60656270a5f21f42da04bc0e',1,'Tgstation::Server::Api::Models']]], + ['usermismatchpasswordsid_4292',['UserMismatchPasswordSid',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae272fba7876aca6039eb7560c8daa7be',1,'Tgstation::Server::Api::Models']]], + ['usermissingid_4293',['UserMissingId',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a044890652423551342e8a034741750b5',1,'Tgstation::Server::Api::Models']]], + ['usermissingname_4294',['UserMissingName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa3364f781ce5d54c217bdba6a4f8fe47',1,'Tgstation::Server::Api::Models']]], + ['usernamechange_4295',['UserNameChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a62cd93d475c146a93fa08ce89132bf72',1,'Tgstation::Server::Api::Models']]], + ['userpasswordlength_4296',['UserPasswordLength',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3c8306a8d5116e9f6584f3c845a6afbe',1,'Tgstation::Server::Api::Models']]], + ['usersidchange_4297',['UserSidChange',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97e2a1f4c98dbb3165aa317dc67ea435',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_14.html b/search/enumvalues_14.html index c98d2f9081..2d411b91fa 100644 --- a/search/enumvalues_14.html +++ b/search/enumvalues_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_14.js b/search/enumvalues_14.js index fc98c9403d..8d54124307 100644 --- a/search/enumvalues_14.js +++ b/search/enumvalues_14.js @@ -1,25 +1,25 @@ var searchData= [ - ['watchdogcompilejobcorrupted_4197',['WatchdogCompileJobCorrupted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5bf519a63341001be4c5c6c4e940f160',1,'Tgstation::Server::Api::Models']]], - ['watchdogdetach_4198',['WatchdogDetach',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3eac9672e6db27cac6717a7a58577359',1,'Tgstation::Server::Host::Components::Events']]], - ['watchdoglaunch_4199',['WatchdogLaunch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3f97b5999580c2c1ef719b35dfa3e2d0',1,'Tgstation::Server::Host::Components::Events']]], - ['watchdognotrunning_4200',['WatchdogNotRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2bb8251ac32e1bb097969c13a5a8b1a1',1,'Tgstation::Server::Api::Models']]], - ['watchdogrunning_4201',['WatchdogRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7308ad22f9debf125c2daff8c9dcb4bc',1,'Tgstation::Server::Api::Models']]], - ['watchdogshutdown_4202',['WatchdogShutdown',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a41008b498ed03646e26e2b4fa7f8ffd8',1,'Tgstation::Server::Host::Components::Events']]], - ['watchdogstartupfailed_4203',['WatchdogStartupFailed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aded687bc590419f813a657d0ab331fb8',1,'Tgstation::Server::Api::Models']]], - ['watchdogstartuptimeout_4204',['WatchdogStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae81957bf66d058288d7977abc4d02fdf',1,'Tgstation::Server::Api::Models']]], - ['withdatasegs_4205',['WithDataSegs',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ad1155d80d6dc2fad0d88bc8bfdf265c7',1,'Tgstation::Server::Host::NativeMethods']]], - ['withfullmemory_4206',['WithFullMemory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2aef25796cf466066a44dbd73f68138487',1,'Tgstation::Server::Host::NativeMethods']]], - ['withhandledata_4207',['WithHandleData',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2af65aa027df70f27c9d484003fd19ac59',1,'Tgstation::Server::Host::NativeMethods']]], - ['withthreadinfo_4208',['WithThreadInfo',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2a0a62606af36ce6e8e7321ab9454d96ef',1,'Tgstation::Server::Host::NativeMethods']]], - ['withunloadedmodules_4209',['WithUnloadedModules',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ae956b1148884deaafd8a10db8ec02a93',1,'Tgstation::Server::Host::NativeMethods']]], - ['write_4210',['Write',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca1129c0e4d43f2d121652a7302712cff6',1,'Tgstation::Server::Api::Rights']]], - ['writechannellimit_4211',['WriteChannelLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7362ebd340de083949f47079eb6beca4',1,'Tgstation::Server::Api::Rights']]], - ['writechannels_4212',['WriteChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a536002a3cc297a67dcee8ec692a569ec',1,'Tgstation::Server::Api::Rights']]], - ['writeconnectionstring_4213',['WriteConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a58680118e47c510bac627f8b20e175a9',1,'Tgstation::Server::Api::Rights']]], - ['writeenabled_4214',['WriteEnabled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a574b3ec8f9de787caa6f2fc04c8f9658',1,'Tgstation::Server::Api::Rights']]], - ['writename_4215',['WriteName',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72ad70280daaa48077a6f4b46bad136e51a',1,'Tgstation::Server::Api::Rights']]], - ['writeprovider_4216',['WriteProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a46417a8d9d6f4823667e403b90796186',1,'Tgstation::Server::Api::Rights']]], - ['writereconnectioninterval_4217',['WriteReconnectionInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a5db432c7c2e28bfe63195a8f1998f470',1,'Tgstation::Server::Api::Rights']]], - ['writeusers_4218',['WriteUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()']]] + ['watchdogcompilejobcorrupted_4298',['WatchdogCompileJobCorrupted',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5bf519a63341001be4c5c6c4e940f160',1,'Tgstation::Server::Api::Models']]], + ['watchdogdetach_4299',['WatchdogDetach',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3eac9672e6db27cac6717a7a58577359',1,'Tgstation::Server::Host::Components::Events']]], + ['watchdoglaunch_4300',['WatchdogLaunch',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a3f97b5999580c2c1ef719b35dfa3e2d0',1,'Tgstation::Server::Host::Components::Events']]], + ['watchdognotrunning_4301',['WatchdogNotRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2bb8251ac32e1bb097969c13a5a8b1a1',1,'Tgstation::Server::Api::Models']]], + ['watchdogrunning_4302',['WatchdogRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7308ad22f9debf125c2daff8c9dcb4bc',1,'Tgstation::Server::Api::Models']]], + ['watchdogshutdown_4303',['WatchdogShutdown',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a41008b498ed03646e26e2b4fa7f8ffd8',1,'Tgstation::Server::Host::Components::Events']]], + ['watchdogstartupfailed_4304',['WatchdogStartupFailed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aded687bc590419f813a657d0ab331fb8',1,'Tgstation::Server::Api::Models']]], + ['watchdogstartuptimeout_4305',['WatchdogStartupTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae81957bf66d058288d7977abc4d02fdf',1,'Tgstation::Server::Api::Models']]], + ['withdatasegs_4306',['WithDataSegs',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ad1155d80d6dc2fad0d88bc8bfdf265c7',1,'Tgstation::Server::Host::NativeMethods']]], + ['withfullmemory_4307',['WithFullMemory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2aef25796cf466066a44dbd73f68138487',1,'Tgstation::Server::Host::NativeMethods']]], + ['withhandledata_4308',['WithHandleData',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2af65aa027df70f27c9d484003fd19ac59',1,'Tgstation::Server::Host::NativeMethods']]], + ['withthreadinfo_4309',['WithThreadInfo',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2a0a62606af36ce6e8e7321ab9454d96ef',1,'Tgstation::Server::Host::NativeMethods']]], + ['withunloadedmodules_4310',['WithUnloadedModules',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#ab920f037c12308199d62a92c666804e2ae956b1148884deaafd8a10db8ec02a93',1,'Tgstation::Server::Host::NativeMethods']]], + ['write_4311',['Write',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca1129c0e4d43f2d121652a7302712cff6',1,'Tgstation::Server::Api::Rights']]], + ['writechannellimit_4312',['WriteChannelLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a7362ebd340de083949f47079eb6beca4',1,'Tgstation::Server::Api::Rights']]], + ['writechannels_4313',['WriteChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a536002a3cc297a67dcee8ec692a569ec',1,'Tgstation::Server::Api::Rights']]], + ['writeconnectionstring_4314',['WriteConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a58680118e47c510bac627f8b20e175a9',1,'Tgstation::Server::Api::Rights']]], + ['writeenabled_4315',['WriteEnabled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a574b3ec8f9de787caa6f2fc04c8f9658',1,'Tgstation::Server::Api::Rights']]], + ['writename_4316',['WriteName',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72ad70280daaa48077a6f4b46bad136e51a',1,'Tgstation::Server::Api::Rights']]], + ['writeprovider_4317',['WriteProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a46417a8d9d6f4823667e403b90796186',1,'Tgstation::Server::Api::Rights']]], + ['writereconnectioninterval_4318',['WriteReconnectionInterval',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a5db432c7c2e28bfe63195a8f1998f470',1,'Tgstation::Server::Api::Rights']]], + ['writeusers_4319',['WriteUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6da2fa278de1516d65f3ebe77670f215',1,'Tgstation.Server.Api.Rights.WriteUsers()']]] ]; diff --git a/search/enumvalues_2.html b/search/enumvalues_2.html index 2a58a51232..e16db5f2a8 100644 --- a/search/enumvalues_2.html +++ b/search/enumvalues_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_2.js b/search/enumvalues_2.js index 28c094fc9f..a43a244b73 100644 --- a/search/enumvalues_2.js +++ b/search/enumvalues_2.js @@ -1,39 +1,39 @@ var searchData= [ - ['cancelclone_3989',['CancelClone',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a8863765f0ecf9b3004e8051a28251d6a',1,'Tgstation::Server::Api::Rights']]], - ['cancelcompile_3990',['CancelCompile',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5daadc2d374d8bb5ae840bbb0145868fc1f',1,'Tgstation::Server::Api::Rights']]], - ['cancelinstall_3991',['CancelInstall',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a9557127a4ed0a1726e4b32579364083b',1,'Tgstation::Server::Api::Rights']]], - ['cancelpendingchanges_3992',['CancelPendingChanges',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a84be61baa3a948e65891036fdaba4ab7',1,'Tgstation::Server::Api::Rights']]], - ['cannotchangeserversuite_3993',['CannotChangeServerSuite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ad27cb08b02e194991882f231d87b9030',1,'Tgstation::Server::Api::Models']]], - ['changeautoupdatesettings_3994',['ChangeAutoUpdateSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a548b817c7c02c2f62dd3794933b0920c',1,'Tgstation::Server::Api::Rights']]], - ['changecommitter_3995',['ChangeCommitter',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39abae6cf87a3261b8f904b3943525f3043',1,'Tgstation::Server::Api::Rights']]], - ['changecredentials_3996',['ChangeCredentials',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39adbc2b36c5f0ed08b2f62378225d078d6',1,'Tgstation::Server::Api::Rights']]], - ['changeport_3997',['ChangePort',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a49bb93f8d7ab9097f73beb67a897a210',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['changerebootstate_3998',['ChangeRebootState',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a852ce2e98903f54e64f9a11df8b2668f',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['changetestmergecommits_3999',['ChangeTestMergeCommits',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a5ad384c7de5c2f6d816c4d652462625b',1,'Tgstation::Server::Api::Rights']]], - ['changeversion_4000',['ChangeVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a55c267b42a4e2d36d46ff358ff822968',1,'Tgstation::Server::Api::Rights']]], - ['chatbotmax_4001',['ChatBotMax',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3363706f321199130f484868fd4dab2d',1,'Tgstation::Server::Api::Models']]], - ['chatbotmaxchannels_4002',['ChatBotMaxChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefde5659eb82d8943cf3a4e4638c5aaf',1,'Tgstation::Server::Api::Models']]], - ['chatbotprovidermissing_4003',['ChatBotProviderMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7fa65206da7db03314c84ab71978b824',1,'Tgstation::Server::Api::Models']]], - ['chatbots_4004',['ChatBots',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a11eee75253579a31252ca13f9a271873',1,'Tgstation::Server::Api::Rights']]], - ['chatbotwhitespaceconnectionstring_4005',['ChatBotWhitespaceConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7ef7f2f115b34ad156dd0ca621b7dd66',1,'Tgstation::Server::Api::Models']]], - ['chatbotwhitespacename_4006',['ChatBotWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97ecb2f61aca1686c3720f9d3134a75f',1,'Tgstation::Server::Api::Models']]], - ['chatbotwrongchanneltype_4007',['ChatBotWrongChannelType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abd8569dcf6e1e7cce0c99dbbb9f25785',1,'Tgstation::Server::Api::Models']]], - ['chatcannotconnectprovider_4008',['ChatCannotConnectProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf876d87e92badc0f5d3e4d42395257e',1,'Tgstation::Server::Api::Models']]], - ['chatchannelsupdate_4009',['ChatChannelsUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8aeaf3081408237420ee1bfae603db3569',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['chatcommand_4010',['ChatCommand',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a08bf4bffdf0d4d5d711861504cb540a4',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['chatsend_4011',['ChatSend',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da81b6f76d520249aef397ecdc007c821c',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['compile_4012',['Compile',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da3de9387fc230ce74214446e58c4fefde',1,'Tgstation::Server::Api::Rights']]], - ['compilecancelled_4013',['CompileCancelled',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aac05aa67f7da74bd470018801530d560',1,'Tgstation::Server::Host::Components::Events']]], - ['compilecomplete_4014',['CompileComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a32558503790304b9e722550831898633',1,'Tgstation::Server::Host::Components::Events']]], - ['compilefailure_4015',['CompileFailure',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aaef5e71e3b260e64d5349d6e04e7a0bd',1,'Tgstation::Server::Host::Components::Events']]], - ['compilejobs_4016',['CompileJobs',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7c63725727d75ca94b3b395198026acb',1,'Tgstation::Server::Api::Rights']]], - ['compilestart_4017',['CompileStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7abec1242b376ffdd3ca51b65b2106e843',1,'Tgstation::Server::Host::Components::Events']]], - ['configuration_4018',['Configuration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a254f642527b45bc260048e30704edb39',1,'Tgstation::Server::Api::Rights']]], - ['configurationdirectorynotempty_4019',['ConfigurationDirectoryNotEmpty',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab6aac8a71757f5fdf164188595806e72',1,'Tgstation::Server::Api::Models']]], - ['configurationfileupdated_4020',['ConfigurationFileUpdated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5c0d6072f109fa92c30019b66bbceeaf',1,'Tgstation::Server::Api::Models']]], - ['continue_4021',['Continue',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812aa0bfb8e59e6c13fc8d990781f77694fe',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['create_4022',['Create',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()']]], - ['createdump_4023',['CreateDump',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a14e9adc4994501d29b832109c5a7f14b',1,'Tgstation::Server::Api::Rights']]], - ['createusers_4024',['CreateUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a90212f132b4b808fe81b7022759031d9',1,'Tgstation::Server::Api::Rights']]] + ['cancelclone_4089',['CancelClone',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a8863765f0ecf9b3004e8051a28251d6a',1,'Tgstation::Server::Api::Rights']]], + ['cancelcompile_4090',['CancelCompile',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5daadc2d374d8bb5ae840bbb0145868fc1f',1,'Tgstation::Server::Api::Rights']]], + ['cancelinstall_4091',['CancelInstall',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a9557127a4ed0a1726e4b32579364083b',1,'Tgstation::Server::Api::Rights']]], + ['cancelpendingchanges_4092',['CancelPendingChanges',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a84be61baa3a948e65891036fdaba4ab7',1,'Tgstation::Server::Api::Rights']]], + ['cannotchangeserversuite_4093',['CannotChangeServerSuite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ad27cb08b02e194991882f231d87b9030',1,'Tgstation::Server::Api::Models']]], + ['changeautoupdatesettings_4094',['ChangeAutoUpdateSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a548b817c7c02c2f62dd3794933b0920c',1,'Tgstation::Server::Api::Rights']]], + ['changecommitter_4095',['ChangeCommitter',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39abae6cf87a3261b8f904b3943525f3043',1,'Tgstation::Server::Api::Rights']]], + ['changecredentials_4096',['ChangeCredentials',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39adbc2b36c5f0ed08b2f62378225d078d6',1,'Tgstation::Server::Api::Rights']]], + ['changeport_4097',['ChangePort',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a49bb93f8d7ab9097f73beb67a897a210',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['changerebootstate_4098',['ChangeRebootState',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a852ce2e98903f54e64f9a11df8b2668f',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['changetestmergecommits_4099',['ChangeTestMergeCommits',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a5ad384c7de5c2f6d816c4d652462625b',1,'Tgstation::Server::Api::Rights']]], + ['changeversion_4100',['ChangeVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a55c267b42a4e2d36d46ff358ff822968',1,'Tgstation::Server::Api::Rights']]], + ['chatbotmax_4101',['ChatBotMax',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3363706f321199130f484868fd4dab2d',1,'Tgstation::Server::Api::Models']]], + ['chatbotmaxchannels_4102',['ChatBotMaxChannels',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aefde5659eb82d8943cf3a4e4638c5aaf',1,'Tgstation::Server::Api::Models']]], + ['chatbotprovidermissing_4103',['ChatBotProviderMissing',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7fa65206da7db03314c84ab71978b824',1,'Tgstation::Server::Api::Models']]], + ['chatbots_4104',['ChatBots',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a11eee75253579a31252ca13f9a271873',1,'Tgstation::Server::Api::Rights']]], + ['chatbotwhitespaceconnectionstring_4105',['ChatBotWhitespaceConnectionString',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a7ef7f2f115b34ad156dd0ca621b7dd66',1,'Tgstation::Server::Api::Models']]], + ['chatbotwhitespacename_4106',['ChatBotWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a97ecb2f61aca1686c3720f9d3134a75f',1,'Tgstation::Server::Api::Models']]], + ['chatbotwrongchanneltype_4107',['ChatBotWrongChannelType',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abd8569dcf6e1e7cce0c99dbbb9f25785',1,'Tgstation::Server::Api::Models']]], + ['chatcannotconnectprovider_4108',['ChatCannotConnectProvider',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaf876d87e92badc0f5d3e4d42395257e',1,'Tgstation::Server::Api::Models']]], + ['chatchannelsupdate_4109',['ChatChannelsUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8aeaf3081408237420ee1bfae603db3569',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['chatcommand_4110',['ChatCommand',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a08bf4bffdf0d4d5d711861504cb540a4',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['chatsend_4111',['ChatSend',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da81b6f76d520249aef397ecdc007c821c',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['compile_4112',['Compile',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da3de9387fc230ce74214446e58c4fefde',1,'Tgstation::Server::Api::Rights']]], + ['compilecancelled_4113',['CompileCancelled',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aac05aa67f7da74bd470018801530d560',1,'Tgstation::Server::Host::Components::Events']]], + ['compilecomplete_4114',['CompileComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a32558503790304b9e722550831898633',1,'Tgstation::Server::Host::Components::Events']]], + ['compilefailure_4115',['CompileFailure',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aaef5e71e3b260e64d5349d6e04e7a0bd',1,'Tgstation::Server::Host::Components::Events']]], + ['compilejobs_4116',['CompileJobs',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da7c63725727d75ca94b3b395198026acb',1,'Tgstation::Server::Api::Rights']]], + ['compilestart_4117',['CompileStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7abec1242b376ffdd3ca51b65b2106e843',1,'Tgstation::Server::Host::Components::Events']]], + ['configuration_4118',['Configuration',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a254f642527b45bc260048e30704edb39',1,'Tgstation::Server::Api::Rights']]], + ['configurationdirectorynotempty_4119',['ConfigurationDirectoryNotEmpty',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab6aac8a71757f5fdf164188595806e72',1,'Tgstation::Server::Api::Models']]], + ['configurationfileupdated_4120',['ConfigurationFileUpdated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5c0d6072f109fa92c30019b66bbceeaf',1,'Tgstation::Server::Api::Models']]], + ['continue_4121',['Continue',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812aa0bfb8e59e6c13fc8d990781f77694fe',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['create_4122',['Create',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a686e697538050e4664636337cc3b834f',1,'Tgstation.Server.Api.Rights.Create()']]], + ['createdump_4123',['CreateDump',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a14e9adc4994501d29b832109c5a7f14b',1,'Tgstation::Server::Api::Rights']]], + ['createusers_4124',['CreateUsers',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a90212f132b4b808fe81b7022759031d9',1,'Tgstation::Server::Api::Rights']]] ]; diff --git a/search/enumvalues_3.html b/search/enumvalues_3.html index 3409bf40eb..57192219a4 100644 --- a/search/enumvalues_3.html +++ b/search/enumvalues_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_3.js b/search/enumvalues_3.js index 75ea3bbd0e..4fa437d6b3 100644 --- a/search/enumvalues_3.js +++ b/search/enumvalues_3.js @@ -1,25 +1,25 @@ var searchData= [ - ['databaseintegrityconflict_4025',['DatabaseIntegrityConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac9241b2a69ac456afa664e7c47ac9b39',1,'Tgstation::Server::Api::Models']]], - ['delayedrestart_4026',['DelayedRestart',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a0e6aa7a3fef294ba456c4aa38d7bc9bf',1,'Tgstation::Server::Api::Models']]], - ['delete_4027',['Delete',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0caf2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()']]], - ['deploymentcomplete_4028',['DeploymentComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a85e9aaa4190eda60c749d9a4965afd50',1,'Tgstation::Server::Host::Components::Events']]], - ['deploymentpagerrunning_4029',['DeploymentPagerRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0ff27c19e763c97ce46acb2cd8020bd3',1,'Tgstation::Server::Api::Models']]], - ['directory_4030',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556ae73cda510e8bb947f7e61089e5581494',1,'Tgstation::Server::Host::NativeMethods']]], - ['disallowed_4031',['Disallowed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ade99ae8770699a4725a85853a0790d24',1,'Tgstation::Server::Api::Models']]], - ['discord_4032',['Discord',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca8f5cc6430613f1c12f36965050bb7197',1,'Tgstation::Server::Api::Models']]], - ['downloadlogs_4033',['DownloadLogs',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a58226070c23da85922d478f497efa9fd',1,'Tgstation::Server::Api::Rights']]], - ['dreamdaemon_4034',['DreamDaemon',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a82a60e2400e19cffe6b38b295e10d4c8',1,'Tgstation::Server::Api::Rights']]], - ['dreamdaemondoublesoft_4035',['DreamDaemonDoubleSoft',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a226919045a54d1af86e0c8be046dcafd',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonduplicateports_4036',['DreamDaemonDuplicatePorts',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac813e5aec42e9884126fecdecdf481ee',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonoffline_4037',['DreamDaemonOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8d6c57ae1b684c123fbc6598c0c3200e',1,'Tgstation::Server::Api::Models']]], - ['dreamdaemonportinuse_4038',['DreamDaemonPortInUse',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a75219810993f7db0f15458d8c5fa71e5',1,'Tgstation::Server::Api::Models']]], - ['dreammaker_4039',['DreamMaker',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20af179dcd47770d7cc1eb149ee1a0d06af',1,'Tgstation::Server::Api::Rights']]], - ['dreammakercompilejobinprogress_4040',['DreamMakerCompileJobInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8adef39f019c5381bcf05b550aa2ad853e',1,'Tgstation::Server::Api::Models']]], - ['dreammakerexitcode_4041',['DreamMakerExitCode',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a622e9926f7b9fb6f507c649d878cefd7',1,'Tgstation::Server::Api::Models']]], - ['dreammakerinvalidvalidation_4042',['DreamMakerInvalidValidation',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf9ba51c8cb292981b8d5e89896aefc2',1,'Tgstation::Server::Api::Models']]], - ['dreammakermissingdme_4043',['DreamMakerMissingDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab0b01b336cd620d6b988afb5e02b7370',1,'Tgstation::Server::Api::Models']]], - ['dreammakernevervalidated_4044',['DreamMakerNeverValidated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a030d0af385ee501b6475b0e75d733081',1,'Tgstation::Server::Api::Models']]], - ['dreammakernodme_4045',['DreamMakerNoDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8f6b203dc15eb3288fc96f5f98ab7779',1,'Tgstation::Server::Api::Models']]], - ['dreammakervalidationtimeout_4046',['DreamMakerValidationTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3706f3d8378fb4d2e3d1f1a6ea74dd56',1,'Tgstation::Server::Api::Models']]] + ['databaseintegrityconflict_4125',['DatabaseIntegrityConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac9241b2a69ac456afa664e7c47ac9b39',1,'Tgstation::Server::Api::Models']]], + ['delayedrestart_4126',['DelayedRestart',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a0e6aa7a3fef294ba456c4aa38d7bc9bf',1,'Tgstation::Server::Api::Models']]], + ['delete_4127',['Delete',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0caf2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72af2a6c498fb90ee345d997f888fce3b18',1,'Tgstation.Server.Api.Rights.Delete()']]], + ['deploymentcomplete_4128',['DeploymentComplete',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7a85e9aaa4190eda60c749d9a4965afd50',1,'Tgstation::Server::Host::Components::Events']]], + ['deploymentpagerrunning_4129',['DeploymentPagerRunning',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0ff27c19e763c97ce46acb2cd8020bd3',1,'Tgstation::Server::Api::Models']]], + ['directory_4130',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556ae73cda510e8bb947f7e61089e5581494',1,'Tgstation::Server::Host::NativeMethods']]], + ['disallowed_4131',['Disallowed',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440ade99ae8770699a4725a85853a0790d24',1,'Tgstation::Server::Api::Models']]], + ['discord_4132',['Discord',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca8f5cc6430613f1c12f36965050bb7197',1,'Tgstation::Server::Api::Models']]], + ['downloadlogs_4133',['DownloadLogs',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a58226070c23da85922d478f497efa9fd',1,'Tgstation::Server::Api::Rights']]], + ['dreamdaemon_4134',['DreamDaemon',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a82a60e2400e19cffe6b38b295e10d4c8',1,'Tgstation::Server::Api::Rights']]], + ['dreamdaemondoublesoft_4135',['DreamDaemonDoubleSoft',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a226919045a54d1af86e0c8be046dcafd',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonduplicateports_4136',['DreamDaemonDuplicatePorts',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac813e5aec42e9884126fecdecdf481ee',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonoffline_4137',['DreamDaemonOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8d6c57ae1b684c123fbc6598c0c3200e',1,'Tgstation::Server::Api::Models']]], + ['dreamdaemonportinuse_4138',['DreamDaemonPortInUse',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a75219810993f7db0f15458d8c5fa71e5',1,'Tgstation::Server::Api::Models']]], + ['dreammaker_4139',['DreamMaker',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20af179dcd47770d7cc1eb149ee1a0d06af',1,'Tgstation::Server::Api::Rights']]], + ['dreammakercompilejobinprogress_4140',['DreamMakerCompileJobInProgress',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8adef39f019c5381bcf05b550aa2ad853e',1,'Tgstation::Server::Api::Models']]], + ['dreammakerexitcode_4141',['DreamMakerExitCode',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a622e9926f7b9fb6f507c649d878cefd7',1,'Tgstation::Server::Api::Models']]], + ['dreammakerinvalidvalidation_4142',['DreamMakerInvalidValidation',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8abf9ba51c8cb292981b8d5e89896aefc2',1,'Tgstation::Server::Api::Models']]], + ['dreammakermissingdme_4143',['DreamMakerMissingDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ab0b01b336cd620d6b988afb5e02b7370',1,'Tgstation::Server::Api::Models']]], + ['dreammakernevervalidated_4144',['DreamMakerNeverValidated',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a030d0af385ee501b6475b0e75d733081',1,'Tgstation::Server::Api::Models']]], + ['dreammakernodme_4145',['DreamMakerNoDme',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a8f6b203dc15eb3288fc96f5f98ab7779',1,'Tgstation::Server::Api::Models']]], + ['dreammakervalidationtimeout_4146',['DreamMakerValidationTimeout',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a3706f3d8378fb4d2e3d1f1a6ea74dd56',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_4.html b/search/enumvalues_4.html index e7cd0b7b65..8ccbce894e 100644 --- a/search/enumvalues_4.html +++ b/search/enumvalues_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_4.js b/search/enumvalues_4.js index 61fa4085d3..b11fc60005 100644 --- a/search/enumvalues_4.js +++ b/search/enumvalues_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['editownpassword_4047',['EditOwnPassword',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6ca04cb3c1c0f79210a1e67312debeb5',1,'Tgstation::Server::Api::Rights']]], - ['eventnotification_4048',['EventNotification',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8af524c541ecdd65058d3982874f110deb',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['exit_4049',['Exit',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812afef46e5063ce3dc78b8ae64fa474241d',1,'Tgstation::Server::Host::Components::Watchdog']]] + ['editownpassword_4147',['EditOwnPassword',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6ca04cb3c1c0f79210a1e67312debeb5',1,'Tgstation::Server::Api::Rights']]], + ['eventnotification_4148',['EventNotification',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8af524c541ecdd65058d3982874f110deb',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['exit_4149',['Exit',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#a97c1a4a168451bd7e3be23c467aa2812afef46e5063ce3dc78b8ae64fa474241d',1,'Tgstation::Server::Host::Components::Watchdog']]] ]; diff --git a/search/enumvalues_5.html b/search/enumvalues_5.html index 1fff31c6d7..8270495248 100644 --- a/search/enumvalues_5.html +++ b/search/enumvalues_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js index f35573a513..89709bd0ac 100644 --- a/search/enumvalues_5.js +++ b/search/enumvalues_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['force_4050',['Force',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a9eb6b78a99cdb6ffd3d40d18621d9f80',1,'Tgstation::Server::Host::Configuration']]] + ['force_4150',['Force',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a9eb6b78a99cdb6ffd3d40d18621d9f80',1,'Tgstation::Server::Host::Configuration']]] ]; diff --git a/search/enumvalues_6.html b/search/enumvalues_6.html index 1645e9a1da..23c92d92a9 100644 --- a/search/enumvalues_6.html +++ b/search/enumvalues_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_6.js b/search/enumvalues_6.js index 7553f1841e..7e6e03848d 100644 --- a/search/enumvalues_6.js +++ b/search/enumvalues_6.js @@ -1,7 +1,7 @@ var searchData= [ - ['gcorefailure_4051',['GCoreFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a55504e6a1e187426ae2a94c480dd8dd1',1,'Tgstation::Server::Api::Models']]], - ['githubapierror_4052',['GitHubApiError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a4af2008e35f4739b74b961d3a9e418cd',1,'Tgstation::Server::Api::Models']]], - ['githubapiratelimit_4053',['GitHubApiRateLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aae998a2af079dd29d0ccdc981b56bdf4',1,'Tgstation::Server::Api::Models']]], - ['grantpermissions_4054',['GrantPermissions',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7c3e6b3f8a8a8a4bf639c2ab5a57bda3',1,'Tgstation::Server::Api::Rights']]] + ['gcorefailure_4151',['GCoreFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a55504e6a1e187426ae2a94c480dd8dd1',1,'Tgstation::Server::Api::Models']]], + ['githubapierror_4152',['GitHubApiError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a4af2008e35f4739b74b961d3a9e418cd',1,'Tgstation::Server::Api::Models']]], + ['githubapiratelimit_4153',['GitHubApiRateLimit',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aae998a2af079dd29d0ccdc981b56bdf4',1,'Tgstation::Server::Api::Models']]], + ['grantpermissions_4154',['GrantPermissions',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a7c3e6b3f8a8a8a4bf639c2ab5a57bda3',1,'Tgstation::Server::Api::Rights']]] ]; diff --git a/search/enumvalues_7.html b/search/enumvalues_7.html index 9f03d96dd7..d5824b1492 100644 --- a/search/enumvalues_7.html +++ b/search/enumvalues_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_7.js b/search/enumvalues_7.js index e91859571c..1a0a73ca44 100644 --- a/search/enumvalues_7.js +++ b/search/enumvalues_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['heartbeat_4055',['Heartbeat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Interop.Topic.Heartbeat()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Watchdog.Heartbeat()']]], - ['hostwrite_4056',['HostWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440a509b9f909831ef70e6c1ec59a3b340e9',1,'Tgstation::Server::Api::Models']]] + ['heartbeat_4155',['Heartbeat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Watchdog.Heartbeat()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a83622997d22f5f18b9b09bd364cb673e',1,'Tgstation.Server.Host.Components.Interop.Topic.Heartbeat()']]], + ['hostwrite_4156',['HostWrite',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#ab7bc96f211e450615be8669d10de2440a509b9f909831ef70e6c1ec59a3b340e9',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_8.html b/search/enumvalues_8.html index e75e8ccc07..1874020d23 100644 --- a/search/enumvalues_8.html +++ b/search/enumvalues_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_8.js b/search/enumvalues_8.js index 814312c2bc..6fd243eec1 100644 --- a/search/enumvalues_8.js +++ b/search/enumvalues_8.js @@ -1,27 +1,27 @@ var searchData= [ - ['incompatible_4057',['Incompatible',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2a208768bc7995cc26b7f3797d24b0b1',1,'Tgstation::Server::Host::Components::Session']]], - ['installcustomversion_4058',['InstallCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9aa08f65365d7310334494f45af5e89bfb',1,'Tgstation::Server::Api::Rights']]], - ['installofficialorchangeactiveversion_4059',['InstallOfficialOrChangeActiveVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a58ad8910d4292a8890f2c04cf5ddc50e',1,'Tgstation::Server::Api::Rights']]], - ['instanceatconflictingpath_4060',['InstanceAtConflictingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a92490b862c79e1b5898483fe55fc0c41',1,'Tgstation::Server::Api::Models']]], - ['instanceatexistingpath_4061',['InstanceAtExistingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a494653f2fb509351b13abef0efe2e0ec',1,'Tgstation::Server::Api::Models']]], - ['instanceautoupdatestart_4062',['InstanceAutoUpdateStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aefc3f4c097e45227dcc2aee3aadc034f',1,'Tgstation::Server::Host::Components::Events']]], - ['instancedetachonline_4063',['InstanceDetachOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa7e647228c270688b33eebe6c40b4fd1',1,'Tgstation::Server::Api::Models']]], - ['instanceheaderrequired_4064',['InstanceHeaderRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a49be0a84ceb449e1d69789040ca5ade1',1,'Tgstation::Server::Api::Models']]], - ['instancelimitreached_4065',['InstanceLimitReached',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac043c16f72e845bae9e6a18cf61cb70c',1,'Tgstation::Server::Api::Models']]], - ['instancemanager_4066',['InstanceManager',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7c77d4c45a003ee3d6b3589d2459cc49',1,'Tgstation::Server::Api::Rights']]], - ['instancemissingdreamdaemonsettings_4067',['InstanceMissingDreamDaemonSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a666168f23ed748258e22b8950c4b0f27',1,'Tgstation::Server::Api::Models']]], - ['instancemissingdreammakersettings_4068',['InstanceMissingDreamMakerSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa9f54d7bb19782121fa03fab399ba5f7',1,'Tgstation::Server::Api::Models']]], - ['instancemissingrepositorysettings_4069',['InstanceMissingRepositorySettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaa4f2a635185665f10e6be24896ce863',1,'Tgstation::Server::Api::Models']]], - ['instancenotatwhitelistedpath_4070',['InstanceNotAtWhitelistedPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae9174043b3cb148be4194a6d1d17f72d',1,'Tgstation::Server::Api::Models']]], - ['instanceoffline_4071',['InstanceOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a64aec32513a670bfc35bea8f4a98aac1',1,'Tgstation::Server::Api::Models']]], - ['instancerelocateonline_4072',['InstanceRelocateOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a961349b83821ed87f141d4f939891c0f',1,'Tgstation::Server::Api::Models']]], - ['instancerenamed_4073',['InstanceRenamed',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a4f6bb27ca06982f2f66d7d0aa8f34b51',1,'Tgstation::Server::Host::Components::Interop::Topic']]], - ['instanceupdatetestmergeconflict_4074',['InstanceUpdateTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8af0345b1fb1d4e36d1812269f61e9fef5',1,'Tgstation::Server::Api::Models']]], - ['instanceuser_4075',['InstanceUser',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a07665be2d43147f42c2e73e8e2a19655',1,'Tgstation::Server::Api::Rights']]], - ['instancewhitespacename_4076',['InstanceWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a024cf09531e01356ce46f4e6abd33f77',1,'Tgstation::Server::Api::Models']]], - ['internalservererror_4077',['InternalServerError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aecbf01325f1c744e9d7bb586ac2eb5ed',1,'Tgstation::Server::Api::Models']]], - ['invalidsecuritylevel_4078',['InvalidSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a54c3bb0b7ab41e23b93701c35a2609a9',1,'Tgstation::Server::Api::Models']]], - ['ioerror_4079',['IOError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5206bd7472156351d2d9a99633ac9580',1,'Tgstation::Server::Api::Models']]], - ['irc_4080',['Irc',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca2b6446aa685b2e1260e9d6f60239e547',1,'Tgstation::Server::Api::Models']]] + ['incompatible_4157',['Incompatible',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a2a208768bc7995cc26b7f3797d24b0b1',1,'Tgstation::Server::Host::Components::Session']]], + ['installcustomversion_4158',['InstallCustomVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9aa08f65365d7310334494f45af5e89bfb',1,'Tgstation::Server::Api::Rights']]], + ['installofficialorchangeactiveversion_4159',['InstallOfficialOrChangeActiveVersion',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a58ad8910d4292a8890f2c04cf5ddc50e',1,'Tgstation::Server::Api::Rights']]], + ['instanceatconflictingpath_4160',['InstanceAtConflictingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a92490b862c79e1b5898483fe55fc0c41',1,'Tgstation::Server::Api::Models']]], + ['instanceatexistingpath_4161',['InstanceAtExistingPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a494653f2fb509351b13abef0efe2e0ec',1,'Tgstation::Server::Api::Models']]], + ['instanceautoupdatestart_4162',['InstanceAutoUpdateStart',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html#ac30c818717e92c8fb65f389adec739b7aefc3f4c097e45227dcc2aee3aadc034f',1,'Tgstation::Server::Host::Components::Events']]], + ['instancedetachonline_4163',['InstanceDetachOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa7e647228c270688b33eebe6c40b4fd1',1,'Tgstation::Server::Api::Models']]], + ['instanceheaderrequired_4164',['InstanceHeaderRequired',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a49be0a84ceb449e1d69789040ca5ade1',1,'Tgstation::Server::Api::Models']]], + ['instancelimitreached_4165',['InstanceLimitReached',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ac043c16f72e845bae9e6a18cf61cb70c',1,'Tgstation::Server::Api::Models']]], + ['instancemanager_4166',['InstanceManager',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a7c77d4c45a003ee3d6b3589d2459cc49',1,'Tgstation::Server::Api::Rights']]], + ['instancemissingdreamdaemonsettings_4167',['InstanceMissingDreamDaemonSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a666168f23ed748258e22b8950c4b0f27',1,'Tgstation::Server::Api::Models']]], + ['instancemissingdreammakersettings_4168',['InstanceMissingDreamMakerSettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aa9f54d7bb19782121fa03fab399ba5f7',1,'Tgstation::Server::Api::Models']]], + ['instancemissingrepositorysettings_4169',['InstanceMissingRepositorySettings',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aaa4f2a635185665f10e6be24896ce863',1,'Tgstation::Server::Api::Models']]], + ['instancenotatwhitelistedpath_4170',['InstanceNotAtWhitelistedPath',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8ae9174043b3cb148be4194a6d1d17f72d',1,'Tgstation::Server::Api::Models']]], + ['instanceoffline_4171',['InstanceOffline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a64aec32513a670bfc35bea8f4a98aac1',1,'Tgstation::Server::Api::Models']]], + ['instancerelocateonline_4172',['InstanceRelocateOnline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a961349b83821ed87f141d4f939891c0f',1,'Tgstation::Server::Api::Models']]], + ['instancerenamed_4173',['InstanceRenamed',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html#a2814d5ceb5015f9b484e592eed55eac8a4f6bb27ca06982f2f66d7d0aa8f34b51',1,'Tgstation::Server::Host::Components::Interop::Topic']]], + ['instanceupdatetestmergeconflict_4174',['InstanceUpdateTestMergeConflict',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8af0345b1fb1d4e36d1812269f61e9fef5',1,'Tgstation::Server::Api::Models']]], + ['instanceuser_4175',['InstanceUser',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a7b02c8c3dadd90810a9eaa24712a0a20a07665be2d43147f42c2e73e8e2a19655',1,'Tgstation::Server::Api::Rights']]], + ['instancewhitespacename_4176',['InstanceWhitespaceName',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a024cf09531e01356ce46f4e6abd33f77',1,'Tgstation::Server::Api::Models']]], + ['internalservererror_4177',['InternalServerError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aecbf01325f1c744e9d7bb586ac2eb5ed',1,'Tgstation::Server::Api::Models']]], + ['invalidsecuritylevel_4178',['InvalidSecurityLevel',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a54c3bb0b7ab41e23b93701c35a2609a9',1,'Tgstation::Server::Api::Models']]], + ['ioerror_4179',['IOError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a5206bd7472156351d2d9a99633ac9580',1,'Tgstation::Server::Api::Models']]], + ['irc_4180',['Irc',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a2d962413bc23404156feea75066e39cca2b6446aa685b2e1260e9d6f60239e547',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_9.html b/search/enumvalues_9.html index e9a2d1f031..0f11bc101f 100644 --- a/search/enumvalues_9.html +++ b/search/enumvalues_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_9.js b/search/enumvalues_9.js index d038485ec4..a8d00d42d2 100644 --- a/search/enumvalues_9.js +++ b/search/enumvalues_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['jobstopped_4081',['JobStopped',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0bab1b90f15ed627993e94f156641b13',1,'Tgstation::Server::Api::Models']]] + ['jobstopped_4181',['JobStopped',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a0bab1b90f15ed627993e94f156641b13',1,'Tgstation::Server::Api::Models']]] ]; diff --git a/search/enumvalues_a.html b/search/enumvalues_a.html index fc89b79860..73842499ff 100644 --- a/search/enumvalues_a.html +++ b/search/enumvalues_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_a.js b/search/enumvalues_a.js index e512905d93..91952fdbf6 100644 --- a/search/enumvalues_a.js +++ b/search/enumvalues_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['kill_4082',['Kill',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da292ed5e525d66c64f13a3bf54a17c06a',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] + ['kill_4182',['Kill',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da292ed5e525d66c64f13a3bf54a17c06a',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] ]; diff --git a/search/enumvalues_b.html b/search/enumvalues_b.html index a2f2d6ec88..3100140bb0 100644 --- a/search/enumvalues_b.html +++ b/search/enumvalues_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_b.js b/search/enumvalues_b.js index a9e73ebbde..dc720e539d 100644 --- a/search/enumvalues_b.js +++ b/search/enumvalues_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['list_4083',['List',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()']]], - ['listinstalled_4084',['ListInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9ad102ca284a1a9df653f41ec4c1b22a0b',1,'Tgstation::Server::Api::Rights']]] + ['list_4183',['List',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a4ee29ca12c7d126654bd0e5275de6135',1,'Tgstation.Server.Api.Rights.List()']]], + ['listinstalled_4184',['ListInstalled',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9ad102ca284a1a9df653f41ec4c1b22a0b',1,'Tgstation::Server::Api::Rights']]] ]; diff --git a/search/enumvalues_c.html b/search/enumvalues_c.html index e26d3cb760..c652d845f1 100644 --- a/search/enumvalues_c.html +++ b/search/enumvalues_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_c.js b/search/enumvalues_c.js index ed4a1aa53d..64177e524a 100644 --- a/search/enumvalues_c.js +++ b/search/enumvalues_c.js @@ -1,9 +1,9 @@ var searchData= [ - ['mariadb_4085',['MariaDB',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca7f9733e208088b1ce6df3d4be1765396',1,'Tgstation::Server::Host::Configuration']]], - ['mergepullrequest_4086',['MergePullRequest',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a38de88c6dfc8b8669a4ffbc35be88aa2',1,'Tgstation::Server::Api::Rights']]], - ['missinggcore_4087',['MissingGCore',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9ba2c8a326ad80df8e791b207e8c3b47',1,'Tgstation::Server::Api::Models']]], - ['missinghostwatchdog_4088',['MissingHostWatchdog',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2ccc27c4e4def41ceaa583ef4eb565ef',1,'Tgstation::Server::Api::Models']]], - ['modelvalidationfailure_4089',['ModelValidationFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a036d4fdb3297f73bb3c4e14bcf438e3e',1,'Tgstation::Server::Api::Models']]], - ['mysql_4090',['MySql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca9df306f03daedccf83f5e2983dbb5422',1,'Tgstation::Server::Host::Configuration']]] + ['mariadb_4185',['MariaDB',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca7f9733e208088b1ce6df3d4be1765396',1,'Tgstation::Server::Host::Configuration']]], + ['mergepullrequest_4186',['MergePullRequest',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a38de88c6dfc8b8669a4ffbc35be88aa2',1,'Tgstation::Server::Api::Rights']]], + ['missinggcore_4187',['MissingGCore',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a9ba2c8a326ad80df8e791b207e8c3b47',1,'Tgstation::Server::Api::Models']]], + ['missinghostwatchdog_4188',['MissingHostWatchdog',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a2ccc27c4e4def41ceaa583ef4eb565ef',1,'Tgstation::Server::Api::Models']]], + ['modelvalidationfailure_4189',['ModelValidationFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8a036d4fdb3297f73bb3c4e14bcf438e3e',1,'Tgstation::Server::Api::Models']]], + ['mysql_4190',['MySql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca9df306f03daedccf83f5e2983dbb5422',1,'Tgstation::Server::Host::Configuration']]] ]; diff --git a/search/enumvalues_d.html b/search/enumvalues_d.html index 7f3aa3dcdc..f6c9af32a3 100644 --- a/search/enumvalues_d.html +++ b/search/enumvalues_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_d.js b/search/enumvalues_d.js index 4221e4ddec..5a05c005cc 100644 --- a/search/enumvalues_d.js +++ b/search/enumvalues_d.js @@ -1,9 +1,9 @@ var searchData= [ - ['never_4091',['Never',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a6e7b34fa59e1bd229b207892956dc41c',1,'Tgstation::Server::Host::Configuration']]], - ['nevervalidated_4092',['NeverValidated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a48849e38346e47a569371c42b698fe36',1,'Tgstation::Server::Host::Components::Session']]], - ['newdmbavailable_4093',['NewDmbAvailable',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9aa2bd02c12bb4927940a72a240edf9707',1,'Tgstation::Server::Host::Components::Watchdog']]], - ['nickserv_4094',['NickServ',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba1d351e780172667f7ac246f762907249',1,'Tgstation::Server::Api::Models']]], - ['none_4095',['None',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Host.NativeMethods.None()'],['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()']]], - ['normal_4096',['Normal',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a960b44c579bc2f6818d2daaf9e4c16f0',1,'Tgstation::Server::Host::Components::Session']]] + ['never_4191',['Never',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221a6e7b34fa59e1bd229b207892956dc41c',1,'Tgstation.Server.Api.Models.Never()'],['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a6e7b34fa59e1bd229b207892956dc41c',1,'Tgstation.Server.Host.Configuration.Never()']]], + ['nevervalidated_4192',['NeverValidated',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a9dd0e3dfc87080e8c7a91665b79891b3a48849e38346e47a569371c42b698fe36',1,'Tgstation::Server::Host::Components::Session']]], + ['newdmbavailable_4193',['NewDmbAvailable',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html#acb2ccc2dc05d01ec3a6448d3d57155c9aa2bd02c12bb4927940a72a240edf9707',1,'Tgstation::Server::Host::Components::Watchdog']]], + ['nickserv_4194',['NickServ',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a0a41c646f859c99d437373d8e6e0545ba1d351e780172667f7ac246f762907249',1,'Tgstation::Server::Api::Models']]], + ['none_4195',['None',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#afecbde132584de6ed7e41c8c7535f556a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Host.NativeMethods.None()'],['../namespace_tgstation_1_1_server_1_1_api.html#a8696a05b0d8adb9b7cc0f59ec4f6c5efa6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a95336db3db40dbae9701ef6e51240f39a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a5f1b5a9225190982810802d7a85bb601a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a691a59767073bc7dff0f17b809d07b0ca6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#affda1440f9c5e2dfcca65138d2f89a21a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#af199a84ed6fe6ca557db9de91070ad79a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a2a217a19e652f117e2324fb79ed838b9a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a6aac419b6a793fe07657d96ac48dee5da6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#acf2642afce6567c03b79876139a10a49a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()'],['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html#a580a36a11165b2590be342b45c31ec72a6adf97f83acf6453d4a6a4b1070f3754',1,'Tgstation.Server.Api.Rights.None()']]], + ['normal_4196',['Normal',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html#a3a9adb69be732dbd67aef59559f830c2a960b44c579bc2f6818d2daaf9e4c16f0',1,'Tgstation::Server::Host::Components::Session']]] ]; diff --git a/search/enumvalues_e.html b/search/enumvalues_e.html index 19843a33b0..fcb47e4824 100644 --- a/search/enumvalues_e.html +++ b/search/enumvalues_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_e.js b/search/enumvalues_e.js index 84d54a88fa..9248925f26 100644 --- a/search/enumvalues_e.js +++ b/search/enumvalues_e.js @@ -1,6 +1,7 @@ var searchData= [ - ['offline_4097',['Offline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a8d9da4bc0e49a50e09ac9f7e56789d39',1,'Tgstation::Server::Api::Models']]], - ['online_4098',['Online',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a54f664c70c22054ea0d8d26fc3997ce7',1,'Tgstation::Server::Api::Models']]], - ['only_4099',['Only',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a8392461cf759088854e16710b9b75d1a',1,'Tgstation::Server::Host::Configuration']]] + ['offline_4197',['Offline',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a8d9da4bc0e49a50e09ac9f7e56789d39',1,'Tgstation::Server::Api::Models']]], + ['onerror_4198',['OnError',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#af16952d12561118ecebc3d8ccf510221a44cdeb54c6f2aebad54611201c26d6f0',1,'Tgstation::Server::Api::Models']]], + ['online_4199',['Online',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#abcc98739b8feb9dd6744647f287e0683a54f664c70c22054ea0d8d26fc3997ce7',1,'Tgstation::Server::Api::Models']]], + ['only_4200',['Only',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#ac25a13ffb39d53803eca454f2a329fc1a8392461cf759088854e16710b9b75d1a',1,'Tgstation::Server::Host::Configuration']]] ]; diff --git a/search/enumvalues_f.html b/search/enumvalues_f.html index 4c2d74c821..c09718839d 100644 --- a/search/enumvalues_f.html +++ b/search/enumvalues_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/enumvalues_f.js b/search/enumvalues_f.js index d61c6c7813..236e6ccf73 100644 --- a/search/enumvalues_f.js +++ b/search/enumvalues_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['portupdate_4100',['PortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da07c70f002c020dbbf271b086039983ee',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], - ['postdeployfailure_4101',['PostDeployFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aeefdaf630484c27f44b218cacd77c325',1,'Tgstation::Server::Api::Models']]], - ['postgressql_4102',['PostgresSql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca322a60732eb9fd493923ee7e5db231b0',1,'Tgstation::Server::Host::Configuration']]], - ['prime_4103',['Prime',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91dabe7938e9a87618a98a7b6b47e12aa44b',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] + ['portupdate_4201',['PortUpdate',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91da07c70f002c020dbbf271b086039983ee',1,'Tgstation::Server::Host::Components::Interop::Bridge']]], + ['postdeployfailure_4202',['PostDeployFailure',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html#a1a6adb59dd51244efabf4e548e7075c8aeefdaf630484c27f44b218cacd77c325',1,'Tgstation::Server::Api::Models']]], + ['postgressql_4203',['PostgresSql',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html#acda8f6ee23a9ee8ac298f7b4a7d5617ca322a60732eb9fd493923ee7e5db231b0',1,'Tgstation::Server::Host::Configuration']]], + ['prime_4204',['Prime',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html#a50ede689312259c6ba4fe6595f8ad91dabe7938e9a87618a98a7b6b47e12aa44b',1,'Tgstation::Server::Host::Components::Interop::Bridge']]] ]; diff --git a/search/files_0.html b/search/files_0.html index 182d7eb43f..b3795eaa71 100644 --- a/search/files_0.html +++ b/search/files_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_0.js b/search/files_0.js index 7449116376..f7f9345435 100644 --- a/search/files_0.js +++ b/search/files_0.js @@ -1,101 +1,109 @@ var searchData= [ - ['20180906135553_5fmsinitialcreate_2ecs_2530',['20180906135553_MSInitialCreate.cs',['../20180906135553___m_s_initial_create_8cs.html',1,'']]], - ['20180906135553_5fmsinitialcreate_2edesigner_2ecs_2531',['20180906135553_MSInitialCreate.Designer.cs',['../20180906135553___m_s_initial_create_8_designer_8cs.html',1,'']]], - ['20180906143029_5fmyinitialcreate_2ecs_2532',['20180906143029_MYInitialCreate.cs',['../20180906143029___m_y_initial_create_8cs.html',1,'']]], - ['20180906143029_5fmyinitialcreate_2edesigner_2ecs_2533',['20180906143029_MYInitialCreate.Designer.cs',['../20180906143029___m_y_initial_create_8_designer_8cs.html',1,'']]], - ['20180918020726_5fmyaddminimumsecurity_2ecs_2534',['20180918020726_MYAddMinimumSecurity.cs',['../20180918020726___m_y_add_minimum_security_8cs.html',1,'']]], - ['20180918020726_5fmyaddminimumsecurity_2edesigner_2ecs_2535',['20180918020726_MYAddMinimumSecurity.Designer.cs',['../20180918020726___m_y_add_minimum_security_8_designer_8cs.html',1,'']]], - ['20180918021228_5fmsaddminimumsecurity_2ecs_2536',['20180918021228_MSAddMinimumSecurity.cs',['../20180918021228___m_s_add_minimum_security_8cs.html',1,'']]], - ['20180918021228_5fmsaddminimumsecurity_2edesigner_2ecs_2537',['20180918021228_MSAddMinimumSecurity.Designer.cs',['../20180918021228___m_s_add_minimum_security_8_designer_8cs.html',1,'']]], - ['20180918204520_5fmynullableandforeignkeycleanup_2ecs_2538',['20180918204520_MYNullableAndForeignKeyCleanup.cs',['../20180918204520___m_y_nullable_and_foreign_key_cleanup_8cs.html',1,'']]], - ['20180918204520_5fmynullableandforeignkeycleanup_2edesigner_2ecs_2539',['20180918204520_MYNullableAndForeignKeyCleanup.Designer.cs',['../20180918204520___m_y_nullable_and_foreign_key_cleanup_8_designer_8cs.html',1,'']]], - ['20180918205224_5fmsnullableandforeignkeycleanup_2ecs_2540',['20180918205224_MSNullableAndForeignKeyCleanup.cs',['../20180918205224___m_s_nullable_and_foreign_key_cleanup_8cs.html',1,'']]], - ['20180918205224_5fmsnullableandforeignkeycleanup_2edesigner_2ecs_2541',['20180918205224_MSNullableAndForeignKeyCleanup.Designer.cs',['../20180918205224___m_s_nullable_and_foreign_key_cleanup_8_designer_8cs.html',1,'']]], - ['20180926033145_5fmsreattachcompilejobrequired_2ecs_2542',['20180926033145_MSReattachCompileJobRequired.cs',['../20180926033145___m_s_reattach_compile_job_required_8cs.html',1,'']]], - ['20180926033145_5fmsreattachcompilejobrequired_2edesigner_2ecs_2543',['20180926033145_MSReattachCompileJobRequired.Designer.cs',['../20180926033145___m_s_reattach_compile_job_required_8_designer_8cs.html',1,'']]], - ['20180926034014_5fmyreattachcompilejobrequired_2ecs_2544',['20180926034014_MYReattachCompileJobRequired.cs',['../20180926034014___m_y_reattach_compile_job_required_8cs.html',1,'']]], - ['20180926034014_5fmyreattachcompilejobrequired_2edesigner_2ecs_2545',['20180926034014_MYReattachCompileJobRequired.Designer.cs',['../20180926034014___m_y_reattach_compile_job_required_8_designer_8cs.html',1,'']]], - ['20181124231534_5fmstoggletestmergecomments_2ecs_2546',['20181124231534_MSToggleTestmergeComments.cs',['../20181124231534___m_s_toggle_testmerge_comments_8cs.html',1,'']]], - ['20181124231534_5fmstoggletestmergecomments_2edesigner_2ecs_2547',['20181124231534_MSToggleTestmergeComments.Designer.cs',['../20181124231534___m_s_toggle_testmerge_comments_8_designer_8cs.html',1,'']]], - ['20181124231549_5fmytoggletestmergecomments_2ecs_2548',['20181124231549_MYToggleTestmergeComments.cs',['../20181124231549___m_y_toggle_testmerge_comments_8cs.html',1,'']]], - ['20181124231549_5fmytoggletestmergecomments_2edesigner_2ecs_2549',['20181124231549_MYToggleTestmergeComments.Designer.cs',['../20181124231549___m_y_toggle_testmerge_comments_8_designer_8cs.html',1,'']]], - ['20190219041825_5fmsfixrevinfoindex_2ecs_2550',['20190219041825_MSFixRevInfoIndex.cs',['../20190219041825___m_s_fix_rev_info_index_8cs.html',1,'']]], - ['20190219041825_5fmsfixrevinfoindex_2edesigner_2ecs_2551',['20190219041825_MSFixRevInfoIndex.Designer.cs',['../20190219041825___m_s_fix_rev_info_index_8_designer_8cs.html',1,'']]], - ['20190219042440_5fmyfixrevinfoindex_2ecs_2552',['20190219042440_MYFixRevInfoIndex.cs',['../20190219042440___m_y_fix_rev_info_index_8cs.html',1,'']]], - ['20190219042440_5fmyfixrevinfoindex_2edesigner_2ecs_2553',['20190219042440_MYFixRevInfoIndex.Designer.cs',['../20190219042440___m_y_fix_rev_info_index_8_designer_8cs.html',1,'']]], - ['20200121170252_5fmsaddchatbotreconnectioninterval_2ecs_2554',['20200121170252_MSAddChatBotReconnectionInterval.cs',['../20200121170252___m_s_add_chat_bot_reconnection_interval_8cs.html',1,'']]], - ['20200121170252_5fmsaddchatbotreconnectioninterval_2edesigner_2ecs_2555',['20200121170252_MSAddChatBotReconnectionInterval.Designer.cs',['../20200121170252___m_s_add_chat_bot_reconnection_interval_8_designer_8cs.html',1,'']]], - ['20200121171159_5fmyaddchatbotreconnectioninterval_2ecs_2556',['20200121171159_MYAddChatBotReconnectionInterval.cs',['../20200121171159___m_y_add_chat_bot_reconnection_interval_8cs.html',1,'']]], - ['20200121171159_5fmyaddchatbotreconnectioninterval_2edesigner_2ecs_2557',['20200121171159_MYAddChatBotReconnectionInterval.Designer.cs',['../20200121171159___m_y_add_chat_bot_reconnection_interval_8_designer_8cs.html',1,'']]], - ['20200411164808_5fmstonsofvalidation_2ecs_2558',['20200411164808_MSTonsOfValidation.cs',['../20200411164808___m_s_tons_of_validation_8cs.html',1,'']]], - ['20200411164808_5fmstonsofvalidation_2edesigner_2ecs_2559',['20200411164808_MSTonsOfValidation.Designer.cs',['../20200411164808___m_s_tons_of_validation_8_designer_8cs.html',1,'']]], - ['20200411170010_5fmytonsofvalidation_2ecs_2560',['20200411170010_MYTonsOfValidation.cs',['../20200411170010___m_y_tons_of_validation_8cs.html',1,'']]], - ['20200411170010_5fmytonsofvalidation_2edesigner_2ecs_2561',['20200411170010_MYTonsOfValidation.Designer.cs',['../20200411170010___m_y_tons_of_validation_8_designer_8cs.html',1,'']]], - ['20200420175359_5fmslimitsonchat_2ecs_2562',['20200420175359_MSLimitsOnChat.cs',['../20200420175359___m_s_limits_on_chat_8cs.html',1,'']]], - ['20200420175359_5fmslimitsonchat_2edesigner_2ecs_2563',['20200420175359_MSLimitsOnChat.Designer.cs',['../20200420175359___m_s_limits_on_chat_8_designer_8cs.html',1,'']]], - ['20200420181015_5fmylimitsonchat_2ecs_2564',['20200420181015_MYLimitsOnChat.cs',['../20200420181015___m_y_limits_on_chat_8cs.html',1,'']]], - ['20200420181015_5fmylimitsonchat_2edesigner_2ecs_2565',['20200420181015_MYLimitsOnChat.Designer.cs',['../20200420181015___m_y_limits_on_chat_8_designer_8cs.html',1,'']]], - ['20200422001202_5fmsaddcompilejobdmapiversion_2ecs_2566',['20200422001202_MSAddCompileJobDMApiVersion.cs',['../20200422001202___m_s_add_compile_job_d_m_api_version_8cs.html',1,'']]], - ['20200422001202_5fmsaddcompilejobdmapiversion_2edesigner_2ecs_2567',['20200422001202_MSAddCompileJobDMApiVersion.Designer.cs',['../20200422001202___m_s_add_compile_job_d_m_api_version_8_designer_8cs.html',1,'']]], - ['20200422010115_5fmyaddcompilejobdmapiversion_2ecs_2568',['20200422010115_MYAddCompileJobDMApiVersion.cs',['../20200422010115___m_y_add_compile_job_d_m_api_version_8cs.html',1,'']]], - ['20200422010115_5fmyaddcompilejobdmapiversion_2edesigner_2ecs_2569',['20200422010115_MYAddCompileJobDMApiVersion.Designer.cs',['../20200422010115___m_y_add_compile_job_d_m_api_version_8_designer_8cs.html',1,'']]], - ['20200423003841_5fmycheckpointrebuild_2ecs_2570',['20200423003841_MYCheckpointRebuild.cs',['../20200423003841___m_y_checkpoint_rebuild_8cs.html',1,'']]], - ['20200423003841_5fmycheckpointrebuild_2edesigner_2ecs_2571',['20200423003841_MYCheckpointRebuild.Designer.cs',['../20200423003841___m_y_checkpoint_rebuild_8_designer_8cs.html',1,'']]], - ['20200423004015_5fmscheckpointrebuild_2ecs_2572',['20200423004015_MSCheckpointRebuild.cs',['../20200423004015___m_s_checkpoint_rebuild_8cs.html',1,'']]], - ['20200423004015_5fmscheckpointrebuild_2edesigner_2ecs_2573',['20200423004015_MSCheckpointRebuild.Designer.cs',['../20200423004015___m_s_checkpoint_rebuild_8_designer_8cs.html',1,'']]], - ['20200423052142_5fmskilljsonsadddmapiversion_2ecs_2574',['20200423052142_MSKillJsonsAddDMApiVersion.cs',['../20200423052142___m_s_kill_jsons_add_d_m_api_version_8cs.html',1,'']]], - ['20200423052142_5fmskilljsonsadddmapiversion_2edesigner_2ecs_2575',['20200423052142_MSKillJsonsAddDMApiVersion.Designer.cs',['../20200423052142___m_s_kill_jsons_add_d_m_api_version_8_designer_8cs.html',1,'']]], - ['20200423052709_5fmykilljsonsadddmapiversion_2ecs_2576',['20200423052709_MYKillJsonsAddDMApiVersion.cs',['../20200423052709___m_y_kill_jsons_add_d_m_api_version_8cs.html',1,'']]], - ['20200423052709_5fmykilljsonsadddmapiversion_2edesigner_2ecs_2577',['20200423052709_MYKillJsonsAddDMApiVersion.Designer.cs',['../20200423052709___m_y_kill_jsons_add_d_m_api_version_8_designer_8cs.html',1,'']]], - ['20200425024433_5fmsaddjoberrorcodes_2ecs_2578',['20200425024433_MSAddJobErrorCodes.cs',['../20200425024433___m_s_add_job_error_codes_8cs.html',1,'']]], - ['20200425024433_5fmsaddjoberrorcodes_2edesigner_2ecs_2579',['20200425024433_MSAddJobErrorCodes.Designer.cs',['../20200425024433___m_s_add_job_error_codes_8_designer_8cs.html',1,'']]], - ['20200425024953_5fmyaddjoberrorcodes_2ecs_2580',['20200425024953_MYAddJobErrorCodes.cs',['../20200425024953___m_y_add_job_error_codes_8cs.html',1,'']]], - ['20200425024953_5fmyaddjoberrorcodes_2edesigner_2ecs_2581',['20200425024953_MYAddJobErrorCodes.Designer.cs',['../20200425024953___m_y_add_job_error_codes_8_designer_8cs.html',1,'']]], - ['20200427173852_5fmsfixcascadingdelete_2ecs_2582',['20200427173852_MSFixCascadingDelete.cs',['../20200427173852___m_s_fix_cascading_delete_8cs.html',1,'']]], - ['20200427173852_5fmsfixcascadingdelete_2edesigner_2ecs_2583',['20200427173852_MSFixCascadingDelete.Designer.cs',['../20200427173852___m_s_fix_cascading_delete_8_designer_8cs.html',1,'']]], - ['20200427180159_5fmyfixcascadingdelete_2ecs_2584',['20200427180159_MYFixCascadingDelete.cs',['../20200427180159___m_y_fix_cascading_delete_8cs.html',1,'']]], - ['20200427180159_5fmyfixcascadingdelete_2edesigner_2ecs_2585',['20200427180159_MYFixCascadingDelete.Designer.cs',['../20200427180159___m_y_fix_cascading_delete_8_designer_8cs.html',1,'']]], - ['20200427180904_5fslrebuild_2ecs_2586',['20200427180904_SLRebuild.cs',['../20200427180904___s_l_rebuild_8cs.html',1,'']]], - ['20200427180904_5fslrebuild_2edesigner_2ecs_2587',['20200427180904_SLRebuild.Designer.cs',['../20200427180904___s_l_rebuild_8_designer_8cs.html',1,'']]], - ['20200511005957_5fmsaddheartbeat_2ecs_2588',['20200511005957_MSAddHeartbeat.cs',['../20200511005957___m_s_add_heartbeat_8cs.html',1,'']]], - ['20200511005957_5fmsaddheartbeat_2edesigner_2ecs_2589',['20200511005957_MSAddHeartbeat.Designer.cs',['../20200511005957___m_s_add_heartbeat_8_designer_8cs.html',1,'']]], - ['20200511011048_5fmyaddheartbeat_2ecs_2590',['20200511011048_MYAddHeartbeat.cs',['../20200511011048___m_y_add_heartbeat_8cs.html',1,'']]], - ['20200511011048_5fmyaddheartbeat_2edesigner_2ecs_2591',['20200511011048_MYAddHeartbeat.Designer.cs',['../20200511011048___m_y_add_heartbeat_8_designer_8cs.html',1,'']]], - ['20200511012117_5fsladdheartbeat_2ecs_2592',['20200511012117_SLAddHeartbeat.cs',['../20200511012117___s_l_add_heartbeat_8cs.html',1,'']]], - ['20200511012117_5fsladdheartbeat_2edesigner_2ecs_2593',['20200511012117_SLAddHeartbeat.Designer.cs',['../20200511012117___s_l_add_heartbeat_8_designer_8cs.html',1,'']]], - ['20200511162912_5fslremovesoftcolumns_2ecs_2594',['20200511162912_SLRemoveSoftColumns.cs',['../20200511162912___s_l_remove_soft_columns_8cs.html',1,'']]], - ['20200511162912_5fslremovesoftcolumns_2edesigner_2ecs_2595',['20200511162912_SLRemoveSoftColumns.Designer.cs',['../20200511162912___s_l_remove_soft_columns_8_designer_8cs.html',1,'']]], - ['20200512181801_5fmsremovesoftcolumns_2ecs_2596',['20200512181801_MSRemoveSoftColumns.cs',['../20200512181801___m_s_remove_soft_columns_8cs.html',1,'']]], - ['20200512181801_5fmsremovesoftcolumns_2edesigner_2ecs_2597',['20200512181801_MSRemoveSoftColumns.Designer.cs',['../20200512181801___m_s_remove_soft_columns_8_designer_8cs.html',1,'']]], - ['20200512182535_5fmyremovesoftcolumns_2ecs_2598',['20200512182535_MYRemoveSoftColumns.cs',['../20200512182535___m_y_remove_soft_columns_8cs.html',1,'']]], - ['20200512182535_5fmyremovesoftcolumns_2edesigner_2ecs_2599',['20200512182535_MYRemoveSoftColumns.Designer.cs',['../20200512182535___m_y_remove_soft_columns_8_designer_8cs.html',1,'']]], - ['20200516111712_5fpgcreate_2ecs_2600',['20200516111712_PGCreate.cs',['../20200516111712___p_g_create_8cs.html',1,'']]], - ['20200516111712_5fpgcreate_2edesigner_2ecs_2601',['20200516111712_PGCreate.Designer.cs',['../20200516111712___p_g_create_8_designer_8cs.html',1,'']]], - ['20200529171541_5fmyfixforeignkey_2ecs_2602',['20200529171541_MYFixForeignKey.cs',['../20200529171541___m_y_fix_foreign_key_8cs.html',1,'']]], - ['20200529171541_5fmyfixforeignkey_2edesigner_2ecs_2603',['20200529171541_MYFixForeignKey.Designer.cs',['../20200529171541___m_y_fix_foreign_key_8_designer_8cs.html',1,'']]], - ['20200616175424_5fmstopictimeout_2ecs_2604',['20200616175424_MSTopicTimeout.cs',['../20200616175424___m_s_topic_timeout_8cs.html',1,'']]], - ['20200616175424_5fmstopictimeout_2edesigner_2ecs_2605',['20200616175424_MSTopicTimeout.Designer.cs',['../20200616175424___m_s_topic_timeout_8_designer_8cs.html',1,'']]], - ['20200616175535_5fmytopictimeout_2ecs_2606',['20200616175535_MYTopicTimeout.cs',['../20200616175535___m_y_topic_timeout_8cs.html',1,'']]], - ['20200616175535_5fmytopictimeout_2edesigner_2ecs_2607',['20200616175535_MYTopicTimeout.Designer.cs',['../20200616175535___m_y_topic_timeout_8_designer_8cs.html',1,'']]], - ['20200616180742_5fsltopictimeout_2ecs_2608',['20200616180742_SLTopicTimeout.cs',['../20200616180742___s_l_topic_timeout_8cs.html',1,'']]], - ['20200616180742_5fsltopictimeout_2edesigner_2ecs_2609',['20200616180742_SLTopicTimeout.Designer.cs',['../20200616180742___s_l_topic_timeout_8_designer_8cs.html',1,'']]], - ['20200616180842_5fpgtopictimeout_2ecs_2610',['20200616180842_PGTopicTimeout.cs',['../20200616180842___p_g_topic_timeout_8cs.html',1,'']]], - ['20200616180842_5fpgtopictimeout_2edesigner_2ecs_2611',['20200616180842_PGTopicTimeout.Designer.cs',['../20200616180842___p_g_topic_timeout_8_designer_8cs.html',1,'']]], - ['20200629184803_5fmsremoveexperimentalwatchdog_2ecs_2612',['20200629184803_MSRemoveExperimentalWatchdog.cs',['../20200629184803___m_s_remove_experimental_watchdog_8cs.html',1,'']]], - ['20200629184803_5fmsremoveexperimentalwatchdog_2edesigner_2ecs_2613',['20200629184803_MSRemoveExperimentalWatchdog.Designer.cs',['../20200629184803___m_s_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], - ['20200629184843_5fmyremoveexperimentalwatchdog_2ecs_2614',['20200629184843_MYRemoveExperimentalWatchdog.cs',['../20200629184843___m_y_remove_experimental_watchdog_8cs.html',1,'']]], - ['20200629184843_5fmyremoveexperimentalwatchdog_2edesigner_2ecs_2615',['20200629184843_MYRemoveExperimentalWatchdog.Designer.cs',['../20200629184843___m_y_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], - ['20200629184928_5fpgremoveexperimentalwatchdog_2ecs_2616',['20200629184928_PGRemoveExperimentalWatchdog.cs',['../20200629184928___p_g_remove_experimental_watchdog_8cs.html',1,'']]], - ['20200629184928_5fpgremoveexperimentalwatchdog_2edesigner_2ecs_2617',['20200629184928_PGRemoveExperimentalWatchdog.Designer.cs',['../20200629184928___p_g_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], - ['20200629185014_5fslremoveexperimentalwatchdog_2ecs_2618',['20200629185014_SLRemoveExperimentalWatchdog.cs',['../20200629185014___s_l_remove_experimental_watchdog_8cs.html',1,'']]], - ['20200629185014_5fslremoveexperimentalwatchdog_2edesigner_2ecs_2619',['20200629185014_SLRemoveExperimentalWatchdog.Designer.cs',['../20200629185014___s_l_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], - ['20200705163512_5fmsallownulldmapi_2ecs_2620',['20200705163512_MSAllowNullDMApi.cs',['../20200705163512___m_s_allow_null_d_m_api_8cs.html',1,'']]], - ['20200705163512_5fmsallownulldmapi_2edesigner_2ecs_2621',['20200705163512_MSAllowNullDMApi.Designer.cs',['../20200705163512___m_s_allow_null_d_m_api_8_designer_8cs.html',1,'']]], - ['20200705163547_5fmyallownulldmapi_2ecs_2622',['20200705163547_MYAllowNullDMApi.cs',['../20200705163547___m_y_allow_null_d_m_api_8cs.html',1,'']]], - ['20200705163547_5fmyallownulldmapi_2edesigner_2ecs_2623',['20200705163547_MYAllowNullDMApi.Designer.cs',['../20200705163547___m_y_allow_null_d_m_api_8_designer_8cs.html',1,'']]], - ['20200705163624_5fpgallownulldmapi_2ecs_2624',['20200705163624_PGAllowNullDMApi.cs',['../20200705163624___p_g_allow_null_d_m_api_8cs.html',1,'']]], - ['20200705163624_5fpgallownulldmapi_2edesigner_2ecs_2625',['20200705163624_PGAllowNullDMApi.Designer.cs',['../20200705163624___p_g_allow_null_d_m_api_8_designer_8cs.html',1,'']]], - ['20200705163700_5fslallownulldmapi_2ecs_2626',['20200705163700_SLAllowNullDMApi.cs',['../20200705163700___s_l_allow_null_d_m_api_8cs.html',1,'']]], - ['20200705163700_5fslallownulldmapi_2edesigner_2ecs_2627',['20200705163700_SLAllowNullDMApi.Designer.cs',['../20200705163700___s_l_allow_null_d_m_api_8_designer_8cs.html',1,'']]] + ['20180906135553_5fmsinitialcreate_2ecs_2591',['20180906135553_MSInitialCreate.cs',['../20180906135553___m_s_initial_create_8cs.html',1,'']]], + ['20180906135553_5fmsinitialcreate_2edesigner_2ecs_2592',['20180906135553_MSInitialCreate.Designer.cs',['../20180906135553___m_s_initial_create_8_designer_8cs.html',1,'']]], + ['20180906143029_5fmyinitialcreate_2ecs_2593',['20180906143029_MYInitialCreate.cs',['../20180906143029___m_y_initial_create_8cs.html',1,'']]], + ['20180906143029_5fmyinitialcreate_2edesigner_2ecs_2594',['20180906143029_MYInitialCreate.Designer.cs',['../20180906143029___m_y_initial_create_8_designer_8cs.html',1,'']]], + ['20180918020726_5fmyaddminimumsecurity_2ecs_2595',['20180918020726_MYAddMinimumSecurity.cs',['../20180918020726___m_y_add_minimum_security_8cs.html',1,'']]], + ['20180918020726_5fmyaddminimumsecurity_2edesigner_2ecs_2596',['20180918020726_MYAddMinimumSecurity.Designer.cs',['../20180918020726___m_y_add_minimum_security_8_designer_8cs.html',1,'']]], + ['20180918021228_5fmsaddminimumsecurity_2ecs_2597',['20180918021228_MSAddMinimumSecurity.cs',['../20180918021228___m_s_add_minimum_security_8cs.html',1,'']]], + ['20180918021228_5fmsaddminimumsecurity_2edesigner_2ecs_2598',['20180918021228_MSAddMinimumSecurity.Designer.cs',['../20180918021228___m_s_add_minimum_security_8_designer_8cs.html',1,'']]], + ['20180918204520_5fmynullableandforeignkeycleanup_2ecs_2599',['20180918204520_MYNullableAndForeignKeyCleanup.cs',['../20180918204520___m_y_nullable_and_foreign_key_cleanup_8cs.html',1,'']]], + ['20180918204520_5fmynullableandforeignkeycleanup_2edesigner_2ecs_2600',['20180918204520_MYNullableAndForeignKeyCleanup.Designer.cs',['../20180918204520___m_y_nullable_and_foreign_key_cleanup_8_designer_8cs.html',1,'']]], + ['20180918205224_5fmsnullableandforeignkeycleanup_2ecs_2601',['20180918205224_MSNullableAndForeignKeyCleanup.cs',['../20180918205224___m_s_nullable_and_foreign_key_cleanup_8cs.html',1,'']]], + ['20180918205224_5fmsnullableandforeignkeycleanup_2edesigner_2ecs_2602',['20180918205224_MSNullableAndForeignKeyCleanup.Designer.cs',['../20180918205224___m_s_nullable_and_foreign_key_cleanup_8_designer_8cs.html',1,'']]], + ['20180926033145_5fmsreattachcompilejobrequired_2ecs_2603',['20180926033145_MSReattachCompileJobRequired.cs',['../20180926033145___m_s_reattach_compile_job_required_8cs.html',1,'']]], + ['20180926033145_5fmsreattachcompilejobrequired_2edesigner_2ecs_2604',['20180926033145_MSReattachCompileJobRequired.Designer.cs',['../20180926033145___m_s_reattach_compile_job_required_8_designer_8cs.html',1,'']]], + ['20180926034014_5fmyreattachcompilejobrequired_2ecs_2605',['20180926034014_MYReattachCompileJobRequired.cs',['../20180926034014___m_y_reattach_compile_job_required_8cs.html',1,'']]], + ['20180926034014_5fmyreattachcompilejobrequired_2edesigner_2ecs_2606',['20180926034014_MYReattachCompileJobRequired.Designer.cs',['../20180926034014___m_y_reattach_compile_job_required_8_designer_8cs.html',1,'']]], + ['20181124231534_5fmstoggletestmergecomments_2ecs_2607',['20181124231534_MSToggleTestmergeComments.cs',['../20181124231534___m_s_toggle_testmerge_comments_8cs.html',1,'']]], + ['20181124231534_5fmstoggletestmergecomments_2edesigner_2ecs_2608',['20181124231534_MSToggleTestmergeComments.Designer.cs',['../20181124231534___m_s_toggle_testmerge_comments_8_designer_8cs.html',1,'']]], + ['20181124231549_5fmytoggletestmergecomments_2ecs_2609',['20181124231549_MYToggleTestmergeComments.cs',['../20181124231549___m_y_toggle_testmerge_comments_8cs.html',1,'']]], + ['20181124231549_5fmytoggletestmergecomments_2edesigner_2ecs_2610',['20181124231549_MYToggleTestmergeComments.Designer.cs',['../20181124231549___m_y_toggle_testmerge_comments_8_designer_8cs.html',1,'']]], + ['20190219041825_5fmsfixrevinfoindex_2ecs_2611',['20190219041825_MSFixRevInfoIndex.cs',['../20190219041825___m_s_fix_rev_info_index_8cs.html',1,'']]], + ['20190219041825_5fmsfixrevinfoindex_2edesigner_2ecs_2612',['20190219041825_MSFixRevInfoIndex.Designer.cs',['../20190219041825___m_s_fix_rev_info_index_8_designer_8cs.html',1,'']]], + ['20190219042440_5fmyfixrevinfoindex_2ecs_2613',['20190219042440_MYFixRevInfoIndex.cs',['../20190219042440___m_y_fix_rev_info_index_8cs.html',1,'']]], + ['20190219042440_5fmyfixrevinfoindex_2edesigner_2ecs_2614',['20190219042440_MYFixRevInfoIndex.Designer.cs',['../20190219042440___m_y_fix_rev_info_index_8_designer_8cs.html',1,'']]], + ['20200121170252_5fmsaddchatbotreconnectioninterval_2ecs_2615',['20200121170252_MSAddChatBotReconnectionInterval.cs',['../20200121170252___m_s_add_chat_bot_reconnection_interval_8cs.html',1,'']]], + ['20200121170252_5fmsaddchatbotreconnectioninterval_2edesigner_2ecs_2616',['20200121170252_MSAddChatBotReconnectionInterval.Designer.cs',['../20200121170252___m_s_add_chat_bot_reconnection_interval_8_designer_8cs.html',1,'']]], + ['20200121171159_5fmyaddchatbotreconnectioninterval_2ecs_2617',['20200121171159_MYAddChatBotReconnectionInterval.cs',['../20200121171159___m_y_add_chat_bot_reconnection_interval_8cs.html',1,'']]], + ['20200121171159_5fmyaddchatbotreconnectioninterval_2edesigner_2ecs_2618',['20200121171159_MYAddChatBotReconnectionInterval.Designer.cs',['../20200121171159___m_y_add_chat_bot_reconnection_interval_8_designer_8cs.html',1,'']]], + ['20200411164808_5fmstonsofvalidation_2ecs_2619',['20200411164808_MSTonsOfValidation.cs',['../20200411164808___m_s_tons_of_validation_8cs.html',1,'']]], + ['20200411164808_5fmstonsofvalidation_2edesigner_2ecs_2620',['20200411164808_MSTonsOfValidation.Designer.cs',['../20200411164808___m_s_tons_of_validation_8_designer_8cs.html',1,'']]], + ['20200411170010_5fmytonsofvalidation_2ecs_2621',['20200411170010_MYTonsOfValidation.cs',['../20200411170010___m_y_tons_of_validation_8cs.html',1,'']]], + ['20200411170010_5fmytonsofvalidation_2edesigner_2ecs_2622',['20200411170010_MYTonsOfValidation.Designer.cs',['../20200411170010___m_y_tons_of_validation_8_designer_8cs.html',1,'']]], + ['20200420175359_5fmslimitsonchat_2ecs_2623',['20200420175359_MSLimitsOnChat.cs',['../20200420175359___m_s_limits_on_chat_8cs.html',1,'']]], + ['20200420175359_5fmslimitsonchat_2edesigner_2ecs_2624',['20200420175359_MSLimitsOnChat.Designer.cs',['../20200420175359___m_s_limits_on_chat_8_designer_8cs.html',1,'']]], + ['20200420181015_5fmylimitsonchat_2ecs_2625',['20200420181015_MYLimitsOnChat.cs',['../20200420181015___m_y_limits_on_chat_8cs.html',1,'']]], + ['20200420181015_5fmylimitsonchat_2edesigner_2ecs_2626',['20200420181015_MYLimitsOnChat.Designer.cs',['../20200420181015___m_y_limits_on_chat_8_designer_8cs.html',1,'']]], + ['20200422001202_5fmsaddcompilejobdmapiversion_2ecs_2627',['20200422001202_MSAddCompileJobDMApiVersion.cs',['../20200422001202___m_s_add_compile_job_d_m_api_version_8cs.html',1,'']]], + ['20200422001202_5fmsaddcompilejobdmapiversion_2edesigner_2ecs_2628',['20200422001202_MSAddCompileJobDMApiVersion.Designer.cs',['../20200422001202___m_s_add_compile_job_d_m_api_version_8_designer_8cs.html',1,'']]], + ['20200422010115_5fmyaddcompilejobdmapiversion_2ecs_2629',['20200422010115_MYAddCompileJobDMApiVersion.cs',['../20200422010115___m_y_add_compile_job_d_m_api_version_8cs.html',1,'']]], + ['20200422010115_5fmyaddcompilejobdmapiversion_2edesigner_2ecs_2630',['20200422010115_MYAddCompileJobDMApiVersion.Designer.cs',['../20200422010115___m_y_add_compile_job_d_m_api_version_8_designer_8cs.html',1,'']]], + ['20200423003841_5fmycheckpointrebuild_2ecs_2631',['20200423003841_MYCheckpointRebuild.cs',['../20200423003841___m_y_checkpoint_rebuild_8cs.html',1,'']]], + ['20200423003841_5fmycheckpointrebuild_2edesigner_2ecs_2632',['20200423003841_MYCheckpointRebuild.Designer.cs',['../20200423003841___m_y_checkpoint_rebuild_8_designer_8cs.html',1,'']]], + ['20200423004015_5fmscheckpointrebuild_2ecs_2633',['20200423004015_MSCheckpointRebuild.cs',['../20200423004015___m_s_checkpoint_rebuild_8cs.html',1,'']]], + ['20200423004015_5fmscheckpointrebuild_2edesigner_2ecs_2634',['20200423004015_MSCheckpointRebuild.Designer.cs',['../20200423004015___m_s_checkpoint_rebuild_8_designer_8cs.html',1,'']]], + ['20200423052142_5fmskilljsonsadddmapiversion_2ecs_2635',['20200423052142_MSKillJsonsAddDMApiVersion.cs',['../20200423052142___m_s_kill_jsons_add_d_m_api_version_8cs.html',1,'']]], + ['20200423052142_5fmskilljsonsadddmapiversion_2edesigner_2ecs_2636',['20200423052142_MSKillJsonsAddDMApiVersion.Designer.cs',['../20200423052142___m_s_kill_jsons_add_d_m_api_version_8_designer_8cs.html',1,'']]], + ['20200423052709_5fmykilljsonsadddmapiversion_2ecs_2637',['20200423052709_MYKillJsonsAddDMApiVersion.cs',['../20200423052709___m_y_kill_jsons_add_d_m_api_version_8cs.html',1,'']]], + ['20200423052709_5fmykilljsonsadddmapiversion_2edesigner_2ecs_2638',['20200423052709_MYKillJsonsAddDMApiVersion.Designer.cs',['../20200423052709___m_y_kill_jsons_add_d_m_api_version_8_designer_8cs.html',1,'']]], + ['20200425024433_5fmsaddjoberrorcodes_2ecs_2639',['20200425024433_MSAddJobErrorCodes.cs',['../20200425024433___m_s_add_job_error_codes_8cs.html',1,'']]], + ['20200425024433_5fmsaddjoberrorcodes_2edesigner_2ecs_2640',['20200425024433_MSAddJobErrorCodes.Designer.cs',['../20200425024433___m_s_add_job_error_codes_8_designer_8cs.html',1,'']]], + ['20200425024953_5fmyaddjoberrorcodes_2ecs_2641',['20200425024953_MYAddJobErrorCodes.cs',['../20200425024953___m_y_add_job_error_codes_8cs.html',1,'']]], + ['20200425024953_5fmyaddjoberrorcodes_2edesigner_2ecs_2642',['20200425024953_MYAddJobErrorCodes.Designer.cs',['../20200425024953___m_y_add_job_error_codes_8_designer_8cs.html',1,'']]], + ['20200427173852_5fmsfixcascadingdelete_2ecs_2643',['20200427173852_MSFixCascadingDelete.cs',['../20200427173852___m_s_fix_cascading_delete_8cs.html',1,'']]], + ['20200427173852_5fmsfixcascadingdelete_2edesigner_2ecs_2644',['20200427173852_MSFixCascadingDelete.Designer.cs',['../20200427173852___m_s_fix_cascading_delete_8_designer_8cs.html',1,'']]], + ['20200427180159_5fmyfixcascadingdelete_2ecs_2645',['20200427180159_MYFixCascadingDelete.cs',['../20200427180159___m_y_fix_cascading_delete_8cs.html',1,'']]], + ['20200427180159_5fmyfixcascadingdelete_2edesigner_2ecs_2646',['20200427180159_MYFixCascadingDelete.Designer.cs',['../20200427180159___m_y_fix_cascading_delete_8_designer_8cs.html',1,'']]], + ['20200427180904_5fslrebuild_2ecs_2647',['20200427180904_SLRebuild.cs',['../20200427180904___s_l_rebuild_8cs.html',1,'']]], + ['20200427180904_5fslrebuild_2edesigner_2ecs_2648',['20200427180904_SLRebuild.Designer.cs',['../20200427180904___s_l_rebuild_8_designer_8cs.html',1,'']]], + ['20200511005957_5fmsaddheartbeat_2ecs_2649',['20200511005957_MSAddHeartbeat.cs',['../20200511005957___m_s_add_heartbeat_8cs.html',1,'']]], + ['20200511005957_5fmsaddheartbeat_2edesigner_2ecs_2650',['20200511005957_MSAddHeartbeat.Designer.cs',['../20200511005957___m_s_add_heartbeat_8_designer_8cs.html',1,'']]], + ['20200511011048_5fmyaddheartbeat_2ecs_2651',['20200511011048_MYAddHeartbeat.cs',['../20200511011048___m_y_add_heartbeat_8cs.html',1,'']]], + ['20200511011048_5fmyaddheartbeat_2edesigner_2ecs_2652',['20200511011048_MYAddHeartbeat.Designer.cs',['../20200511011048___m_y_add_heartbeat_8_designer_8cs.html',1,'']]], + ['20200511012117_5fsladdheartbeat_2ecs_2653',['20200511012117_SLAddHeartbeat.cs',['../20200511012117___s_l_add_heartbeat_8cs.html',1,'']]], + ['20200511012117_5fsladdheartbeat_2edesigner_2ecs_2654',['20200511012117_SLAddHeartbeat.Designer.cs',['../20200511012117___s_l_add_heartbeat_8_designer_8cs.html',1,'']]], + ['20200511162912_5fslremovesoftcolumns_2ecs_2655',['20200511162912_SLRemoveSoftColumns.cs',['../20200511162912___s_l_remove_soft_columns_8cs.html',1,'']]], + ['20200511162912_5fslremovesoftcolumns_2edesigner_2ecs_2656',['20200511162912_SLRemoveSoftColumns.Designer.cs',['../20200511162912___s_l_remove_soft_columns_8_designer_8cs.html',1,'']]], + ['20200512181801_5fmsremovesoftcolumns_2ecs_2657',['20200512181801_MSRemoveSoftColumns.cs',['../20200512181801___m_s_remove_soft_columns_8cs.html',1,'']]], + ['20200512181801_5fmsremovesoftcolumns_2edesigner_2ecs_2658',['20200512181801_MSRemoveSoftColumns.Designer.cs',['../20200512181801___m_s_remove_soft_columns_8_designer_8cs.html',1,'']]], + ['20200512182535_5fmyremovesoftcolumns_2ecs_2659',['20200512182535_MYRemoveSoftColumns.cs',['../20200512182535___m_y_remove_soft_columns_8cs.html',1,'']]], + ['20200512182535_5fmyremovesoftcolumns_2edesigner_2ecs_2660',['20200512182535_MYRemoveSoftColumns.Designer.cs',['../20200512182535___m_y_remove_soft_columns_8_designer_8cs.html',1,'']]], + ['20200516111712_5fpgcreate_2ecs_2661',['20200516111712_PGCreate.cs',['../20200516111712___p_g_create_8cs.html',1,'']]], + ['20200516111712_5fpgcreate_2edesigner_2ecs_2662',['20200516111712_PGCreate.Designer.cs',['../20200516111712___p_g_create_8_designer_8cs.html',1,'']]], + ['20200529171541_5fmyfixforeignkey_2ecs_2663',['20200529171541_MYFixForeignKey.cs',['../20200529171541___m_y_fix_foreign_key_8cs.html',1,'']]], + ['20200529171541_5fmyfixforeignkey_2edesigner_2ecs_2664',['20200529171541_MYFixForeignKey.Designer.cs',['../20200529171541___m_y_fix_foreign_key_8_designer_8cs.html',1,'']]], + ['20200616175424_5fmstopictimeout_2ecs_2665',['20200616175424_MSTopicTimeout.cs',['../20200616175424___m_s_topic_timeout_8cs.html',1,'']]], + ['20200616175424_5fmstopictimeout_2edesigner_2ecs_2666',['20200616175424_MSTopicTimeout.Designer.cs',['../20200616175424___m_s_topic_timeout_8_designer_8cs.html',1,'']]], + ['20200616175535_5fmytopictimeout_2ecs_2667',['20200616175535_MYTopicTimeout.cs',['../20200616175535___m_y_topic_timeout_8cs.html',1,'']]], + ['20200616175535_5fmytopictimeout_2edesigner_2ecs_2668',['20200616175535_MYTopicTimeout.Designer.cs',['../20200616175535___m_y_topic_timeout_8_designer_8cs.html',1,'']]], + ['20200616180742_5fsltopictimeout_2ecs_2669',['20200616180742_SLTopicTimeout.cs',['../20200616180742___s_l_topic_timeout_8cs.html',1,'']]], + ['20200616180742_5fsltopictimeout_2edesigner_2ecs_2670',['20200616180742_SLTopicTimeout.Designer.cs',['../20200616180742___s_l_topic_timeout_8_designer_8cs.html',1,'']]], + ['20200616180842_5fpgtopictimeout_2ecs_2671',['20200616180842_PGTopicTimeout.cs',['../20200616180842___p_g_topic_timeout_8cs.html',1,'']]], + ['20200616180842_5fpgtopictimeout_2edesigner_2ecs_2672',['20200616180842_PGTopicTimeout.Designer.cs',['../20200616180842___p_g_topic_timeout_8_designer_8cs.html',1,'']]], + ['20200629184803_5fmsremoveexperimentalwatchdog_2ecs_2673',['20200629184803_MSRemoveExperimentalWatchdog.cs',['../20200629184803___m_s_remove_experimental_watchdog_8cs.html',1,'']]], + ['20200629184803_5fmsremoveexperimentalwatchdog_2edesigner_2ecs_2674',['20200629184803_MSRemoveExperimentalWatchdog.Designer.cs',['../20200629184803___m_s_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], + ['20200629184843_5fmyremoveexperimentalwatchdog_2ecs_2675',['20200629184843_MYRemoveExperimentalWatchdog.cs',['../20200629184843___m_y_remove_experimental_watchdog_8cs.html',1,'']]], + ['20200629184843_5fmyremoveexperimentalwatchdog_2edesigner_2ecs_2676',['20200629184843_MYRemoveExperimentalWatchdog.Designer.cs',['../20200629184843___m_y_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], + ['20200629184928_5fpgremoveexperimentalwatchdog_2ecs_2677',['20200629184928_PGRemoveExperimentalWatchdog.cs',['../20200629184928___p_g_remove_experimental_watchdog_8cs.html',1,'']]], + ['20200629184928_5fpgremoveexperimentalwatchdog_2edesigner_2ecs_2678',['20200629184928_PGRemoveExperimentalWatchdog.Designer.cs',['../20200629184928___p_g_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], + ['20200629185014_5fslremoveexperimentalwatchdog_2ecs_2679',['20200629185014_SLRemoveExperimentalWatchdog.cs',['../20200629185014___s_l_remove_experimental_watchdog_8cs.html',1,'']]], + ['20200629185014_5fslremoveexperimentalwatchdog_2edesigner_2ecs_2680',['20200629185014_SLRemoveExperimentalWatchdog.Designer.cs',['../20200629185014___s_l_remove_experimental_watchdog_8_designer_8cs.html',1,'']]], + ['20200705163512_5fmsallownulldmapi_2ecs_2681',['20200705163512_MSAllowNullDMApi.cs',['../20200705163512___m_s_allow_null_d_m_api_8cs.html',1,'']]], + ['20200705163512_5fmsallownulldmapi_2edesigner_2ecs_2682',['20200705163512_MSAllowNullDMApi.Designer.cs',['../20200705163512___m_s_allow_null_d_m_api_8_designer_8cs.html',1,'']]], + ['20200705163547_5fmyallownulldmapi_2ecs_2683',['20200705163547_MYAllowNullDMApi.cs',['../20200705163547___m_y_allow_null_d_m_api_8cs.html',1,'']]], + ['20200705163547_5fmyallownulldmapi_2edesigner_2ecs_2684',['20200705163547_MYAllowNullDMApi.Designer.cs',['../20200705163547___m_y_allow_null_d_m_api_8_designer_8cs.html',1,'']]], + ['20200705163624_5fpgallownulldmapi_2ecs_2685',['20200705163624_PGAllowNullDMApi.cs',['../20200705163624___p_g_allow_null_d_m_api_8cs.html',1,'']]], + ['20200705163624_5fpgallownulldmapi_2edesigner_2ecs_2686',['20200705163624_PGAllowNullDMApi.Designer.cs',['../20200705163624___p_g_allow_null_d_m_api_8_designer_8cs.html',1,'']]], + ['20200705163700_5fslallownulldmapi_2ecs_2687',['20200705163700_SLAllowNullDMApi.cs',['../20200705163700___s_l_allow_null_d_m_api_8cs.html',1,'']]], + ['20200705163700_5fslallownulldmapi_2edesigner_2ecs_2688',['20200705163700_SLAllowNullDMApi.Designer.cs',['../20200705163700___s_l_allow_null_d_m_api_8_designer_8cs.html',1,'']]], + ['20200807213255_5fmsadddeploymentcolumns_2ecs_2689',['20200807213255_MSAddDeploymentColumns.cs',['../20200807213255___m_s_add_deployment_columns_8cs.html',1,'']]], + ['20200807213255_5fmsadddeploymentcolumns_2edesigner_2ecs_2690',['20200807213255_MSAddDeploymentColumns.Designer.cs',['../20200807213255___m_s_add_deployment_columns_8_designer_8cs.html',1,'']]], + ['20200807213742_5fmyadddeploymentcolumns_2ecs_2691',['20200807213742_MYAddDeploymentColumns.cs',['../20200807213742___m_y_add_deployment_columns_8cs.html',1,'']]], + ['20200807213742_5fmyadddeploymentcolumns_2edesigner_2ecs_2692',['20200807213742_MYAddDeploymentColumns.Designer.cs',['../20200807213742___m_y_add_deployment_columns_8_designer_8cs.html',1,'']]], + ['20200807214330_5fpgadddeploymentcolumns_2ecs_2693',['20200807214330_PGAddDeploymentColumns.cs',['../20200807214330___p_g_add_deployment_columns_8cs.html',1,'']]], + ['20200807214330_5fpgadddeploymentcolumns_2edesigner_2ecs_2694',['20200807214330_PGAddDeploymentColumns.Designer.cs',['../20200807214330___p_g_add_deployment_columns_8_designer_8cs.html',1,'']]], + ['20200807214754_5fsladddeploymentcolumns_2ecs_2695',['20200807214754_SLAddDeploymentColumns.cs',['../20200807214754___s_l_add_deployment_columns_8cs.html',1,'']]], + ['20200807214754_5fsladddeploymentcolumns_2edesigner_2ecs_2696',['20200807214754_SLAddDeploymentColumns.Designer.cs',['../20200807214754___s_l_add_deployment_columns_8_designer_8cs.html',1,'']]] ]; diff --git a/search/files_1.html b/search/files_1.html index 9448113a1f..f1770a6817 100644 --- a/search/files_1.html +++ b/search/files_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_1.js b/search/files_1.js index 9b6b6a5dfe..f3dfdbcd3d 100644 --- a/search/files_1.js +++ b/search/files_1.js @@ -1,23 +1,23 @@ var searchData= [ - ['administration_2ecs_2628',['Administration.cs',['../_administration_8cs.html',1,'']]], - ['administrationclient_2ecs_2629',['AdministrationClient.cs',['../_administration_client_8cs.html',1,'']]], - ['administrationcontroller_2ecs_2630',['AdministrationController.cs',['../_administration_controller_8cs.html',1,'']]], - ['administrationrights_2ecs_2631',['AdministrationRights.cs',['../_administration_rights_8cs.html',1,'']]], - ['api_2edox_2632',['API.dox',['../_a_p_i_8dox.html',1,'']]], - ['apiclient_2ecs_2633',['ApiClient.cs',['../_api_client_8cs.html',1,'']]], - ['apiclientfactory_2ecs_2634',['ApiClientFactory.cs',['../_api_client_factory_8cs.html',1,'']]], - ['apiconflictexception_2ecs_2635',['ApiConflictException.cs',['../_api_conflict_exception_8cs.html',1,'']]], - ['apicontroller_2ecs_2636',['ApiController.cs',['../_api_controller_8cs.html',1,'']]], - ['apiexception_2ecs_2637',['ApiException.cs',['../_api_exception_8cs.html',1,'']]], - ['apiheaders_2ecs_2638',['ApiHeaders.cs',['../_api_headers_8cs.html',1,'']]], - ['apivalidationstatus_2ecs_2639',['ApiValidationStatus.cs',['../_api_validation_status_8cs.html',1,'']]], - ['application_2ecs_2640',['Application.cs',['../_application_8cs.html',1,'']]], - ['applicationbuilderextensions_2ecs_2641',['ApplicationBuilderExtensions.cs',['../_application_builder_extensions_8cs.html',1,'']]], - ['architecture_2edox_2642',['Architecture.dox',['../_architecture_8dox.html',1,'']]], - ['assemblyinfo_2ecs_2643',['AssemblyInfo.cs',['../_tgstation_8_server_8_client_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html',1,'(Global Namespace)']]], - ['assemblyinformationprovider_2ecs_2644',['AssemblyInformationProvider.cs',['../_assembly_information_provider_8cs.html',1,'']]], - ['asyncdelayer_2ecs_2645',['AsyncDelayer.cs',['../_async_delayer_8cs.html',1,'']]], - ['authenticationcontext_2ecs_2646',['AuthenticationContext.cs',['../_authentication_context_8cs.html',1,'']]], - ['authenticationcontextfactory_2ecs_2647',['AuthenticationContextFactory.cs',['../_authentication_context_factory_8cs.html',1,'']]] + ['administration_2ecs_2697',['Administration.cs',['../_administration_8cs.html',1,'']]], + ['administrationclient_2ecs_2698',['AdministrationClient.cs',['../_administration_client_8cs.html',1,'']]], + ['administrationcontroller_2ecs_2699',['AdministrationController.cs',['../_administration_controller_8cs.html',1,'']]], + ['administrationrights_2ecs_2700',['AdministrationRights.cs',['../_administration_rights_8cs.html',1,'']]], + ['api_2edox_2701',['API.dox',['../_a_p_i_8dox.html',1,'']]], + ['apiclient_2ecs_2702',['ApiClient.cs',['../_api_client_8cs.html',1,'']]], + ['apiclientfactory_2ecs_2703',['ApiClientFactory.cs',['../_api_client_factory_8cs.html',1,'']]], + ['apiconflictexception_2ecs_2704',['ApiConflictException.cs',['../_api_conflict_exception_8cs.html',1,'']]], + ['apicontroller_2ecs_2705',['ApiController.cs',['../_api_controller_8cs.html',1,'']]], + ['apiexception_2ecs_2706',['ApiException.cs',['../_api_exception_8cs.html',1,'']]], + ['apiheaders_2ecs_2707',['ApiHeaders.cs',['../_api_headers_8cs.html',1,'']]], + ['apivalidationstatus_2ecs_2708',['ApiValidationStatus.cs',['../_api_validation_status_8cs.html',1,'']]], + ['application_2ecs_2709',['Application.cs',['../_application_8cs.html',1,'']]], + ['applicationbuilderextensions_2ecs_2710',['ApplicationBuilderExtensions.cs',['../_application_builder_extensions_8cs.html',1,'']]], + ['architecture_2edox_2711',['Architecture.dox',['../_architecture_8dox.html',1,'']]], + ['assemblyinfo_2ecs_2712',['AssemblyInfo.cs',['../_tgstation_8_server_8_client_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_properties_2_assembly_info_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_assembly_info_8cs.html',1,'(Global Namespace)']]], + ['assemblyinformationprovider_2ecs_2713',['AssemblyInformationProvider.cs',['../_assembly_information_provider_8cs.html',1,'']]], + ['asyncdelayer_2ecs_2714',['AsyncDelayer.cs',['../_async_delayer_8cs.html',1,'']]], + ['authenticationcontext_2ecs_2715',['AuthenticationContext.cs',['../_authentication_context_8cs.html',1,'']]], + ['authenticationcontextfactory_2ecs_2716',['AuthenticationContextFactory.cs',['../_authentication_context_factory_8cs.html',1,'']]] ]; diff --git a/search/files_10.html b/search/files_10.html index 1adc7e5e83..46b68328de 100644 --- a/search/files_10.html +++ b/search/files_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_10.js b/search/files_10.js index d1c92fb715..637e4a13d3 100644 --- a/search/files_10.js +++ b/search/files_10.js @@ -1,24 +1,24 @@ var searchData= [ - ['platformidentifier_2ecs_2880',['PlatformIdentifier.cs',['../_platform_identifier_8cs.html',1,'']]], - ['posixbyondinstaller_2ecs_2881',['PosixByondInstaller.cs',['../_posix_byond_installer_8cs.html',1,'']]], - ['posixnetworkpromptreaper_2ecs_2882',['PosixNetworkPromptReaper.cs',['../_posix_network_prompt_reaper_8cs.html',1,'']]], - ['posixpostwritehandler_2ecs_2883',['PosixPostWriteHandler.cs',['../_posix_post_write_handler_8cs.html',1,'']]], - ['posixprocessfeatures_2ecs_2884',['PosixProcessFeatures.cs',['../_posix_process_features_8cs.html',1,'']]], - ['posixsymlinkfactory_2ecs_2885',['PosixSymlinkFactory.cs',['../_posix_symlink_factory_8cs.html',1,'']]], - ['posixsystemidentity_2ecs_2886',['PosixSystemIdentity.cs',['../_posix_system_identity_8cs.html',1,'']]], - ['posixsystemidentityfactory_2ecs_2887',['PosixSystemIdentityFactory.cs',['../_posix_system_identity_factory_8cs.html',1,'']]], - ['posixwatchdog_2ecs_2888',['PosixWatchdog.cs',['../_posix_watchdog_8cs.html',1,'']]], - ['posixwatchdogfactory_2ecs_2889',['PosixWatchdogFactory.cs',['../_posix_watchdog_factory_8cs.html',1,'']]], - ['postgressqldatabasecontext_2ecs_2890',['PostgresSqlDatabaseContext.cs',['../_postgres_sql_database_context_8cs.html',1,'']]], - ['postgressqldatabasecontextmodelsnapshot_2ecs_2891',['PostgresSqlDatabaseContextModelSnapshot.cs',['../_postgres_sql_database_context_model_snapshot_8cs.html',1,'']]], - ['postgressqldesigntimedbcontextfactory_2ecs_2892',['PostgresSqlDesignTimeDbContextFactory.cs',['../_postgres_sql_design_time_db_context_factory_8cs.html',1,'']]], - ['postsetupservices_2ecs_2893',['PostSetupServices.cs',['../_post_setup_services_8cs.html',1,'']]], - ['process_2ecs_2894',['Process.cs',['../_process_8cs.html',1,'']]], - ['processexecutor_2ecs_2895',['ProcessExecutor.cs',['../_process_executor_8cs.html',1,'']]], - ['program_2ecs_2896',['Program.cs',['../_tgstation_8_server_8_host_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_program_8cs.html',1,'(Global Namespace)']]], - ['programshutdowntokensource_2ecs_2897',['ProgramShutdownTokenSource.cs',['../_program_shutdown_token_source_8cs.html',1,'']]], - ['provider_2ecs_2898',['Provider.cs',['../_provider_8cs.html',1,'']]], - ['providerfactory_2ecs_2899',['ProviderFactory.cs',['../_provider_factory_8cs.html',1,'']]], - ['pullrequestscommand_2ecs_2900',['PullRequestsCommand.cs',['../_pull_requests_command_8cs.html',1,'']]] + ['platformidentifier_2ecs_2952',['PlatformIdentifier.cs',['../_platform_identifier_8cs.html',1,'']]], + ['posixbyondinstaller_2ecs_2953',['PosixByondInstaller.cs',['../_posix_byond_installer_8cs.html',1,'']]], + ['posixnetworkpromptreaper_2ecs_2954',['PosixNetworkPromptReaper.cs',['../_posix_network_prompt_reaper_8cs.html',1,'']]], + ['posixpostwritehandler_2ecs_2955',['PosixPostWriteHandler.cs',['../_posix_post_write_handler_8cs.html',1,'']]], + ['posixprocessfeatures_2ecs_2956',['PosixProcessFeatures.cs',['../_posix_process_features_8cs.html',1,'']]], + ['posixsymlinkfactory_2ecs_2957',['PosixSymlinkFactory.cs',['../_posix_symlink_factory_8cs.html',1,'']]], + ['posixsystemidentity_2ecs_2958',['PosixSystemIdentity.cs',['../_posix_system_identity_8cs.html',1,'']]], + ['posixsystemidentityfactory_2ecs_2959',['PosixSystemIdentityFactory.cs',['../_posix_system_identity_factory_8cs.html',1,'']]], + ['posixwatchdog_2ecs_2960',['PosixWatchdog.cs',['../_posix_watchdog_8cs.html',1,'']]], + ['posixwatchdogfactory_2ecs_2961',['PosixWatchdogFactory.cs',['../_posix_watchdog_factory_8cs.html',1,'']]], + ['postgressqldatabasecontext_2ecs_2962',['PostgresSqlDatabaseContext.cs',['../_postgres_sql_database_context_8cs.html',1,'']]], + ['postgressqldatabasecontextmodelsnapshot_2ecs_2963',['PostgresSqlDatabaseContextModelSnapshot.cs',['../_postgres_sql_database_context_model_snapshot_8cs.html',1,'']]], + ['postgressqldesigntimedbcontextfactory_2ecs_2964',['PostgresSqlDesignTimeDbContextFactory.cs',['../_postgres_sql_design_time_db_context_factory_8cs.html',1,'']]], + ['postsetupservices_2ecs_2965',['PostSetupServices.cs',['../_post_setup_services_8cs.html',1,'']]], + ['process_2ecs_2966',['Process.cs',['../_process_8cs.html',1,'']]], + ['processexecutor_2ecs_2967',['ProcessExecutor.cs',['../_process_executor_8cs.html',1,'']]], + ['program_2ecs_2968',['Program.cs',['../_tgstation_8_server_8_host_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_console_2_program_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_service_2_program_8cs.html',1,'(Global Namespace)']]], + ['programshutdowntokensource_2ecs_2969',['ProgramShutdownTokenSource.cs',['../_program_shutdown_token_source_8cs.html',1,'']]], + ['provider_2ecs_2970',['Provider.cs',['../_provider_8cs.html',1,'']]], + ['providerfactory_2ecs_2971',['ProviderFactory.cs',['../_provider_factory_8cs.html',1,'']]], + ['pullrequestscommand_2ecs_2972',['PullRequestsCommand.cs',['../_pull_requests_command_8cs.html',1,'']]] ]; diff --git a/search/files_11.html b/search/files_11.html index 4c8b86306e..73364364d9 100644 --- a/search/files_11.html +++ b/search/files_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_11.js b/search/files_11.js index a9e7f1f24a..ed5ff4aaf1 100644 --- a/search/files_11.js +++ b/search/files_11.js @@ -1,25 +1,25 @@ var searchData= [ - ['ratelimitexception_2ecs_2901',['RateLimitException.cs',['../_rate_limit_exception_8cs.html',1,'']]], - ['rawdata_2ecs_2902',['RawData.cs',['../_raw_data_8cs.html',1,'']]], - ['readme_2emd_2903',['README.md',['../_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v3210_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v4_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_api_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_client_app_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_events_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_session_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_watchdog_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_configuration_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_controllers_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_database_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_i_o_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_jobs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_security_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_setup_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_system_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)']]], - ['reattachinformation_2ecs_2904',['ReattachInformation.cs',['../_components_2_session_2_reattach_information_8cs.html',1,'(Global Namespace)'],['../_models_2_reattach_information_8cs.html',1,'(Global Namespace)']]], - ['reattachinformationbase_2ecs_2905',['ReattachInformationBase.cs',['../_reattach_information_base_8cs.html',1,'']]], - ['rebootstate_2ecs_2906',['RebootState.cs',['../_reboot_state_8cs.html',1,'']]], - ['repository_2ecs_2907',['Repository.cs',['../_tgstation_8_server_8_api_2_models_2_repository_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html',1,'(Global Namespace)']]], - ['repositoryclient_2ecs_2908',['RepositoryClient.cs',['../_repository_client_8cs.html',1,'']]], - ['repositorycontroller_2ecs_2909',['RepositoryController.cs',['../_repository_controller_8cs.html',1,'']]], - ['repositorymanager_2ecs_2910',['RepositoryManager.cs',['../_repository_manager_8cs.html',1,'']]], - ['repositoryrights_2ecs_2911',['RepositoryRights.cs',['../_repository_rights_8cs.html',1,'']]], - ['repositorysettings_2ecs_2912',['RepositorySettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html',1,'(Global Namespace)']]], - ['requesttimeoutexception_2ecs_2913',['RequestTimeoutException.cs',['../_request_timeout_exception_8cs.html',1,'']]], - ['resolvingiomanager_2ecs_2914',['ResolvingIOManager.cs',['../_resolving_i_o_manager_8cs.html',1,'']]], - ['restartregistration_2ecs_2915',['RestartRegistration.cs',['../_restart_registration_8cs.html',1,'']]], - ['revinfotestmerge_2ecs_2916',['RevInfoTestMerge.cs',['../_rev_info_test_merge_8cs.html',1,'']]], - ['revisioncommand_2ecs_2917',['RevisionCommand.cs',['../_revision_command_8cs.html',1,'']]], - ['revisioninformation_2ecs_2918',['RevisionInformation.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html',1,'(Global Namespace)']]], - ['rightshelper_2ecs_2919',['RightsHelper.cs',['../_rights_helper_8cs.html',1,'']]], - ['rightstype_2ecs_2920',['RightsType.cs',['../_rights_type_8cs.html',1,'']]], - ['routes_2ecs_2921',['Routes.cs',['../_routes_8cs.html',1,'']]], - ['runtimeinformation_2ecs_2922',['RuntimeInformation.cs',['../_runtime_information_8cs.html',1,'']]] + ['ratelimitexception_2ecs_2973',['RateLimitException.cs',['../_rate_limit_exception_8cs.html',1,'']]], + ['rawdata_2ecs_2974',['RawData.cs',['../_raw_data_8cs.html',1,'']]], + ['readme_2emd_2975',['README.md',['../_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v3210_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_d_m_a_p_i_2tgs_2v4_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_api_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_client_app_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_events_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_session_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_components_2_watchdog_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_configuration_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_controllers_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_core_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_database_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_i_o_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_jobs_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_security_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_setup_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)'],['../src_2_tgstation_8_server_8_host_2_system_2_r_e_a_d_m_e_8md.html',1,'(Global Namespace)']]], + ['reattachinformation_2ecs_2976',['ReattachInformation.cs',['../_components_2_session_2_reattach_information_8cs.html',1,'(Global Namespace)'],['../_models_2_reattach_information_8cs.html',1,'(Global Namespace)']]], + ['reattachinformationbase_2ecs_2977',['ReattachInformationBase.cs',['../_reattach_information_base_8cs.html',1,'']]], + ['rebootstate_2ecs_2978',['RebootState.cs',['../_reboot_state_8cs.html',1,'']]], + ['repository_2ecs_2979',['Repository.cs',['../_tgstation_8_server_8_api_2_models_2_repository_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_repository_2_repository_8cs.html',1,'(Global Namespace)']]], + ['repositoryclient_2ecs_2980',['RepositoryClient.cs',['../_repository_client_8cs.html',1,'']]], + ['repositorycontroller_2ecs_2981',['RepositoryController.cs',['../_repository_controller_8cs.html',1,'']]], + ['repositorymanager_2ecs_2982',['RepositoryManager.cs',['../_repository_manager_8cs.html',1,'']]], + ['repositoryrights_2ecs_2983',['RepositoryRights.cs',['../_repository_rights_8cs.html',1,'']]], + ['repositorysettings_2ecs_2984',['RepositorySettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_repository_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_repository_settings_8cs.html',1,'(Global Namespace)']]], + ['requesttimeoutexception_2ecs_2985',['RequestTimeoutException.cs',['../_request_timeout_exception_8cs.html',1,'']]], + ['resolvingiomanager_2ecs_2986',['ResolvingIOManager.cs',['../_resolving_i_o_manager_8cs.html',1,'']]], + ['restartregistration_2ecs_2987',['RestartRegistration.cs',['../_restart_registration_8cs.html',1,'']]], + ['revinfotestmerge_2ecs_2988',['RevInfoTestMerge.cs',['../_rev_info_test_merge_8cs.html',1,'']]], + ['revisioncommand_2ecs_2989',['RevisionCommand.cs',['../_revision_command_8cs.html',1,'']]], + ['revisioninformation_2ecs_2990',['RevisionInformation.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_revision_information_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_revision_information_8cs.html',1,'(Global Namespace)']]], + ['rightshelper_2ecs_2991',['RightsHelper.cs',['../_rights_helper_8cs.html',1,'']]], + ['rightstype_2ecs_2992',['RightsType.cs',['../_rights_type_8cs.html',1,'']]], + ['routes_2ecs_2993',['Routes.cs',['../_routes_8cs.html',1,'']]], + ['runtimeinformation_2ecs_2994',['RuntimeInformation.cs',['../_runtime_information_8cs.html',1,'']]] ]; diff --git a/search/files_12.html b/search/files_12.html index 585c4309bd..372922d432 100644 --- a/search/files_12.html +++ b/search/files_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_12.js b/search/files_12.js index 5efabc2910..42d90d242b 100644 --- a/search/files_12.js +++ b/search/files_12.js @@ -1,32 +1,33 @@ var searchData= [ - ['security_2emd_2923',['SECURITY.md',['../_s_e_c_u_r_i_t_y_8md.html',1,'']]], - ['semaphoreslimcontext_2ecs_2924',['SemaphoreSlimContext.cs',['../_semaphore_slim_context_8cs.html',1,'']]], - ['server_2ecs_2925',['Server.cs',['../_server_8cs.html',1,'']]], - ['serverclient_2ecs_2926',['ServerClient.cs',['../_server_client_8cs.html',1,'']]], - ['serverclientfactory_2ecs_2927',['ServerClientFactory.cs',['../_server_client_factory_8cs.html',1,'']]], - ['servererrorexception_2ecs_2928',['ServerErrorException.cs',['../_server_error_exception_8cs.html',1,'']]], - ['serverfactory_2ecs_2929',['ServerFactory.cs',['../_server_factory_8cs.html',1,'']]], - ['serverinformation_2ecs_2930',['ServerInformation.cs',['../_internal_2_server_information_8cs.html',1,'(Global Namespace)'],['../_server_information_8cs.html',1,'(Global Namespace)']]], - ['serverportproivder_2ecs_2931',['ServerPortProivder.cs',['../_server_port_proivder_8cs.html',1,'']]], - ['serverservice_2ecs_2932',['ServerService.cs',['../_server_service_8cs.html',1,'']]], - ['serversidemodifications_2ecs_2933',['ServerSideModifications.cs',['../_server_side_modifications_8cs.html',1,'']]], - ['servicecollectionextensions_2ecs_2934',['ServiceCollectionExtensions.cs',['../_service_collection_extensions_8cs.html',1,'']]], - ['serviceunavailableexception_2ecs_2935',['ServiceUnavailableException.cs',['../_service_unavailable_exception_8cs.html',1,'']]], - ['sessioncontroller_2ecs_2936',['SessionController.cs',['../_session_controller_8cs.html',1,'']]], - ['sessioncontrollerfactory_2ecs_2937',['SessionControllerFactory.cs',['../_session_controller_factory_8cs.html',1,'']]], - ['sessionpersistor_2ecs_2938',['SessionPersistor.cs',['../_session_persistor_8cs.html',1,'']]], - ['setupapplication_2ecs_2939',['SetupApplication.cs',['../_setup_application_8cs.html',1,'']]], - ['setupwizard_2ecs_2940',['SetupWizard.cs',['../_setup_wizard_8cs.html',1,'']]], - ['setupwizardmode_2ecs_2941',['SetupWizardMode.cs',['../_setup_wizard_mode_8cs.html',1,'']]], - ['socketextensions_2ecs_2942',['SocketExtensions.cs',['../_socket_extensions_8cs.html',1,'']]], - ['sqlitedatabasecontext_2ecs_2943',['SqliteDatabaseContext.cs',['../_sqlite_database_context_8cs.html',1,'']]], - ['sqlitedatabasecontextmodelsnapshot_2ecs_2944',['SqliteDatabaseContextModelSnapshot.cs',['../_sqlite_database_context_model_snapshot_8cs.html',1,'']]], - ['sqlitedesigntimedbcontextfactory_2ecs_2945',['SqliteDesignTimeDbContextFactory.cs',['../_sqlite_design_time_db_context_factory_8cs.html',1,'']]], - ['sqlserverdatabasecontext_2ecs_2946',['SqlServerDatabaseContext.cs',['../_sql_server_database_context_8cs.html',1,'']]], - ['sqlserverdatabasecontextmodelsnapshot_2ecs_2947',['SqlServerDatabaseContextModelSnapshot.cs',['../_sql_server_database_context_model_snapshot_8cs.html',1,'']]], - ['sqlserverdesigntimedbcontextfactory_2ecs_2948',['SqlServerDesignTimeDbContextFactory.cs',['../_sql_server_design_time_db_context_factory_8cs.html',1,'']]], - ['swaggerconfiguration_2ecs_2949',['SwaggerConfiguration.cs',['../_swagger_configuration_8cs.html',1,'']]], - ['swappabledmbprovider_2ecs_2950',['SwappableDmbProvider.cs',['../_swappable_dmb_provider_8cs.html',1,'']]], - ['synchronousiomanager_2ecs_2951',['SynchronousIOManager.cs',['../_synchronous_i_o_manager_8cs.html',1,'']]] + ['security_2emd_2995',['SECURITY.md',['../_s_e_c_u_r_i_t_y_8md.html',1,'']]], + ['securityconfiguration_2ecs_2996',['SecurityConfiguration.cs',['../_security_configuration_8cs.html',1,'']]], + ['semaphoreslimcontext_2ecs_2997',['SemaphoreSlimContext.cs',['../_semaphore_slim_context_8cs.html',1,'']]], + ['server_2ecs_2998',['Server.cs',['../_server_8cs.html',1,'']]], + ['serverclient_2ecs_2999',['ServerClient.cs',['../_server_client_8cs.html',1,'']]], + ['serverclientfactory_2ecs_3000',['ServerClientFactory.cs',['../_server_client_factory_8cs.html',1,'']]], + ['servererrorexception_2ecs_3001',['ServerErrorException.cs',['../_server_error_exception_8cs.html',1,'']]], + ['serverfactory_2ecs_3002',['ServerFactory.cs',['../_server_factory_8cs.html',1,'']]], + ['serverinformation_2ecs_3003',['ServerInformation.cs',['../_internal_2_server_information_8cs.html',1,'(Global Namespace)'],['../_server_information_8cs.html',1,'(Global Namespace)']]], + ['serverportproivder_2ecs_3004',['ServerPortProivder.cs',['../_server_port_proivder_8cs.html',1,'']]], + ['serverservice_2ecs_3005',['ServerService.cs',['../_server_service_8cs.html',1,'']]], + ['serversidemodifications_2ecs_3006',['ServerSideModifications.cs',['../_server_side_modifications_8cs.html',1,'']]], + ['servicecollectionextensions_2ecs_3007',['ServiceCollectionExtensions.cs',['../_service_collection_extensions_8cs.html',1,'']]], + ['serviceunavailableexception_2ecs_3008',['ServiceUnavailableException.cs',['../_service_unavailable_exception_8cs.html',1,'']]], + ['sessioncontroller_2ecs_3009',['SessionController.cs',['../_session_controller_8cs.html',1,'']]], + ['sessioncontrollerfactory_2ecs_3010',['SessionControllerFactory.cs',['../_session_controller_factory_8cs.html',1,'']]], + ['sessionpersistor_2ecs_3011',['SessionPersistor.cs',['../_session_persistor_8cs.html',1,'']]], + ['setupapplication_2ecs_3012',['SetupApplication.cs',['../_setup_application_8cs.html',1,'']]], + ['setupwizard_2ecs_3013',['SetupWizard.cs',['../_setup_wizard_8cs.html',1,'']]], + ['setupwizardmode_2ecs_3014',['SetupWizardMode.cs',['../_setup_wizard_mode_8cs.html',1,'']]], + ['socketextensions_2ecs_3015',['SocketExtensions.cs',['../_socket_extensions_8cs.html',1,'']]], + ['sqlitedatabasecontext_2ecs_3016',['SqliteDatabaseContext.cs',['../_sqlite_database_context_8cs.html',1,'']]], + ['sqlitedatabasecontextmodelsnapshot_2ecs_3017',['SqliteDatabaseContextModelSnapshot.cs',['../_sqlite_database_context_model_snapshot_8cs.html',1,'']]], + ['sqlitedesigntimedbcontextfactory_2ecs_3018',['SqliteDesignTimeDbContextFactory.cs',['../_sqlite_design_time_db_context_factory_8cs.html',1,'']]], + ['sqlserverdatabasecontext_2ecs_3019',['SqlServerDatabaseContext.cs',['../_sql_server_database_context_8cs.html',1,'']]], + ['sqlserverdatabasecontextmodelsnapshot_2ecs_3020',['SqlServerDatabaseContextModelSnapshot.cs',['../_sql_server_database_context_model_snapshot_8cs.html',1,'']]], + ['sqlserverdesigntimedbcontextfactory_2ecs_3021',['SqlServerDesignTimeDbContextFactory.cs',['../_sql_server_design_time_db_context_factory_8cs.html',1,'']]], + ['swaggerconfiguration_2ecs_3022',['SwaggerConfiguration.cs',['../_swagger_configuration_8cs.html',1,'']]], + ['swappabledmbprovider_2ecs_3023',['SwappableDmbProvider.cs',['../_swappable_dmb_provider_8cs.html',1,'']]], + ['synchronousiomanager_2ecs_3024',['SynchronousIOManager.cs',['../_synchronous_i_o_manager_8cs.html',1,'']]] ]; diff --git a/search/files_13.html b/search/files_13.html index d2ac169792..9540414609 100644 --- a/search/files_13.html +++ b/search/files_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_13.js b/search/files_13.js index 2d5ab39302..7ff055595a 100644 --- a/search/files_13.js +++ b/search/files_13.js @@ -1,16 +1,16 @@ var searchData= [ - ['taskextensions_2ecs_2952',['TaskExtensions.cs',['../_task_extensions_8cs.html',1,'']]], - ['temporarydmbprovider_2ecs_2953',['TemporaryDmbProvider.cs',['../_temporary_dmb_provider_8cs.html',1,'']]], - ['testmerge_2ecs_2954',['TestMerge.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html',1,'(Global Namespace)']]], - ['testmergebase_2ecs_2955',['TestMergeBase.cs',['../_test_merge_base_8cs.html',1,'']]], - ['testmergeinformation_2ecs_2956',['TestMergeInformation.cs',['../_test_merge_information_8cs.html',1,'']]], - ['testmergeparameters_2ecs_2957',['TestMergeParameters.cs',['../_test_merge_parameters_8cs.html',1,'']]], - ['tgsauthorizeattribute_2ecs_2958',['TgsAuthorizeAttribute.cs',['../_tgs_authorize_attribute_8cs.html',1,'']]], - ['token_2ecs_2959',['Token.cs',['../_token_8cs.html',1,'']]], - ['tokenfactory_2ecs_2960',['TokenFactory.cs',['../_token_factory_8cs.html',1,'']]], - ['topicclientfactory_2ecs_2961',['TopicClientFactory.cs',['../_topic_client_factory_8cs.html',1,'']]], - ['topiccommandtype_2ecs_2962',['TopicCommandType.cs',['../_topic_command_type_8cs.html',1,'']]], - ['topicparameters_2ecs_2963',['TopicParameters.cs',['../_topic_parameters_8cs.html',1,'']]], - ['topicresponse_2ecs_2964',['TopicResponse.cs',['../_topic_response_8cs.html',1,'']]] + ['taskextensions_2ecs_3025',['TaskExtensions.cs',['../_task_extensions_8cs.html',1,'']]], + ['temporarydmbprovider_2ecs_3026',['TemporaryDmbProvider.cs',['../_temporary_dmb_provider_8cs.html',1,'']]], + ['testmerge_2ecs_3027',['TestMerge.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_test_merge_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_test_merge_8cs.html',1,'(Global Namespace)']]], + ['testmergebase_2ecs_3028',['TestMergeBase.cs',['../_test_merge_base_8cs.html',1,'']]], + ['testmergeinformation_2ecs_3029',['TestMergeInformation.cs',['../_test_merge_information_8cs.html',1,'']]], + ['testmergeparameters_2ecs_3030',['TestMergeParameters.cs',['../_test_merge_parameters_8cs.html',1,'']]], + ['tgsauthorizeattribute_2ecs_3031',['TgsAuthorizeAttribute.cs',['../_tgs_authorize_attribute_8cs.html',1,'']]], + ['token_2ecs_3032',['Token.cs',['../_token_8cs.html',1,'']]], + ['tokenfactory_2ecs_3033',['TokenFactory.cs',['../_token_factory_8cs.html',1,'']]], + ['topicclientfactory_2ecs_3034',['TopicClientFactory.cs',['../_topic_client_factory_8cs.html',1,'']]], + ['topiccommandtype_2ecs_3035',['TopicCommandType.cs',['../_topic_command_type_8cs.html',1,'']]], + ['topicparameters_2ecs_3036',['TopicParameters.cs',['../_topic_parameters_8cs.html',1,'']]], + ['topicresponse_2ecs_3037',['TopicResponse.cs',['../_topic_response_8cs.html',1,'']]] ]; diff --git a/search/files_14.html b/search/files_14.html index 8a65f99f8d..2441e76b53 100644 --- a/search/files_14.html +++ b/search/files_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_14.js b/search/files_14.js index 6a4a9ca1d3..d018658327 100644 --- a/search/files_14.js +++ b/search/files_14.js @@ -1,10 +1,10 @@ var searchData= [ - ['unauthorizedexception_2ecs_2965',['UnauthorizedException.cs',['../_unauthorized_exception_8cs.html',1,'']]], - ['unrecognizedresponseexception_2ecs_2966',['UnrecognizedResponseException.cs',['../_unrecognized_response_exception_8cs.html',1,'']]], - ['updatesconfiguration_2ecs_2967',['UpdatesConfiguration.cs',['../_updates_configuration_8cs.html',1,'']]], - ['user_2ecs_2968',['User.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_user_8cs.html',1,'(Global Namespace)']]], - ['usercontroller_2ecs_2969',['UserController.cs',['../_user_controller_8cs.html',1,'']]], - ['usersclient_2ecs_2970',['UsersClient.cs',['../_users_client_8cs.html',1,'']]], - ['userupdate_2ecs_2971',['UserUpdate.cs',['../_user_update_8cs.html',1,'']]] + ['unauthorizedexception_2ecs_3038',['UnauthorizedException.cs',['../_unauthorized_exception_8cs.html',1,'']]], + ['unrecognizedresponseexception_2ecs_3039',['UnrecognizedResponseException.cs',['../_unrecognized_response_exception_8cs.html',1,'']]], + ['updatesconfiguration_2ecs_3040',['UpdatesConfiguration.cs',['../_updates_configuration_8cs.html',1,'']]], + ['user_2ecs_3041',['User.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_user_8cs.html',1,'(Global Namespace)']]], + ['usercontroller_2ecs_3042',['UserController.cs',['../_user_controller_8cs.html',1,'']]], + ['usersclient_2ecs_3043',['UsersClient.cs',['../_users_client_8cs.html',1,'']]], + ['userupdate_2ecs_3044',['UserUpdate.cs',['../_user_update_8cs.html',1,'']]] ]; diff --git a/search/files_15.html b/search/files_15.html index f4d104a0b1..61bd4afd65 100644 --- a/search/files_15.html +++ b/search/files_15.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_15.js b/search/files_15.js index 647197dd37..06c37be26b 100644 --- a/search/files_15.js +++ b/search/files_15.js @@ -1,7 +1,7 @@ var searchData= [ - ['versioncommand_2ecs_2972',['VersionCommand.cs',['../_version_command_8cs.html',1,'']]], - ['versionconverter_2ecs_2973',['VersionConverter.cs',['../_version_converter_8cs.html',1,'']]], - ['versionextensions_2ecs_2974',['VersionExtensions.cs',['../_version_extensions_8cs.html',1,'']]], - ['versionmismatchexception_2ecs_2975',['VersionMismatchException.cs',['../_version_mismatch_exception_8cs.html',1,'']]] + ['versioncommand_2ecs_3045',['VersionCommand.cs',['../_version_command_8cs.html',1,'']]], + ['versionconverter_2ecs_3046',['VersionConverter.cs',['../_version_converter_8cs.html',1,'']]], + ['versionextensions_2ecs_3047',['VersionExtensions.cs',['../_version_extensions_8cs.html',1,'']]], + ['versionmismatchexception_2ecs_3048',['VersionMismatchException.cs',['../_version_mismatch_exception_8cs.html',1,'']]] ]; diff --git a/search/files_16.html b/search/files_16.html index ba6d8ea30a..9a589151ab 100644 --- a/search/files_16.html +++ b/search/files_16.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_16.js b/search/files_16.js index f5f6738dc2..6de0882232 100644 --- a/search/files_16.js +++ b/search/files_16.js @@ -1,17 +1,17 @@ var searchData= [ - ['watchdog_2ecs_2976',['Watchdog.cs',['../_watchdog_8cs.html',1,'']]], - ['watchdogbase_2ecs_2977',['WatchdogBase.cs',['../_watchdog_base_8cs.html',1,'']]], - ['watchdogfactory_2ecs_2978',['WatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)']]], - ['watchdogstatus_2ecs_2979',['WatchdogStatus.cs',['../_watchdog_status_8cs.html',1,'']]], - ['webhostbuilderextensions_2ecs_2980',['WebHostBuilderExtensions.cs',['../_web_host_builder_extensions_8cs.html',1,'']]], - ['windowsbyondinstaller_2ecs_2981',['WindowsByondInstaller.cs',['../_windows_byond_installer_8cs.html',1,'']]], - ['windowsnetworkpromptreaper_2ecs_2982',['WindowsNetworkPromptReaper.cs',['../_windows_network_prompt_reaper_8cs.html',1,'']]], - ['windowspostwritehandler_2ecs_2983',['WindowsPostWriteHandler.cs',['../_windows_post_write_handler_8cs.html',1,'']]], - ['windowsprocessfeatures_2ecs_2984',['WindowsProcessFeatures.cs',['../_windows_process_features_8cs.html',1,'']]], - ['windowssymlinkfactory_2ecs_2985',['WindowsSymlinkFactory.cs',['../_windows_symlink_factory_8cs.html',1,'']]], - ['windowssystemidentity_2ecs_2986',['WindowsSystemIdentity.cs',['../_windows_system_identity_8cs.html',1,'']]], - ['windowssystemidentityfactory_2ecs_2987',['WindowsSystemIdentityFactory.cs',['../_windows_system_identity_factory_8cs.html',1,'']]], - ['windowswatchdog_2ecs_2988',['WindowsWatchdog.cs',['../_windows_watchdog_8cs.html',1,'']]], - ['windowswatchdogfactory_2ecs_2989',['WindowsWatchdogFactory.cs',['../_windows_watchdog_factory_8cs.html',1,'']]] + ['watchdog_2ecs_3049',['Watchdog.cs',['../_watchdog_8cs.html',1,'']]], + ['watchdogbase_2ecs_3050',['WatchdogBase.cs',['../_watchdog_base_8cs.html',1,'']]], + ['watchdogfactory_2ecs_3051',['WatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_watchdog_factory_8cs.html',1,'(Global Namespace)']]], + ['watchdogstatus_2ecs_3052',['WatchdogStatus.cs',['../_watchdog_status_8cs.html',1,'']]], + ['webhostbuilderextensions_2ecs_3053',['WebHostBuilderExtensions.cs',['../_web_host_builder_extensions_8cs.html',1,'']]], + ['windowsbyondinstaller_2ecs_3054',['WindowsByondInstaller.cs',['../_windows_byond_installer_8cs.html',1,'']]], + ['windowsnetworkpromptreaper_2ecs_3055',['WindowsNetworkPromptReaper.cs',['../_windows_network_prompt_reaper_8cs.html',1,'']]], + ['windowspostwritehandler_2ecs_3056',['WindowsPostWriteHandler.cs',['../_windows_post_write_handler_8cs.html',1,'']]], + ['windowsprocessfeatures_2ecs_3057',['WindowsProcessFeatures.cs',['../_windows_process_features_8cs.html',1,'']]], + ['windowssymlinkfactory_2ecs_3058',['WindowsSymlinkFactory.cs',['../_windows_symlink_factory_8cs.html',1,'']]], + ['windowssystemidentity_2ecs_3059',['WindowsSystemIdentity.cs',['../_windows_system_identity_8cs.html',1,'']]], + ['windowssystemidentityfactory_2ecs_3060',['WindowsSystemIdentityFactory.cs',['../_windows_system_identity_factory_8cs.html',1,'']]], + ['windowswatchdog_2ecs_3061',['WindowsWatchdog.cs',['../_windows_watchdog_8cs.html',1,'']]], + ['windowswatchdogfactory_2ecs_3062',['WindowsWatchdogFactory.cs',['../_windows_watchdog_factory_8cs.html',1,'']]] ]; diff --git a/search/files_2.html b/search/files_2.html index 16c12b8c3b..cc8e089cef 100644 --- a/search/files_2.html +++ b/search/files_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_2.js b/search/files_2.js index 114b7ff300..d1cdceb6c2 100644 --- a/search/files_2.js +++ b/search/files_2.js @@ -1,18 +1,18 @@ var searchData= [ - ['basicwatchdog_2ecs_2648',['BasicWatchdog.cs',['../_basic_watchdog_8cs.html',1,'']]], - ['boolconverter_2ecs_2649',['BoolConverter.cs',['../_bool_converter_8cs.html',1,'']]], - ['bridgecommandtype_2ecs_2650',['BridgeCommandType.cs',['../_bridge_command_type_8cs.html',1,'']]], - ['bridgecontroller_2ecs_2651',['BridgeController.cs',['../_bridge_controller_8cs.html',1,'']]], - ['bridgeparameters_2ecs_2652',['BridgeParameters.cs',['../_bridge_parameters_8cs.html',1,'']]], - ['bridgeregistration_2ecs_2653',['BridgeRegistration.cs',['../_bridge_registration_8cs.html',1,'']]], - ['bridgeresponse_2ecs_2654',['BridgeResponse.cs',['../_bridge_response_8cs.html',1,'']]], - ['byond_2ecs_2655',['Byond.cs',['../_byond_8cs.html',1,'']]], - ['byondclient_2ecs_2656',['ByondClient.cs',['../_byond_client_8cs.html',1,'']]], - ['byondcommand_2ecs_2657',['ByondCommand.cs',['../_byond_command_8cs.html',1,'']]], - ['byondcontroller_2ecs_2658',['ByondController.cs',['../_byond_controller_8cs.html',1,'']]], - ['byondexecutablelock_2ecs_2659',['ByondExecutableLock.cs',['../_byond_executable_lock_8cs.html',1,'']]], - ['byondinstallerbase_2ecs_2660',['ByondInstallerBase.cs',['../_byond_installer_base_8cs.html',1,'']]], - ['byondmanager_2ecs_2661',['ByondManager.cs',['../_byond_manager_8cs.html',1,'']]], - ['byondrights_2ecs_2662',['ByondRights.cs',['../_byond_rights_8cs.html',1,'']]] + ['basicwatchdog_2ecs_2717',['BasicWatchdog.cs',['../_basic_watchdog_8cs.html',1,'']]], + ['boolconverter_2ecs_2718',['BoolConverter.cs',['../_bool_converter_8cs.html',1,'']]], + ['bridgecommandtype_2ecs_2719',['BridgeCommandType.cs',['../_bridge_command_type_8cs.html',1,'']]], + ['bridgecontroller_2ecs_2720',['BridgeController.cs',['../_bridge_controller_8cs.html',1,'']]], + ['bridgeparameters_2ecs_2721',['BridgeParameters.cs',['../_bridge_parameters_8cs.html',1,'']]], + ['bridgeregistration_2ecs_2722',['BridgeRegistration.cs',['../_bridge_registration_8cs.html',1,'']]], + ['bridgeresponse_2ecs_2723',['BridgeResponse.cs',['../_bridge_response_8cs.html',1,'']]], + ['byond_2ecs_2724',['Byond.cs',['../_byond_8cs.html',1,'']]], + ['byondclient_2ecs_2725',['ByondClient.cs',['../_byond_client_8cs.html',1,'']]], + ['byondcommand_2ecs_2726',['ByondCommand.cs',['../_byond_command_8cs.html',1,'']]], + ['byondcontroller_2ecs_2727',['ByondController.cs',['../_byond_controller_8cs.html',1,'']]], + ['byondexecutablelock_2ecs_2728',['ByondExecutableLock.cs',['../_byond_executable_lock_8cs.html',1,'']]], + ['byondinstallerbase_2ecs_2729',['ByondInstallerBase.cs',['../_byond_installer_base_8cs.html',1,'']]], + ['byondmanager_2ecs_2730',['ByondManager.cs',['../_byond_manager_8cs.html',1,'']]], + ['byondrights_2ecs_2731',['ByondRights.cs',['../_byond_rights_8cs.html',1,'']]] ]; diff --git a/search/files_3.html b/search/files_3.html index d1b79b97ac..8ef493916c 100644 --- a/search/files_3.html +++ b/search/files_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_3.js b/search/files_3.js index f88d7c1041..9d182a0cc9 100644 --- a/search/files_3.js +++ b/search/files_3.js @@ -1,36 +1,36 @@ var searchData= [ - ['channelmapping_2ecs_2663',['ChannelMapping.cs',['../_channel_mapping_8cs.html',1,'']]], - ['channelrepresentation_2ecs_2664',['ChannelRepresentation.cs',['../_channel_representation_8cs.html',1,'']]], - ['chatbot_2ecs_2665',['ChatBot.cs',['../_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)']]], - ['chatbotrights_2ecs_2666',['ChatBotRights.cs',['../_chat_bot_rights_8cs.html',1,'']]], - ['chatbotsclient_2ecs_2667',['ChatBotsClient.cs',['../_chat_bots_client_8cs.html',1,'']]], - ['chatchannel_2ecs_2668',['ChatChannel.cs',['../_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)']]], - ['chatchannelextensions_2ecs_2669',['ChatChannelExtensions.cs',['../_chat_channel_extensions_8cs.html',1,'']]], - ['chatcommand_2ecs_2670',['ChatCommand.cs',['../_chat_command_8cs.html',1,'']]], - ['chatconnectionstringbuilder_2ecs_2671',['ChatConnectionStringBuilder.cs',['../_chat_connection_string_builder_8cs.html',1,'']]], - ['chatcontroller_2ecs_2672',['ChatController.cs',['../_chat_controller_8cs.html',1,'']]], - ['chatmanager_2ecs_2673',['ChatManager.cs',['../_chat_manager_8cs.html',1,'']]], - ['chatmanagerfactory_2ecs_2674',['ChatManagerFactory.cs',['../_chat_manager_factory_8cs.html',1,'']]], - ['chatmessage_2ecs_2675',['ChatMessage.cs',['../_chat_message_8cs.html',1,'']]], - ['chatprovider_2ecs_2676',['ChatProvider.cs',['../_chat_provider_8cs.html',1,'']]], - ['chattrackingcontext_2ecs_2677',['ChatTrackingContext.cs',['../_chat_tracking_context_8cs.html',1,'']]], - ['chatupdate_2ecs_2678',['ChatUpdate.cs',['../_chat_update_8cs.html',1,'']]], - ['chatuser_2ecs_2679',['ChatUser.cs',['../_chat_user_8cs.html',1,'']]], - ['claimsinjector_2ecs_2680',['ClaimsInjector.cs',['../_claims_injector_8cs.html',1,'']]], - ['clientexception_2ecs_2681',['ClientException.cs',['../_client_exception_8cs.html',1,'']]], - ['combinedtopicresponse_2ecs_2682',['CombinedTopicResponse.cs',['../_combined_topic_response_8cs.html',1,'']]], - ['commandfactory_2ecs_2683',['CommandFactory.cs',['../_command_factory_8cs.html',1,'']]], - ['compilejob_2ecs_2684',['CompileJob.cs',['../_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html',1,'(Global Namespace)']]], - ['configuration_2ecs_2685',['Configuration.cs',['../_configuration_8cs.html',1,'']]], - ['configurationclient_2ecs_2686',['ConfigurationClient.cs',['../_configuration_client_8cs.html',1,'']]], - ['configurationcontroller_2ecs_2687',['ConfigurationController.cs',['../_configuration_controller_8cs.html',1,'']]], - ['configurationfile_2ecs_2688',['ConfigurationFile.cs',['../_configuration_file_8cs.html',1,'']]], - ['configurationrights_2ecs_2689',['ConfigurationRights.cs',['../_configuration_rights_8cs.html',1,'']]], - ['configurationtype_2ecs_2690',['ConfigurationType.cs',['../_configuration_type_8cs.html',1,'']]], - ['conflictexception_2ecs_2691',['ConflictException.cs',['../_conflict_exception_8cs.html',1,'']]], - ['console_2ecs_2692',['Console.cs',['../_console_8cs.html',1,'']]], - ['controlpanelconfiguration_2ecs_2693',['ControlPanelConfiguration.cs',['../_control_panel_configuration_8cs.html',1,'']]], - ['cryptographysuite_2ecs_2694',['CryptographySuite.cs',['../_cryptography_suite_8cs.html',1,'']]], - ['customcommand_2ecs_2695',['CustomCommand.cs',['../_custom_command_8cs.html',1,'']]] + ['channelmapping_2ecs_2732',['ChannelMapping.cs',['../_channel_mapping_8cs.html',1,'']]], + ['channelrepresentation_2ecs_2733',['ChannelRepresentation.cs',['../_channel_representation_8cs.html',1,'']]], + ['chatbot_2ecs_2734',['ChatBot.cs',['../_tgstation_8_server_8_api_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_chat_bot_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_bot_8cs.html',1,'(Global Namespace)']]], + ['chatbotrights_2ecs_2735',['ChatBotRights.cs',['../_chat_bot_rights_8cs.html',1,'']]], + ['chatbotsclient_2ecs_2736',['ChatBotsClient.cs',['../_chat_bots_client_8cs.html',1,'']]], + ['chatchannel_2ecs_2737',['ChatChannel.cs',['../_tgstation_8_server_8_api_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_chat_channel_8cs.html',1,'(Global Namespace)']]], + ['chatchannelextensions_2ecs_2738',['ChatChannelExtensions.cs',['../_chat_channel_extensions_8cs.html',1,'']]], + ['chatcommand_2ecs_2739',['ChatCommand.cs',['../_chat_command_8cs.html',1,'']]], + ['chatconnectionstringbuilder_2ecs_2740',['ChatConnectionStringBuilder.cs',['../_chat_connection_string_builder_8cs.html',1,'']]], + ['chatcontroller_2ecs_2741',['ChatController.cs',['../_chat_controller_8cs.html',1,'']]], + ['chatmanager_2ecs_2742',['ChatManager.cs',['../_chat_manager_8cs.html',1,'']]], + ['chatmanagerfactory_2ecs_2743',['ChatManagerFactory.cs',['../_chat_manager_factory_8cs.html',1,'']]], + ['chatmessage_2ecs_2744',['ChatMessage.cs',['../_chat_message_8cs.html',1,'']]], + ['chatprovider_2ecs_2745',['ChatProvider.cs',['../_chat_provider_8cs.html',1,'']]], + ['chattrackingcontext_2ecs_2746',['ChatTrackingContext.cs',['../_chat_tracking_context_8cs.html',1,'']]], + ['chatupdate_2ecs_2747',['ChatUpdate.cs',['../_chat_update_8cs.html',1,'']]], + ['chatuser_2ecs_2748',['ChatUser.cs',['../_chat_user_8cs.html',1,'']]], + ['claimsinjector_2ecs_2749',['ClaimsInjector.cs',['../_claims_injector_8cs.html',1,'']]], + ['clientexception_2ecs_2750',['ClientException.cs',['../_client_exception_8cs.html',1,'']]], + ['combinedtopicresponse_2ecs_2751',['CombinedTopicResponse.cs',['../_combined_topic_response_8cs.html',1,'']]], + ['commandfactory_2ecs_2752',['CommandFactory.cs',['../_command_factory_8cs.html',1,'']]], + ['compilejob_2ecs_2753',['CompileJob.cs',['../_tgstation_8_server_8_api_2_models_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_internal_2_compile_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_compile_job_8cs.html',1,'(Global Namespace)']]], + ['configuration_2ecs_2754',['Configuration.cs',['../_configuration_8cs.html',1,'']]], + ['configurationclient_2ecs_2755',['ConfigurationClient.cs',['../_configuration_client_8cs.html',1,'']]], + ['configurationcontroller_2ecs_2756',['ConfigurationController.cs',['../_configuration_controller_8cs.html',1,'']]], + ['configurationfile_2ecs_2757',['ConfigurationFile.cs',['../_configuration_file_8cs.html',1,'']]], + ['configurationrights_2ecs_2758',['ConfigurationRights.cs',['../_configuration_rights_8cs.html',1,'']]], + ['configurationtype_2ecs_2759',['ConfigurationType.cs',['../_configuration_type_8cs.html',1,'']]], + ['conflictexception_2ecs_2760',['ConflictException.cs',['../_conflict_exception_8cs.html',1,'']]], + ['console_2ecs_2761',['Console.cs',['../_console_8cs.html',1,'']]], + ['controlpanelconfiguration_2ecs_2762',['ControlPanelConfiguration.cs',['../_control_panel_configuration_8cs.html',1,'']]], + ['cryptographysuite_2ecs_2763',['CryptographySuite.cs',['../_cryptography_suite_8cs.html',1,'']]], + ['customcommand_2ecs_2764',['CustomCommand.cs',['../_custom_command_8cs.html',1,'']]] ]; diff --git a/search/files_4.html b/search/files_4.html index 6c31a9d083..ce83fd0fdd 100644 --- a/search/files_4.html +++ b/search/files_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_4.js b/search/files_4.js index 15ef75c539..47e11aafd4 100644 --- a/search/files_4.js +++ b/search/files_4.js @@ -1,33 +1,34 @@ var searchData= [ - ['databasecollection_2ecs_2696',['DatabaseCollection.cs',['../_database_collection_8cs.html',1,'']]], - ['databasecollectionextensions_2ecs_2697',['DatabaseCollectionExtensions.cs',['../_database_collection_extensions_8cs.html',1,'']]], - ['databaseconfiguration_2ecs_2698',['DatabaseConfiguration.cs',['../_database_configuration_8cs.html',1,'']]], - ['databaseconnectionfactory_2ecs_2699',['DatabaseConnectionFactory.cs',['../_database_connection_factory_8cs.html',1,'']]], - ['databasecontext_2ecs_2700',['DatabaseContext.cs',['../_database_context_8cs.html',1,'']]], - ['databasecontextfactory_2ecs_2701',['DatabaseContextFactory.cs',['../_database_context_factory_8cs.html',1,'']]], - ['databaseseeder_2ecs_2702',['DatabaseSeeder.cs',['../_database_seeder_8cs.html',1,'']]], - ['databasetype_2ecs_2703',['DatabaseType.cs',['../_database_type_8cs.html',1,'']]], - ['datetimeoffsetextensions_2ecs_2704',['DateTimeOffsetExtensions.cs',['../_date_time_offset_extensions_8cs.html',1,'']]], - ['defaultiomanager_2ecs_2705',['DefaultIOManager.cs',['../_default_i_o_manager_8cs.html',1,'']]], - ['designtimedbcontextfactoryhelpers_2ecs_2706',['DesignTimeDbContextFactoryHelpers.cs',['../_design_time_db_context_factory_helpers_8cs.html',1,'']]], - ['discordconnectionstringbuilder_2ecs_2707',['DiscordConnectionStringBuilder.cs',['../_discord_connection_string_builder_8cs.html',1,'']]], - ['discordprovider_2ecs_2708',['DiscordProvider.cs',['../_discord_provider_8cs.html',1,'']]], - ['dmapiconstants_2ecs_2709',['DMApiConstants.cs',['../_d_m_api_constants_8cs.html',1,'']]], - ['dmapiparameters_2ecs_2710',['DMApiParameters.cs',['../_d_m_api_parameters_8cs.html',1,'']]], - ['dmapiresponse_2ecs_2711',['DMApiResponse.cs',['../_d_m_api_response_8cs.html',1,'']]], - ['dmbfactory_2ecs_2712',['DmbFactory.cs',['../_dmb_factory_8cs.html',1,'']]], - ['dmbprovider_2ecs_2713',['DmbProvider.cs',['../_dmb_provider_8cs.html',1,'']]], - ['dreamdaemon_2ecs_2714',['DreamDaemon.cs',['../_dream_daemon_8cs.html',1,'']]], - ['dreamdaemonclient_2ecs_2715',['DreamDaemonClient.cs',['../_dream_daemon_client_8cs.html',1,'']]], - ['dreamdaemoncontroller_2ecs_2716',['DreamDaemonController.cs',['../_dream_daemon_controller_8cs.html',1,'']]], - ['dreamdaemonlaunchparameters_2ecs_2717',['DreamDaemonLaunchParameters.cs',['../_dream_daemon_launch_parameters_8cs.html',1,'']]], - ['dreamdaemonrights_2ecs_2718',['DreamDaemonRights.cs',['../_dream_daemon_rights_8cs.html',1,'']]], - ['dreamdaemonsecurity_2ecs_2719',['DreamDaemonSecurity.cs',['../_dream_daemon_security_8cs.html',1,'']]], - ['dreamdaemonsettings_2ecs_2720',['DreamDaemonSettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)']]], - ['dreammaker_2ecs_2721',['DreamMaker.cs',['../_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html',1,'(Global Namespace)']]], - ['dreammakerclient_2ecs_2722',['DreamMakerClient.cs',['../_dream_maker_client_8cs.html',1,'']]], - ['dreammakercontroller_2ecs_2723',['DreamMakerController.cs',['../_dream_maker_controller_8cs.html',1,'']]], - ['dreammakerrights_2ecs_2724',['DreamMakerRights.cs',['../_dream_maker_rights_8cs.html',1,'']]], - ['dreammakersettings_2ecs_2725',['DreamMakerSettings.cs',['../_dream_maker_settings_8cs.html',1,'']]] + ['databasecollection_2ecs_2765',['DatabaseCollection.cs',['../_database_collection_8cs.html',1,'']]], + ['databasecollectionextensions_2ecs_2766',['DatabaseCollectionExtensions.cs',['../_database_collection_extensions_8cs.html',1,'']]], + ['databaseconfiguration_2ecs_2767',['DatabaseConfiguration.cs',['../_database_configuration_8cs.html',1,'']]], + ['databaseconnectionfactory_2ecs_2768',['DatabaseConnectionFactory.cs',['../_database_connection_factory_8cs.html',1,'']]], + ['databasecontext_2ecs_2769',['DatabaseContext.cs',['../_database_context_8cs.html',1,'']]], + ['databasecontextfactory_2ecs_2770',['DatabaseContextFactory.cs',['../_database_context_factory_8cs.html',1,'']]], + ['databaseseeder_2ecs_2771',['DatabaseSeeder.cs',['../_database_seeder_8cs.html',1,'']]], + ['databasetype_2ecs_2772',['DatabaseType.cs',['../_database_type_8cs.html',1,'']]], + ['datetimeoffsetextensions_2ecs_2773',['DateTimeOffsetExtensions.cs',['../_date_time_offset_extensions_8cs.html',1,'']]], + ['defaultiomanager_2ecs_2774',['DefaultIOManager.cs',['../_default_i_o_manager_8cs.html',1,'']]], + ['designtimedbcontextfactoryhelpers_2ecs_2775',['DesignTimeDbContextFactoryHelpers.cs',['../_design_time_db_context_factory_helpers_8cs.html',1,'']]], + ['discordconnectionstringbuilder_2ecs_2776',['DiscordConnectionStringBuilder.cs',['../_discord_connection_string_builder_8cs.html',1,'']]], + ['discorddmoutputdisplaytype_2ecs_2777',['DiscordDMOutputDisplayType.cs',['../_discord_d_m_output_display_type_8cs.html',1,'']]], + ['discordprovider_2ecs_2778',['DiscordProvider.cs',['../_discord_provider_8cs.html',1,'']]], + ['dmapiconstants_2ecs_2779',['DMApiConstants.cs',['../_d_m_api_constants_8cs.html',1,'']]], + ['dmapiparameters_2ecs_2780',['DMApiParameters.cs',['../_d_m_api_parameters_8cs.html',1,'']]], + ['dmapiresponse_2ecs_2781',['DMApiResponse.cs',['../_d_m_api_response_8cs.html',1,'']]], + ['dmbfactory_2ecs_2782',['DmbFactory.cs',['../_dmb_factory_8cs.html',1,'']]], + ['dmbprovider_2ecs_2783',['DmbProvider.cs',['../_dmb_provider_8cs.html',1,'']]], + ['dreamdaemon_2ecs_2784',['DreamDaemon.cs',['../_dream_daemon_8cs.html',1,'']]], + ['dreamdaemonclient_2ecs_2785',['DreamDaemonClient.cs',['../_dream_daemon_client_8cs.html',1,'']]], + ['dreamdaemoncontroller_2ecs_2786',['DreamDaemonController.cs',['../_dream_daemon_controller_8cs.html',1,'']]], + ['dreamdaemonlaunchparameters_2ecs_2787',['DreamDaemonLaunchParameters.cs',['../_dream_daemon_launch_parameters_8cs.html',1,'']]], + ['dreamdaemonrights_2ecs_2788',['DreamDaemonRights.cs',['../_dream_daemon_rights_8cs.html',1,'']]], + ['dreamdaemonsecurity_2ecs_2789',['DreamDaemonSecurity.cs',['../_dream_daemon_security_8cs.html',1,'']]], + ['dreamdaemonsettings_2ecs_2790',['DreamDaemonSettings.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_dream_daemon_settings_8cs.html',1,'(Global Namespace)']]], + ['dreammaker_2ecs_2791',['DreamMaker.cs',['../_tgstation_8_server_8_api_2_models_2_dream_maker_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_deployment_2_dream_maker_8cs.html',1,'(Global Namespace)']]], + ['dreammakerclient_2ecs_2792',['DreamMakerClient.cs',['../_dream_maker_client_8cs.html',1,'']]], + ['dreammakercontroller_2ecs_2793',['DreamMakerController.cs',['../_dream_maker_controller_8cs.html',1,'']]], + ['dreammakerrights_2ecs_2794',['DreamMakerRights.cs',['../_dream_maker_rights_8cs.html',1,'']]], + ['dreammakersettings_2ecs_2795',['DreamMakerSettings.cs',['../_dream_maker_settings_8cs.html',1,'']]] ]; diff --git a/search/files_5.html b/search/files_5.html index 2ff6409361..aa033fb7d5 100644 --- a/search/files_5.html +++ b/search/files_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_5.js b/search/files_5.js index 8ad465109a..5c35f67c4d 100644 --- a/search/files_5.js +++ b/search/files_5.js @@ -1,11 +1,11 @@ var searchData= [ - ['entityid_2ecs_2726',['EntityId.cs',['../_entity_id_8cs.html',1,'']]], - ['errorcode_2ecs_2727',['ErrorCode.cs',['../_error_code_8cs.html',1,'']]], - ['errorcodeextensions_2ecs_2728',['ErrorCodeExtensions.cs',['../_error_code_extensions_8cs.html',1,'']]], - ['errormessage_2ecs_2729',['ErrorMessage.cs',['../_error_message_8cs.html',1,'']]], - ['eventconsumer_2ecs_2730',['EventConsumer.cs',['../_event_consumer_8cs.html',1,'']]], - ['eventnotification_2ecs_2731',['EventNotification.cs',['../_event_notification_8cs.html',1,'']]], - ['eventscriptattribute_2ecs_2732',['EventScriptAttribute.cs',['../_event_script_attribute_8cs.html',1,'']]], - ['eventtype_2ecs_2733',['EventType.cs',['../_event_type_8cs.html',1,'']]] + ['entityid_2ecs_2796',['EntityId.cs',['../_entity_id_8cs.html',1,'']]], + ['errorcode_2ecs_2797',['ErrorCode.cs',['../_error_code_8cs.html',1,'']]], + ['errorcodeextensions_2ecs_2798',['ErrorCodeExtensions.cs',['../_error_code_extensions_8cs.html',1,'']]], + ['errormessage_2ecs_2799',['ErrorMessage.cs',['../_error_message_8cs.html',1,'']]], + ['eventconsumer_2ecs_2800',['EventConsumer.cs',['../_event_consumer_8cs.html',1,'']]], + ['eventnotification_2ecs_2801',['EventNotification.cs',['../_event_notification_8cs.html',1,'']]], + ['eventscriptattribute_2ecs_2802',['EventScriptAttribute.cs',['../_event_script_attribute_8cs.html',1,'']]], + ['eventtype_2ecs_2803',['EventType.cs',['../_event_type_8cs.html',1,'']]] ]; diff --git a/search/files_6.html b/search/files_6.html index 82e6890c1d..6622c1b2e7 100644 --- a/search/files_6.html +++ b/search/files_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_6.js b/search/files_6.js index 2b71235e89..6a573add0a 100644 --- a/search/files_6.js +++ b/search/files_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['features_2edox_2734',['Features.dox',['../_features_8dox.html',1,'']]], - ['fileloggingconfiguration_2ecs_2735',['FileLoggingConfiguration.cs',['../_file_logging_configuration_8cs.html',1,'']]] + ['features_2edox_2804',['Features.dox',['../_features_8dox.html',1,'']]], + ['fileloggingconfiguration_2ecs_2805',['FileLoggingConfiguration.cs',['../_file_logging_configuration_8cs.html',1,'']]] ]; diff --git a/search/files_7.html b/search/files_7.html index 7ce361d601..99c409c84c 100644 --- a/search/files_7.html +++ b/search/files_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_7.js b/search/files_7.js index 1593cd8705..651a843220 100644 --- a/search/files_7.js +++ b/search/files_7.js @@ -1,6 +1,7 @@ var searchData= [ - ['generalconfiguration_2ecs_2736',['GeneralConfiguration.cs',['../_general_configuration_8cs.html',1,'']]], - ['githubclientfactory_2ecs_2737',['GitHubClientFactory.cs',['../_git_hub_client_factory_8cs.html',1,'']]], - ['globalsuppressions_2ecs_2738',['GlobalSuppressions.cs',['../_global_suppressions_8cs.html',1,'']]] + ['generalconfiguration_2ecs_2806',['GeneralConfiguration.cs',['../_general_configuration_8cs.html',1,'']]], + ['githubclientfactory_2ecs_2807',['GitHubClientFactory.cs',['../_git_hub_client_factory_8cs.html',1,'']]], + ['githubdeploymentmanager_2ecs_2808',['GitHubDeploymentManager.cs',['../_git_hub_deployment_manager_8cs.html',1,'']]], + ['globalsuppressions_2ecs_2809',['GlobalSuppressions.cs',['../_global_suppressions_8cs.html',1,'']]] ]; diff --git a/search/files_8.html b/search/files_8.html index 49983b8deb..881ab1243e 100644 --- a/search/files_8.html +++ b/search/files_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_8.js b/search/files_8.js index bab22ef949..5fadcd5ef6 100644 --- a/search/files_8.js +++ b/search/files_8.js @@ -1,8 +1,8 @@ var searchData= [ - ['headersexception_2ecs_2739',['HeadersException.cs',['../_headers_exception_8cs.html',1,'']]], - ['headertypes_2ecs_2740',['HeaderTypes.cs',['../_header_types_8cs.html',1,'']]], - ['homecontroller_2ecs_2741',['HomeController.cs',['../_home_controller_8cs.html',1,'']]], - ['hostbuilderextensions_2ecs_2742',['HostBuilderExtensions.cs',['../_host_builder_extensions_8cs.html',1,'']]], - ['httpclient_2ecs_2743',['HttpClient.cs',['../_http_client_8cs.html',1,'']]] + ['headersexception_2ecs_2810',['HeadersException.cs',['../_headers_exception_8cs.html',1,'']]], + ['headertypes_2ecs_2811',['HeaderTypes.cs',['../_header_types_8cs.html',1,'']]], + ['homecontroller_2ecs_2812',['HomeController.cs',['../_home_controller_8cs.html',1,'']]], + ['hostbuilderextensions_2ecs_2813',['HostBuilderExtensions.cs',['../_host_builder_extensions_8cs.html',1,'']]], + ['httpclient_2ecs_2814',['HttpClient.cs',['../_http_client_8cs.html',1,'']]] ]; diff --git a/search/files_9.html b/search/files_9.html index 7cfea7e80c..ce21d9af86 100644 --- a/search/files_9.html +++ b/search/files_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_9.js b/search/files_9.js index d46529f399..14d09e1b3a 100644 --- a/search/files_9.js +++ b/search/files_9.js @@ -1,117 +1,118 @@ var searchData= [ - ['iadministrationclient_2ecs_2744',['IAdministrationClient.cs',['../_i_administration_client_8cs.html',1,'']]], - ['iapiclient_2ecs_2745',['IApiClient.cs',['../_i_api_client_8cs.html',1,'']]], - ['iapiclientfactory_2ecs_2746',['IApiClientFactory.cs',['../_i_api_client_factory_8cs.html',1,'']]], - ['iassemblyinformationprovider_2ecs_2747',['IAssemblyInformationProvider.cs',['../_i_assembly_information_provider_8cs.html',1,'']]], - ['iasyncdelayer_2ecs_2748',['IAsyncDelayer.cs',['../_i_async_delayer_8cs.html',1,'']]], - ['iauthenticationcontext_2ecs_2749',['IAuthenticationContext.cs',['../_i_authentication_context_8cs.html',1,'']]], - ['iauthenticationcontextfactory_2ecs_2750',['IAuthenticationContextFactory.cs',['../_i_authentication_context_factory_8cs.html',1,'']]], - ['ibridgedispatcher_2ecs_2751',['IBridgeDispatcher.cs',['../_i_bridge_dispatcher_8cs.html',1,'']]], - ['ibridgehandler_2ecs_2752',['IBridgeHandler.cs',['../_i_bridge_handler_8cs.html',1,'']]], - ['ibridgeregistrar_2ecs_2753',['IBridgeRegistrar.cs',['../_i_bridge_registrar_8cs.html',1,'']]], - ['ibridgeregistration_2ecs_2754',['IBridgeRegistration.cs',['../_i_bridge_registration_8cs.html',1,'']]], - ['ibyondclient_2ecs_2755',['IByondClient.cs',['../_i_byond_client_8cs.html',1,'']]], - ['ibyondexecutablelock_2ecs_2756',['IByondExecutableLock.cs',['../_i_byond_executable_lock_8cs.html',1,'']]], - ['ibyondinstaller_2ecs_2757',['IByondInstaller.cs',['../_i_byond_installer_8cs.html',1,'']]], - ['ibyondmanager_2ecs_2758',['IByondManager.cs',['../_i_byond_manager_8cs.html',1,'']]], - ['ichannelsink_2ecs_2759',['IChannelSink.cs',['../_i_channel_sink_8cs.html',1,'']]], - ['ichatbotsclient_2ecs_2760',['IChatBotsClient.cs',['../_i_chat_bots_client_8cs.html',1,'']]], - ['ichatmanager_2ecs_2761',['IChatManager.cs',['../_i_chat_manager_8cs.html',1,'']]], - ['ichatmanagerfactory_2ecs_2762',['IChatManagerFactory.cs',['../_i_chat_manager_factory_8cs.html',1,'']]], - ['ichattrackingcontext_2ecs_2763',['IChatTrackingContext.cs',['../_i_chat_tracking_context_8cs.html',1,'']]], - ['iclaimsinjector_2ecs_2764',['IClaimsInjector.cs',['../_i_claims_injector_8cs.html',1,'']]], - ['icommand_2ecs_2765',['ICommand.cs',['../_i_command_8cs.html',1,'']]], - ['icommandfactory_2ecs_2766',['ICommandFactory.cs',['../_i_command_factory_8cs.html',1,'']]], - ['icompilejobsink_2ecs_2767',['ICompileJobSink.cs',['../_i_compile_job_sink_8cs.html',1,'']]], - ['iconfiguration_2ecs_2768',['IConfiguration.cs',['../_i_configuration_8cs.html',1,'']]], - ['iconfigurationclient_2ecs_2769',['IConfigurationClient.cs',['../_i_configuration_client_8cs.html',1,'']]], - ['iconsole_2ecs_2770',['IConsole.cs',['../_i_console_8cs.html',1,'']]], - ['icredentialsprovider_2ecs_2771',['ICredentialsProvider.cs',['../_i_credentials_provider_8cs.html',1,'']]], - ['icryptographysuite_2ecs_2772',['ICryptographySuite.cs',['../_i_cryptography_suite_8cs.html',1,'']]], - ['icustomcommandhandler_2ecs_2773',['ICustomCommandHandler.cs',['../_i_custom_command_handler_8cs.html',1,'']]], - ['idatabasecollection_2ecs_2774',['IDatabaseCollection.cs',['../_i_database_collection_8cs.html',1,'']]], - ['idatabaseconnectionfactory_2ecs_2775',['IDatabaseConnectionFactory.cs',['../_i_database_connection_factory_8cs.html',1,'']]], - ['idatabasecontext_2ecs_2776',['IDatabaseContext.cs',['../_i_database_context_8cs.html',1,'']]], - ['idatabasecontextfactory_2ecs_2777',['IDatabaseContextFactory.cs',['../_i_database_context_factory_8cs.html',1,'']]], - ['idatabaseseeder_2ecs_2778',['IDatabaseSeeder.cs',['../_i_database_seeder_8cs.html',1,'']]], - ['identitycache_2ecs_2779',['IdentityCache.cs',['../_identity_cache_8cs.html',1,'']]], - ['identitycacheobject_2ecs_2780',['IdentityCacheObject.cs',['../_identity_cache_object_8cs.html',1,'']]], - ['idmbfactory_2ecs_2781',['IDmbFactory.cs',['../_i_dmb_factory_8cs.html',1,'']]], - ['idmbprovider_2ecs_2782',['IDmbProvider.cs',['../_i_dmb_provider_8cs.html',1,'']]], - ['idreamdaemonclient_2ecs_2783',['IDreamDaemonClient.cs',['../_i_dream_daemon_client_8cs.html',1,'']]], - ['idreammaker_2ecs_2784',['IDreamMaker.cs',['../_i_dream_maker_8cs.html',1,'']]], - ['idreammakerclient_2ecs_2785',['IDreamMakerClient.cs',['../_i_dream_maker_client_8cs.html',1,'']]], - ['ieventconsumer_2ecs_2786',['IEventConsumer.cs',['../_i_event_consumer_8cs.html',1,'']]], - ['igithubclientfactory_2ecs_2787',['IGitHubClientFactory.cs',['../_i_git_hub_client_factory_8cs.html',1,'']]], - ['ihttpclient_2ecs_2788',['IHttpClient.cs',['../_i_http_client_8cs.html',1,'']]], - ['iidentitycache_2ecs_2789',['IIdentityCache.cs',['../_i_identity_cache_8cs.html',1,'']]], - ['iinstance_2ecs_2790',['IInstance.cs',['../_i_instance_8cs.html',1,'']]], - ['iinstanceclient_2ecs_2791',['IInstanceClient.cs',['../_i_instance_client_8cs.html',1,'']]], - ['iinstancecore_2ecs_2792',['IInstanceCore.cs',['../_i_instance_core_8cs.html',1,'']]], - ['iinstancecoreprovider_2ecs_2793',['IInstanceCoreProvider.cs',['../_i_instance_core_provider_8cs.html',1,'']]], - ['iinstancefactory_2ecs_2794',['IInstanceFactory.cs',['../_i_instance_factory_8cs.html',1,'']]], - ['iinstancemanager_2ecs_2795',['IInstanceManager.cs',['../_i_instance_manager_8cs.html',1,'']]], - ['iinstancemanagerclient_2ecs_2796',['IInstanceManagerClient.cs',['../_i_instance_manager_client_8cs.html',1,'']]], - ['iinstancereference_2ecs_2797',['IInstanceReference.cs',['../_i_instance_reference_8cs.html',1,'']]], - ['iinstanceuserclient_2ecs_2798',['IInstanceUserClient.cs',['../_i_instance_user_client_8cs.html',1,'']]], - ['iiomanager_2ecs_2799',['IIOManager.cs',['../_i_i_o_manager_8cs.html',1,'']]], - ['ijobmanager_2ecs_2800',['IJobManager.cs',['../_i_job_manager_8cs.html',1,'']]], - ['ijobsclient_2ecs_2801',['IJobsClient.cs',['../_i_jobs_client_8cs.html',1,'']]], - ['ilatestcompilejobprovider_2ecs_2802',['ILatestCompileJobProvider.cs',['../_i_latest_compile_job_provider_8cs.html',1,'']]], - ['ilibgit2commands_2ecs_2803',['ILibGit2Commands.cs',['../_i_lib_git2_commands_8cs.html',1,'']]], - ['ilibgit2repositoryfactory_2ecs_2804',['ILibGit2RepositoryFactory.cs',['../_i_lib_git2_repository_factory_8cs.html',1,'']]], - ['inetworkpromptreaper_2ecs_2805',['INetworkPromptReaper.cs',['../_i_network_prompt_reaper_8cs.html',1,'']]], - ['instance_2ecs_2806',['Instance.cs',['../_tgstation_8_server_8_api_2_models_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_8cs.html',1,'(Global Namespace)']]], - ['instanceclient_2ecs_2807',['InstanceClient.cs',['../_instance_client_8cs.html',1,'']]], - ['instancecontainer_2ecs_2808',['InstanceContainer.cs',['../_instance_container_8cs.html',1,'']]], - ['instancecontroller_2ecs_2809',['InstanceController.cs',['../_instance_controller_8cs.html',1,'']]], - ['instancefactory_2ecs_2810',['InstanceFactory.cs',['../_instance_factory_8cs.html',1,'']]], - ['instancemanager_2ecs_2811',['InstanceManager.cs',['../_instance_manager_8cs.html',1,'']]], - ['instancemanagerclient_2ecs_2812',['InstanceManagerClient.cs',['../_instance_manager_client_8cs.html',1,'']]], - ['instancemanagerrights_2ecs_2813',['InstanceManagerRights.cs',['../_instance_manager_rights_8cs.html',1,'']]], - ['instancerequiredcontroller_2ecs_2814',['InstanceRequiredController.cs',['../_instance_required_controller_8cs.html',1,'']]], - ['instanceuser_2ecs_2815',['InstanceUser.cs',['../_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html',1,'(Global Namespace)']]], - ['instanceuserclient_2ecs_2816',['InstanceUserClient.cs',['../_instance_user_client_8cs.html',1,'']]], - ['instanceusercontroller_2ecs_2817',['InstanceUserController.cs',['../_instance_user_controller_8cs.html',1,'']]], - ['instanceuserrights_2ecs_2818',['InstanceUserRights.cs',['../_instance_user_rights_8cs.html',1,'']]], - ['instancewrapper_2ecs_2819',['InstanceWrapper.cs',['../_instance_wrapper_8cs.html',1,'']]], - ['insufficientpermissionsexception_2ecs_2820',['InsufficientPermissionsException.cs',['../_insufficient_permissions_exception_8cs.html',1,'']]], - ['iplatformidentifier_2ecs_2821',['IPlatformIdentifier.cs',['../_i_platform_identifier_8cs.html',1,'']]], - ['ipostsetupservices_2ecs_2822',['IPostSetupServices.cs',['../_i_post_setup_services_8cs.html',1,'']]], - ['ipostwritehandler_2ecs_2823',['IPostWriteHandler.cs',['../_i_post_write_handler_8cs.html',1,'']]], - ['iprocess_2ecs_2824',['IProcess.cs',['../_i_process_8cs.html',1,'']]], - ['iprocessbase_2ecs_2825',['IProcessBase.cs',['../_i_process_base_8cs.html',1,'']]], - ['iprocessexecutor_2ecs_2826',['IProcessExecutor.cs',['../_i_process_executor_8cs.html',1,'']]], - ['iprocessfeatures_2ecs_2827',['IProcessFeatures.cs',['../_i_process_features_8cs.html',1,'']]], - ['iprovider_2ecs_2828',['IProvider.cs',['../_i_provider_8cs.html',1,'']]], - ['iproviderfactory_2ecs_2829',['IProviderFactory.cs',['../_i_provider_factory_8cs.html',1,'']]], - ['ircconnectionstringbuilder_2ecs_2830',['IrcConnectionStringBuilder.cs',['../_irc_connection_string_builder_8cs.html',1,'']]], - ['ircpasswordtype_2ecs_2831',['IrcPasswordType.cs',['../_irc_password_type_8cs.html',1,'']]], - ['ircprovider_2ecs_2832',['IrcProvider.cs',['../_irc_provider_8cs.html',1,'']]], - ['irenamenotifyee_2ecs_2833',['IRenameNotifyee.cs',['../_i_rename_notifyee_8cs.html',1,'']]], - ['irepository_2ecs_2834',['IRepository.cs',['../_i_repository_8cs.html',1,'']]], - ['irepositoryclient_2ecs_2835',['IRepositoryClient.cs',['../_i_repository_client_8cs.html',1,'']]], - ['irepositorymanager_2ecs_2836',['IRepositoryManager.cs',['../_i_repository_manager_8cs.html',1,'']]], - ['irequestlogger_2ecs_2837',['IRequestLogger.cs',['../_i_request_logger_8cs.html',1,'']]], - ['irestarthandler_2ecs_2838',['IRestartHandler.cs',['../_i_restart_handler_8cs.html',1,'']]], - ['irestartregistration_2ecs_2839',['IRestartRegistration.cs',['../_i_restart_registration_8cs.html',1,'']]], - ['iserver_2ecs_2840',['IServer.cs',['../_i_server_8cs.html',1,'']]], - ['iserverclient_2ecs_2841',['IServerClient.cs',['../_i_server_client_8cs.html',1,'']]], - ['iserverclientfactory_2ecs_2842',['IServerClientFactory.cs',['../_i_server_client_factory_8cs.html',1,'']]], - ['iservercontrol_2ecs_2843',['IServerControl.cs',['../_i_server_control_8cs.html',1,'']]], - ['iserverfactory_2ecs_2844',['IServerFactory.cs',['../_i_server_factory_8cs.html',1,'']]], - ['iserverportprovider_2ecs_2845',['IServerPortProvider.cs',['../_i_server_port_provider_8cs.html',1,'']]], - ['isessioncontroller_2ecs_2846',['ISessionController.cs',['../_i_session_controller_8cs.html',1,'']]], - ['isessioncontrollerfactory_2ecs_2847',['ISessionControllerFactory.cs',['../_i_session_controller_factory_8cs.html',1,'']]], - ['isessionpersistor_2ecs_2848',['ISessionPersistor.cs',['../_i_session_persistor_8cs.html',1,'']]], - ['isymlinkfactory_2ecs_2849',['ISymlinkFactory.cs',['../_i_symlink_factory_8cs.html',1,'']]], - ['isynchronousiomanager_2ecs_2850',['ISynchronousIOManager.cs',['../_i_synchronous_i_o_manager_8cs.html',1,'']]], - ['isystemidentity_2ecs_2851',['ISystemIdentity.cs',['../_i_system_identity_8cs.html',1,'']]], - ['isystemidentityfactory_2ecs_2852',['ISystemIdentityFactory.cs',['../_i_system_identity_factory_8cs.html',1,'']]], - ['itokenfactory_2ecs_2853',['ITokenFactory.cs',['../_i_token_factory_8cs.html',1,'']]], - ['itopicclientfactory_2ecs_2854',['ITopicClientFactory.cs',['../_i_topic_client_factory_8cs.html',1,'']]], - ['iusersclient_2ecs_2855',['IUsersClient.cs',['../_i_users_client_8cs.html',1,'']]], - ['iwatchdog_2ecs_2856',['IWatchdog.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)']]], - ['iwatchdogfactory_2ecs_2857',['IWatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)']]] + ['iadministrationclient_2ecs_2815',['IAdministrationClient.cs',['../_i_administration_client_8cs.html',1,'']]], + ['iapiclient_2ecs_2816',['IApiClient.cs',['../_i_api_client_8cs.html',1,'']]], + ['iapiclientfactory_2ecs_2817',['IApiClientFactory.cs',['../_i_api_client_factory_8cs.html',1,'']]], + ['iassemblyinformationprovider_2ecs_2818',['IAssemblyInformationProvider.cs',['../_i_assembly_information_provider_8cs.html',1,'']]], + ['iasyncdelayer_2ecs_2819',['IAsyncDelayer.cs',['../_i_async_delayer_8cs.html',1,'']]], + ['iauthenticationcontext_2ecs_2820',['IAuthenticationContext.cs',['../_i_authentication_context_8cs.html',1,'']]], + ['iauthenticationcontextfactory_2ecs_2821',['IAuthenticationContextFactory.cs',['../_i_authentication_context_factory_8cs.html',1,'']]], + ['ibridgedispatcher_2ecs_2822',['IBridgeDispatcher.cs',['../_i_bridge_dispatcher_8cs.html',1,'']]], + ['ibridgehandler_2ecs_2823',['IBridgeHandler.cs',['../_i_bridge_handler_8cs.html',1,'']]], + ['ibridgeregistrar_2ecs_2824',['IBridgeRegistrar.cs',['../_i_bridge_registrar_8cs.html',1,'']]], + ['ibridgeregistration_2ecs_2825',['IBridgeRegistration.cs',['../_i_bridge_registration_8cs.html',1,'']]], + ['ibyondclient_2ecs_2826',['IByondClient.cs',['../_i_byond_client_8cs.html',1,'']]], + ['ibyondexecutablelock_2ecs_2827',['IByondExecutableLock.cs',['../_i_byond_executable_lock_8cs.html',1,'']]], + ['ibyondinstaller_2ecs_2828',['IByondInstaller.cs',['../_i_byond_installer_8cs.html',1,'']]], + ['ibyondmanager_2ecs_2829',['IByondManager.cs',['../_i_byond_manager_8cs.html',1,'']]], + ['ichannelsink_2ecs_2830',['IChannelSink.cs',['../_i_channel_sink_8cs.html',1,'']]], + ['ichatbotsclient_2ecs_2831',['IChatBotsClient.cs',['../_i_chat_bots_client_8cs.html',1,'']]], + ['ichatmanager_2ecs_2832',['IChatManager.cs',['../_i_chat_manager_8cs.html',1,'']]], + ['ichatmanagerfactory_2ecs_2833',['IChatManagerFactory.cs',['../_i_chat_manager_factory_8cs.html',1,'']]], + ['ichattrackingcontext_2ecs_2834',['IChatTrackingContext.cs',['../_i_chat_tracking_context_8cs.html',1,'']]], + ['iclaimsinjector_2ecs_2835',['IClaimsInjector.cs',['../_i_claims_injector_8cs.html',1,'']]], + ['icommand_2ecs_2836',['ICommand.cs',['../_i_command_8cs.html',1,'']]], + ['icommandfactory_2ecs_2837',['ICommandFactory.cs',['../_i_command_factory_8cs.html',1,'']]], + ['icompilejobsink_2ecs_2838',['ICompileJobSink.cs',['../_i_compile_job_sink_8cs.html',1,'']]], + ['iconfiguration_2ecs_2839',['IConfiguration.cs',['../_i_configuration_8cs.html',1,'']]], + ['iconfigurationclient_2ecs_2840',['IConfigurationClient.cs',['../_i_configuration_client_8cs.html',1,'']]], + ['iconsole_2ecs_2841',['IConsole.cs',['../_i_console_8cs.html',1,'']]], + ['icredentialsprovider_2ecs_2842',['ICredentialsProvider.cs',['../_i_credentials_provider_8cs.html',1,'']]], + ['icryptographysuite_2ecs_2843',['ICryptographySuite.cs',['../_i_cryptography_suite_8cs.html',1,'']]], + ['icustomcommandhandler_2ecs_2844',['ICustomCommandHandler.cs',['../_i_custom_command_handler_8cs.html',1,'']]], + ['idatabasecollection_2ecs_2845',['IDatabaseCollection.cs',['../_i_database_collection_8cs.html',1,'']]], + ['idatabaseconnectionfactory_2ecs_2846',['IDatabaseConnectionFactory.cs',['../_i_database_connection_factory_8cs.html',1,'']]], + ['idatabasecontext_2ecs_2847',['IDatabaseContext.cs',['../_i_database_context_8cs.html',1,'']]], + ['idatabasecontextfactory_2ecs_2848',['IDatabaseContextFactory.cs',['../_i_database_context_factory_8cs.html',1,'']]], + ['idatabaseseeder_2ecs_2849',['IDatabaseSeeder.cs',['../_i_database_seeder_8cs.html',1,'']]], + ['identitycache_2ecs_2850',['IdentityCache.cs',['../_identity_cache_8cs.html',1,'']]], + ['identitycacheobject_2ecs_2851',['IdentityCacheObject.cs',['../_identity_cache_object_8cs.html',1,'']]], + ['idmbfactory_2ecs_2852',['IDmbFactory.cs',['../_i_dmb_factory_8cs.html',1,'']]], + ['idmbprovider_2ecs_2853',['IDmbProvider.cs',['../_i_dmb_provider_8cs.html',1,'']]], + ['idreamdaemonclient_2ecs_2854',['IDreamDaemonClient.cs',['../_i_dream_daemon_client_8cs.html',1,'']]], + ['idreammaker_2ecs_2855',['IDreamMaker.cs',['../_i_dream_maker_8cs.html',1,'']]], + ['idreammakerclient_2ecs_2856',['IDreamMakerClient.cs',['../_i_dream_maker_client_8cs.html',1,'']]], + ['ieventconsumer_2ecs_2857',['IEventConsumer.cs',['../_i_event_consumer_8cs.html',1,'']]], + ['igithubclientfactory_2ecs_2858',['IGitHubClientFactory.cs',['../_i_git_hub_client_factory_8cs.html',1,'']]], + ['igithubdeploymentmanager_2ecs_2859',['IGitHubDeploymentManager.cs',['../_i_git_hub_deployment_manager_8cs.html',1,'']]], + ['ihttpclient_2ecs_2860',['IHttpClient.cs',['../_i_http_client_8cs.html',1,'']]], + ['iidentitycache_2ecs_2861',['IIdentityCache.cs',['../_i_identity_cache_8cs.html',1,'']]], + ['iinstance_2ecs_2862',['IInstance.cs',['../_i_instance_8cs.html',1,'']]], + ['iinstanceclient_2ecs_2863',['IInstanceClient.cs',['../_i_instance_client_8cs.html',1,'']]], + ['iinstancecore_2ecs_2864',['IInstanceCore.cs',['../_i_instance_core_8cs.html',1,'']]], + ['iinstancecoreprovider_2ecs_2865',['IInstanceCoreProvider.cs',['../_i_instance_core_provider_8cs.html',1,'']]], + ['iinstancefactory_2ecs_2866',['IInstanceFactory.cs',['../_i_instance_factory_8cs.html',1,'']]], + ['iinstancemanager_2ecs_2867',['IInstanceManager.cs',['../_i_instance_manager_8cs.html',1,'']]], + ['iinstancemanagerclient_2ecs_2868',['IInstanceManagerClient.cs',['../_i_instance_manager_client_8cs.html',1,'']]], + ['iinstancereference_2ecs_2869',['IInstanceReference.cs',['../_i_instance_reference_8cs.html',1,'']]], + ['iinstanceuserclient_2ecs_2870',['IInstanceUserClient.cs',['../_i_instance_user_client_8cs.html',1,'']]], + ['iiomanager_2ecs_2871',['IIOManager.cs',['../_i_i_o_manager_8cs.html',1,'']]], + ['ijobmanager_2ecs_2872',['IJobManager.cs',['../_i_job_manager_8cs.html',1,'']]], + ['ijobsclient_2ecs_2873',['IJobsClient.cs',['../_i_jobs_client_8cs.html',1,'']]], + ['ilatestcompilejobprovider_2ecs_2874',['ILatestCompileJobProvider.cs',['../_i_latest_compile_job_provider_8cs.html',1,'']]], + ['ilibgit2commands_2ecs_2875',['ILibGit2Commands.cs',['../_i_lib_git2_commands_8cs.html',1,'']]], + ['ilibgit2repositoryfactory_2ecs_2876',['ILibGit2RepositoryFactory.cs',['../_i_lib_git2_repository_factory_8cs.html',1,'']]], + ['inetworkpromptreaper_2ecs_2877',['INetworkPromptReaper.cs',['../_i_network_prompt_reaper_8cs.html',1,'']]], + ['instance_2ecs_2878',['Instance.cs',['../_tgstation_8_server_8_api_2_models_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_components_2_instance_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_8cs.html',1,'(Global Namespace)']]], + ['instanceclient_2ecs_2879',['InstanceClient.cs',['../_instance_client_8cs.html',1,'']]], + ['instancecontainer_2ecs_2880',['InstanceContainer.cs',['../_instance_container_8cs.html',1,'']]], + ['instancecontroller_2ecs_2881',['InstanceController.cs',['../_instance_controller_8cs.html',1,'']]], + ['instancefactory_2ecs_2882',['InstanceFactory.cs',['../_instance_factory_8cs.html',1,'']]], + ['instancemanager_2ecs_2883',['InstanceManager.cs',['../_instance_manager_8cs.html',1,'']]], + ['instancemanagerclient_2ecs_2884',['InstanceManagerClient.cs',['../_instance_manager_client_8cs.html',1,'']]], + ['instancemanagerrights_2ecs_2885',['InstanceManagerRights.cs',['../_instance_manager_rights_8cs.html',1,'']]], + ['instancerequiredcontroller_2ecs_2886',['InstanceRequiredController.cs',['../_instance_required_controller_8cs.html',1,'']]], + ['instanceuser_2ecs_2887',['InstanceUser.cs',['../_tgstation_8_server_8_api_2_models_2_instance_user_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_instance_user_8cs.html',1,'(Global Namespace)']]], + ['instanceuserclient_2ecs_2888',['InstanceUserClient.cs',['../_instance_user_client_8cs.html',1,'']]], + ['instanceusercontroller_2ecs_2889',['InstanceUserController.cs',['../_instance_user_controller_8cs.html',1,'']]], + ['instanceuserrights_2ecs_2890',['InstanceUserRights.cs',['../_instance_user_rights_8cs.html',1,'']]], + ['instancewrapper_2ecs_2891',['InstanceWrapper.cs',['../_instance_wrapper_8cs.html',1,'']]], + ['insufficientpermissionsexception_2ecs_2892',['InsufficientPermissionsException.cs',['../_insufficient_permissions_exception_8cs.html',1,'']]], + ['iplatformidentifier_2ecs_2893',['IPlatformIdentifier.cs',['../_i_platform_identifier_8cs.html',1,'']]], + ['ipostsetupservices_2ecs_2894',['IPostSetupServices.cs',['../_i_post_setup_services_8cs.html',1,'']]], + ['ipostwritehandler_2ecs_2895',['IPostWriteHandler.cs',['../_i_post_write_handler_8cs.html',1,'']]], + ['iprocess_2ecs_2896',['IProcess.cs',['../_i_process_8cs.html',1,'']]], + ['iprocessbase_2ecs_2897',['IProcessBase.cs',['../_i_process_base_8cs.html',1,'']]], + ['iprocessexecutor_2ecs_2898',['IProcessExecutor.cs',['../_i_process_executor_8cs.html',1,'']]], + ['iprocessfeatures_2ecs_2899',['IProcessFeatures.cs',['../_i_process_features_8cs.html',1,'']]], + ['iprovider_2ecs_2900',['IProvider.cs',['../_i_provider_8cs.html',1,'']]], + ['iproviderfactory_2ecs_2901',['IProviderFactory.cs',['../_i_provider_factory_8cs.html',1,'']]], + ['ircconnectionstringbuilder_2ecs_2902',['IrcConnectionStringBuilder.cs',['../_irc_connection_string_builder_8cs.html',1,'']]], + ['ircpasswordtype_2ecs_2903',['IrcPasswordType.cs',['../_irc_password_type_8cs.html',1,'']]], + ['ircprovider_2ecs_2904',['IrcProvider.cs',['../_irc_provider_8cs.html',1,'']]], + ['irenamenotifyee_2ecs_2905',['IRenameNotifyee.cs',['../_i_rename_notifyee_8cs.html',1,'']]], + ['irepository_2ecs_2906',['IRepository.cs',['../_i_repository_8cs.html',1,'']]], + ['irepositoryclient_2ecs_2907',['IRepositoryClient.cs',['../_i_repository_client_8cs.html',1,'']]], + ['irepositorymanager_2ecs_2908',['IRepositoryManager.cs',['../_i_repository_manager_8cs.html',1,'']]], + ['irequestlogger_2ecs_2909',['IRequestLogger.cs',['../_i_request_logger_8cs.html',1,'']]], + ['irestarthandler_2ecs_2910',['IRestartHandler.cs',['../_i_restart_handler_8cs.html',1,'']]], + ['irestartregistration_2ecs_2911',['IRestartRegistration.cs',['../_i_restart_registration_8cs.html',1,'']]], + ['iserver_2ecs_2912',['IServer.cs',['../_i_server_8cs.html',1,'']]], + ['iserverclient_2ecs_2913',['IServerClient.cs',['../_i_server_client_8cs.html',1,'']]], + ['iserverclientfactory_2ecs_2914',['IServerClientFactory.cs',['../_i_server_client_factory_8cs.html',1,'']]], + ['iservercontrol_2ecs_2915',['IServerControl.cs',['../_i_server_control_8cs.html',1,'']]], + ['iserverfactory_2ecs_2916',['IServerFactory.cs',['../_i_server_factory_8cs.html',1,'']]], + ['iserverportprovider_2ecs_2917',['IServerPortProvider.cs',['../_i_server_port_provider_8cs.html',1,'']]], + ['isessioncontroller_2ecs_2918',['ISessionController.cs',['../_i_session_controller_8cs.html',1,'']]], + ['isessioncontrollerfactory_2ecs_2919',['ISessionControllerFactory.cs',['../_i_session_controller_factory_8cs.html',1,'']]], + ['isessionpersistor_2ecs_2920',['ISessionPersistor.cs',['../_i_session_persistor_8cs.html',1,'']]], + ['isymlinkfactory_2ecs_2921',['ISymlinkFactory.cs',['../_i_symlink_factory_8cs.html',1,'']]], + ['isynchronousiomanager_2ecs_2922',['ISynchronousIOManager.cs',['../_i_synchronous_i_o_manager_8cs.html',1,'']]], + ['isystemidentity_2ecs_2923',['ISystemIdentity.cs',['../_i_system_identity_8cs.html',1,'']]], + ['isystemidentityfactory_2ecs_2924',['ISystemIdentityFactory.cs',['../_i_system_identity_factory_8cs.html',1,'']]], + ['itokenfactory_2ecs_2925',['ITokenFactory.cs',['../_i_token_factory_8cs.html',1,'']]], + ['itopicclientfactory_2ecs_2926',['ITopicClientFactory.cs',['../_i_topic_client_factory_8cs.html',1,'']]], + ['iusersclient_2ecs_2927',['IUsersClient.cs',['../_i_users_client_8cs.html',1,'']]], + ['iwatchdog_2ecs_2928',['IWatchdog.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_8cs.html',1,'(Global Namespace)']]], + ['iwatchdogfactory_2ecs_2929',['IWatchdogFactory.cs',['../_tgstation_8_server_8_host_2_components_2_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_8_watchdog_2_i_watchdog_factory_8cs.html',1,'(Global Namespace)']]] ]; diff --git a/search/files_a.html b/search/files_a.html index fe811baab5..1b815df444 100644 --- a/search/files_a.html +++ b/search/files_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_a.js b/search/files_a.js index a08d4ee1d1..4aa6e07422 100644 --- a/search/files_a.js +++ b/search/files_a.js @@ -1,10 +1,10 @@ var searchData= [ - ['job_2ecs_2858',['Job.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_job_8cs.html',1,'(Global Namespace)']]], - ['jobcontroller_2ecs_2859',['JobController.cs',['../_job_controller_8cs.html',1,'']]], - ['jobentrypoint_2ecs_2860',['JobEntrypoint.cs',['../_job_entrypoint_8cs.html',1,'']]], - ['jobexception_2ecs_2861',['JobException.cs',['../_job_exception_8cs.html',1,'']]], - ['jobhandler_2ecs_2862',['JobHandler.cs',['../_job_handler_8cs.html',1,'']]], - ['jobmanager_2ecs_2863',['JobManager.cs',['../_job_manager_8cs.html',1,'']]], - ['jobsclient_2ecs_2864',['JobsClient.cs',['../_jobs_client_8cs.html',1,'']]] + ['job_2ecs_2930',['Job.cs',['../_tgstation_8_server_8_api_2_models_2_internal_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_api_2_models_2_job_8cs.html',1,'(Global Namespace)'],['../_tgstation_8_server_8_host_2_models_2_job_8cs.html',1,'(Global Namespace)']]], + ['jobcontroller_2ecs_2931',['JobController.cs',['../_job_controller_8cs.html',1,'']]], + ['jobentrypoint_2ecs_2932',['JobEntrypoint.cs',['../_job_entrypoint_8cs.html',1,'']]], + ['jobexception_2ecs_2933',['JobException.cs',['../_job_exception_8cs.html',1,'']]], + ['jobhandler_2ecs_2934',['JobHandler.cs',['../_job_handler_8cs.html',1,'']]], + ['jobmanager_2ecs_2935',['JobManager.cs',['../_job_manager_8cs.html',1,'']]], + ['jobsclient_2ecs_2936',['JobsClient.cs',['../_jobs_client_8cs.html',1,'']]] ]; diff --git a/search/files_b.html b/search/files_b.html index d6bdab86ee..842b20f459 100644 --- a/search/files_b.html +++ b/search/files_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_b.js b/search/files_b.js index bcc2403224..a3814f57dd 100644 --- a/search/files_b.js +++ b/search/files_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['kekcommand_2ecs_2865',['KekCommand.cs',['../_kek_command_8cs.html',1,'']]] + ['kekcommand_2ecs_2937',['KekCommand.cs',['../_kek_command_8cs.html',1,'']]] ]; diff --git a/search/files_c.html b/search/files_c.html index 20a22e9431..daaca25be0 100644 --- a/search/files_c.html +++ b/search/files_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_c.js b/search/files_c.js index 80f5c65f22..4768ee98c9 100644 --- a/search/files_c.js +++ b/search/files_c.js @@ -1,8 +1,8 @@ var searchData= [ - ['launchresult_2ecs_2866',['LaunchResult.cs',['../_launch_result_8cs.html',1,'']]], - ['libgit2commands_2ecs_2867',['LibGit2Commands.cs',['../_lib_git2_commands_8cs.html',1,'']]], - ['libgit2repositoryfactory_2ecs_2868',['LibGit2RepositoryFactory.cs',['../_lib_git2_repository_factory_8cs.html',1,'']]], - ['limits_2ecs_2869',['Limits.cs',['../_limits_8cs.html',1,'']]], - ['logfile_2ecs_2870',['LogFile.cs',['../_log_file_8cs.html',1,'']]] + ['launchresult_2ecs_2938',['LaunchResult.cs',['../_launch_result_8cs.html',1,'']]], + ['libgit2commands_2ecs_2939',['LibGit2Commands.cs',['../_lib_git2_commands_8cs.html',1,'']]], + ['libgit2repositoryfactory_2ecs_2940',['LibGit2RepositoryFactory.cs',['../_lib_git2_repository_factory_8cs.html',1,'']]], + ['limits_2ecs_2941',['Limits.cs',['../_limits_8cs.html',1,'']]], + ['logfile_2ecs_2942',['LogFile.cs',['../_log_file_8cs.html',1,'']]] ]; diff --git a/search/files_d.html b/search/files_d.html index 82d215603c..81fd245dbe 100644 --- a/search/files_d.html +++ b/search/files_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_d.js b/search/files_d.js index 667bebd3e7..e169598fae 100644 --- a/search/files_d.js +++ b/search/files_d.js @@ -1,10 +1,10 @@ var searchData= [ - ['message_2ecs_2871',['Message.cs',['../_message_8cs.html',1,'']]], - ['methodnotsupportedexception_2ecs_2872',['MethodNotSupportedException.cs',['../_method_not_supported_exception_8cs.html',1,'']]], - ['monitoraction_2ecs_2873',['MonitorAction.cs',['../_monitor_action_8cs.html',1,'']]], - ['monitoractivationreason_2ecs_2874',['MonitorActivationReason.cs',['../_monitor_activation_reason_8cs.html',1,'']]], - ['mysqldatabasecontext_2ecs_2875',['MySqlDatabaseContext.cs',['../_my_sql_database_context_8cs.html',1,'']]], - ['mysqldatabasecontextmodelsnapshot_2ecs_2876',['MySqlDatabaseContextModelSnapshot.cs',['../_my_sql_database_context_model_snapshot_8cs.html',1,'']]], - ['mysqldesigntimedbcontextfactory_2ecs_2877',['MySqlDesignTimeDbContextFactory.cs',['../_my_sql_design_time_db_context_factory_8cs.html',1,'']]] + ['message_2ecs_2943',['Message.cs',['../_message_8cs.html',1,'']]], + ['methodnotsupportedexception_2ecs_2944',['MethodNotSupportedException.cs',['../_method_not_supported_exception_8cs.html',1,'']]], + ['monitoraction_2ecs_2945',['MonitorAction.cs',['../_monitor_action_8cs.html',1,'']]], + ['monitoractivationreason_2ecs_2946',['MonitorActivationReason.cs',['../_monitor_activation_reason_8cs.html',1,'']]], + ['mysqldatabasecontext_2ecs_2947',['MySqlDatabaseContext.cs',['../_my_sql_database_context_8cs.html',1,'']]], + ['mysqldatabasecontextmodelsnapshot_2ecs_2948',['MySqlDatabaseContextModelSnapshot.cs',['../_my_sql_database_context_model_snapshot_8cs.html',1,'']]], + ['mysqldesigntimedbcontextfactory_2ecs_2949',['MySqlDesignTimeDbContextFactory.cs',['../_my_sql_design_time_db_context_factory_8cs.html',1,'']]] ]; diff --git a/search/files_e.html b/search/files_e.html index 637cd55962..595e0cc92f 100644 --- a/search/files_e.html +++ b/search/files_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_e.js b/search/files_e.js index 562a496446..1b69b072ec 100644 --- a/search/files_e.js +++ b/search/files_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['nativemethods_2ecs_2878',['NativeMethods.cs',['../_native_methods_8cs.html',1,'']]] + ['nativemethods_2ecs_2950',['NativeMethods.cs',['../_native_methods_8cs.html',1,'']]] ]; diff --git a/search/files_f.html b/search/files_f.html index ac88a76d2f..ce8b53268a 100644 --- a/search/files_f.html +++ b/search/files_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/files_f.js b/search/files_f.js index 0b56a98299..88e10e0bec 100644 --- a/search/files_f.js +++ b/search/files_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['openapienumvarnamesextension_2ecs_2879',['OpenApiEnumVarNamesExtension.cs',['../_open_api_enum_var_names_extension_8cs.html',1,'']]] + ['openapienumvarnamesextension_2ecs_2951',['OpenApiEnumVarNamesExtension.cs',['../_open_api_enum_var_names_extension_8cs.html',1,'']]] ]; diff --git a/search/functions_0.html b/search/functions_0.html index 4fcbb9cf87..7671a69060 100644 --- a/search/functions_0.html +++ b/search/functions_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_0.js b/search/functions_0.js index 80bab5b528..065b79bb35 100644 --- a/search/functions_0.js +++ b/search/functions_0.js @@ -1,29 +1,31 @@ var searchData= [ - ['activate_2990',['Activate',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a9e14a1757415a90da51678d31c04a534',1,'Tgstation.Server.Host.Jobs.IJobManager.Activate()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a4b54a1259af63eab6dc7636d9cd05b79',1,'Tgstation.Server.Host.Jobs.JobManager.Activate()']]], - ['activeversion_2991',['ActiveVersion',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a33ebe5cafb9a3e5cfa0b6a0bf9f6070f',1,'Tgstation.Server.Client.Components.ByondClient.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a98f0743e5c383c7d301a4b436d298c72',1,'Tgstation.Server.Client.Components.IByondClient.ActiveVersion()']]], - ['add_2992',['Add',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a1ec8f79896fdd2504db07240249397ba',1,'Tgstation.Server.Host.Database.DatabaseCollection.Add()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#abd9cab598d35f6af8c789a1f01bba081',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Add()']]], - ['adddefaultresponses_2993',['AddDefaultResponses',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a8d6a0a7ccf301a64e12a9e7120ed6a4d',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], - ['addrange_2994',['AddRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#afd205cf9b330ea48bc6e98eab1bad278',1,'Tgstation.Server.Host.Database.DatabaseCollection.AddRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ae3a21d5d69a8d8e906d31dc17be66cf6',1,'Tgstation.Server.Host.Database.IDatabaseCollection.AddRange()']]], - ['addreference_2995',['AddReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a0b2156a1c28968cf0dd77e2ef3718ee2',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['addrequestlogger_2996',['AddRequestLogger',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a139db37d2f5069e2940421a0cd12fd93',1,'Tgstation.Server.Client.ApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a55853418698889c9f90804d1e9067b51',1,'Tgstation.Server.Client.IApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa06d2eb21c87b01b2d195e3125cb7ccf',1,'Tgstation.Server.Client.IServerClient.AddRequestLogger()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a5b082a51331accc1d118b549c422169a',1,'Tgstation.Server.Client.ServerClient.AddRequestLogger()']]], - ['addtestmerge_2997',['AddTestMerge',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a05fcb2c19ab0f43a15264431a20790ec',1,'Tgstation.Server.Host.Components.Repository.IRepository.AddTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ab400805727fc1130c18a878f131edce1',1,'Tgstation.Server.Host.Components.Repository.Repository.AddTestMerge()']]], - ['addwatchdog_3c_20tsystemwatchdogfactory_20_3e_2998',['AddWatchdog< TSystemWatchdogFactory >',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a3c750651b93228ec3e2776977545cec2',1,'Tgstation::Server::Host::Core::Application']]], - ['administrationclient_2999',['AdministrationClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa5d48433766cd2f29ee60007767f5387',1,'Tgstation::Server::Client::AdministrationClient']]], - ['administrationcontroller_3000',['AdministrationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a977452509dbf4fd1cca139a0a968cf1c',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['allrights_3c_20tright_20_3e_3001',['AllRights< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0f8605b0068c15bb5e80fae8f858e0db',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['apiclient_3002',['ApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a89b74d94010decea93799b872e43a9b5',1,'Tgstation::Server::Client::ApiClient']]], - ['apiconflictexception_3003',['ApiConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a4b188d951fcd6bab69b98cdc60b72d8d',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ab4f3940b662b24b906bf15d94a0c64b9',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ac779b4eb27f674d0c804955a8bb50b4b',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a76b2d08f49a952c5693d785c379328e2',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message, Exception innerException)']]], - ['apicontroller_3004',['ApiController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a0f1d630ca60523c4684dce08a41b5aa8',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['apiexception_3005',['ApiException',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#ad9234ddf1e8d85fc0deaf02a22539cb1',1,'Tgstation.Server.Client.ApiException.ApiException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a17155a36f4798421f6ae9c44add39a08',1,'Tgstation.Server.Client.ApiException.ApiException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a58f71c3c7a18641b8144f772068b976d',1,'Tgstation.Server.Client.ApiException.ApiException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a9dfbd90587b56d3db3e497db8b7a5ae1',1,'Tgstation.Server.Client.ApiException.ApiException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a36773be2804412a37326218e0005fa25',1,'Tgstation.Server.Client.ApiException.ApiException(string message, Exception innerException)']]], - ['apiheaders_3006',['ApiHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aee584e59a0c6535f1d3c60d620036253',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string token)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#ac6a606d30d1bd1cf066cd8f5d917df18',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string username, string password)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aa03245a124379bec7f0eb3fc672a4e43',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(RequestHeaders requestHeaders)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4a2a83ba38b9383b52360be0d3d8467e',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string? token, string? username, string? password)']]], - ['application_3007',['Application',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#abc6f8677db1baf9744162670d4a02a6c',1,'Tgstation::Server::Host::Core::Application']]], - ['apply_3008',['Apply',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a984ca98811591400b90fb6b13383e318',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Apply()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a050adcf275d869f1db4760d553fadb6e',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiOperation operation, OperationFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#ab65b4c6e4dbb553247a5d7524bd161a1',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a4773a3d72f5dfce0b7f88a53e6abf4d0',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiSchema schema, SchemaFilterContext context)']]], - ['applyupdate_3009',['ApplyUpdate',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a08e0b784b8a22398a183e759446bf5f3',1,'Tgstation.Server.Host.Core.IServerControl.ApplyUpdate()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a38345c5b5fc217b03e0142dc8513e0cd',1,'Tgstation.Server.Host.Server.ApplyUpdate()']]], - ['assemblyinformationprovider_3010',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a5fd81262bcc6aeecc0608b630f96ced4',1,'Tgstation::Server::Host::System::AssemblyInformationProvider']]], - ['attach_3011',['Attach',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a3222695f8bba56c62ced6340ebf14619',1,'Tgstation.Server.Host.Database.DatabaseCollection.Attach()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a05e77420e74de1e7739eadcd7c9c8070',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Attach()']]], - ['attachexithandler_3012',['AttachExitHandler',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5b7c65480cf6cb9573ea1eca15f49add',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['attachexithandlerbeforelaunch_3013',['AttachExitHandlerBeforeLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5f9469bcfa64fb349af62686e31c8a1e',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['authenticationcontext_3014',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a238c36a23b55ce8e76b471e35600a7e3',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a997a651219197de91ceb799db4a340d2',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext(ISystemIdentity systemIdentity, User user, InstanceUser instanceUser)']]], - ['authenticationcontextfactory_3015',['AuthenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6c113f16defdec6ead7cc8507c4d6c95',1,'Tgstation::Server::Host::Security::AuthenticationContextFactory']]] + ['activate_3063',['Activate',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a9e14a1757415a90da51678d31c04a534',1,'Tgstation.Server.Host.Jobs.IJobManager.Activate()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a4b54a1259af63eab6dc7636d9cd05b79',1,'Tgstation.Server.Host.Jobs.JobManager.Activate()']]], + ['activeversion_3064',['ActiveVersion',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a33ebe5cafb9a3e5cfa0b6a0bf9f6070f',1,'Tgstation.Server.Client.Components.ByondClient.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a98f0743e5c383c7d301a4b436d298c72',1,'Tgstation.Server.Client.Components.IByondClient.ActiveVersion()']]], + ['add_3065',['Add',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a1ec8f79896fdd2504db07240249397ba',1,'Tgstation.Server.Host.Database.DatabaseCollection.Add()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#abd9cab598d35f6af8c789a1f01bba081',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Add()']]], + ['adddefaultresponses_3066',['AddDefaultResponses',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a8d6a0a7ccf301a64e12a9e7120ed6a4d',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], + ['adddreamdaemontofirewall_3067',['AddDreamDaemonToFirewall',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a6e7516f6939712dc72c480a31b87a3d8',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['addrange_3068',['AddRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#afd205cf9b330ea48bc6e98eab1bad278',1,'Tgstation.Server.Host.Database.DatabaseCollection.AddRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ae3a21d5d69a8d8e906d31dc17be66cf6',1,'Tgstation.Server.Host.Database.IDatabaseCollection.AddRange()']]], + ['addreference_3069',['AddReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a0b2156a1c28968cf0dd77e2ef3718ee2',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['addrequestlogger_3070',['AddRequestLogger',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a139db37d2f5069e2940421a0cd12fd93',1,'Tgstation.Server.Client.ApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a55853418698889c9f90804d1e9067b51',1,'Tgstation.Server.Client.IApiClient.AddRequestLogger()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa06d2eb21c87b01b2d195e3125cb7ccf',1,'Tgstation.Server.Client.IServerClient.AddRequestLogger()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a5b082a51331accc1d118b549c422169a',1,'Tgstation.Server.Client.ServerClient.AddRequestLogger()']]], + ['addtestmerge_3071',['AddTestMerge',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a05fcb2c19ab0f43a15264431a20790ec',1,'Tgstation.Server.Host.Components.Repository.IRepository.AddTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ab400805727fc1130c18a878f131edce1',1,'Tgstation.Server.Host.Components.Repository.Repository.AddTestMerge()']]], + ['addwatchdog_3c_20tsystemwatchdogfactory_20_3e_3072',['AddWatchdog< TSystemWatchdogFactory >',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a3c750651b93228ec3e2776977545cec2',1,'Tgstation::Server::Host::Core::Application']]], + ['administrationclient_3073',['AdministrationClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa5d48433766cd2f29ee60007767f5387',1,'Tgstation::Server::Client::AdministrationClient']]], + ['administrationcontroller_3074',['AdministrationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a977452509dbf4fd1cca139a0a968cf1c',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['allrights_3c_20tright_20_3e_3075',['AllRights< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0f8605b0068c15bb5e80fae8f858e0db',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['apiclient_3076',['ApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a89b74d94010decea93799b872e43a9b5',1,'Tgstation::Server::Client::ApiClient']]], + ['apiconflictexception_3077',['ApiConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a4b188d951fcd6bab69b98cdc60b72d8d',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ab4f3940b662b24b906bf15d94a0c64b9',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#ac779b4eb27f674d0c804955a8bb50b4b',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_conflict_exception.html#a76b2d08f49a952c5693d785c379328e2',1,'Tgstation.Server.Client.ApiConflictException.ApiConflictException(string message, Exception innerException)']]], + ['apicontroller_3078',['ApiController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a0f1d630ca60523c4684dce08a41b5aa8',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['apiexception_3079',['ApiException',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#ad9234ddf1e8d85fc0deaf02a22539cb1',1,'Tgstation.Server.Client.ApiException.ApiException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a17155a36f4798421f6ae9c44add39a08',1,'Tgstation.Server.Client.ApiException.ApiException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a58f71c3c7a18641b8144f772068b976d',1,'Tgstation.Server.Client.ApiException.ApiException()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a9dfbd90587b56d3db3e497db8b7a5ae1',1,'Tgstation.Server.Client.ApiException.ApiException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a36773be2804412a37326218e0005fa25',1,'Tgstation.Server.Client.ApiException.ApiException(string message, Exception innerException)']]], + ['apiheaders_3080',['ApiHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aee584e59a0c6535f1d3c60d620036253',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string token)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#ac6a606d30d1bd1cf066cd8f5d917df18',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string username, string password)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#aa03245a124379bec7f0eb3fc672a4e43',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(RequestHeaders requestHeaders)'],['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4a2a83ba38b9383b52360be0d3d8467e',1,'Tgstation.Server.Api.ApiHeaders.ApiHeaders(ProductHeaderValue userAgent, string? token, string? username, string? password)']]], + ['application_3081',['Application',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#abc6f8677db1baf9744162670d4a02a6c',1,'Tgstation::Server::Host::Core::Application']]], + ['apply_3082',['Apply',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a984ca98811591400b90fb6b13383e318',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Apply()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a050adcf275d869f1db4760d553fadb6e',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiOperation operation, OperationFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#ab65b4c6e4dbb553247a5d7524bd161a1',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context)'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a4773a3d72f5dfce0b7f88a53e6abf4d0',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Apply(OpenApiSchema schema, SchemaFilterContext context)']]], + ['applydeployment_3083',['ApplyDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a5aa949ec78f0769f380efb03634c9f86',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.ApplyDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a21fcd146642b9e85afa1e7870b43ffbb',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.ApplyDeployment()']]], + ['applyupdate_3084',['ApplyUpdate',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a08e0b784b8a22398a183e759446bf5f3',1,'Tgstation.Server.Host.Core.IServerControl.ApplyUpdate()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a38345c5b5fc217b03e0142dc8513e0cd',1,'Tgstation.Server.Host.Server.ApplyUpdate()']]], + ['assemblyinformationprovider_3085',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a5fd81262bcc6aeecc0608b630f96ced4',1,'Tgstation::Server::Host::System::AssemblyInformationProvider']]], + ['attach_3086',['Attach',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a3222695f8bba56c62ced6340ebf14619',1,'Tgstation.Server.Host.Database.DatabaseCollection.Attach()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a05e77420e74de1e7739eadcd7c9c8070',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Attach()']]], + ['attachexithandler_3087',['AttachExitHandler',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5b7c65480cf6cb9573ea1eca15f49add',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['attachexithandlerbeforelaunch_3088',['AttachExitHandlerBeforeLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a5f9469bcfa64fb349af62686e31c8a1e',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['authenticationcontext_3089',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a238c36a23b55ce8e76b471e35600a7e3',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a997a651219197de91ceb799db4a340d2',1,'Tgstation.Server.Host.Security.AuthenticationContext.AuthenticationContext(ISystemIdentity systemIdentity, User user, InstanceUser instanceUser)']]], + ['authenticationcontextfactory_3090',['AuthenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6c113f16defdec6ead7cc8507c4d6c95',1,'Tgstation::Server::Host::Security::AuthenticationContextFactory']]] ]; diff --git a/search/functions_1.html b/search/functions_1.html index 9b0e1f0f45..d31316aa4d 100644 --- a/search/functions_1.html +++ b/search/functions_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_1.js b/search/functions_1.js index 990ff872af..3deb224592 100644 --- a/search/functions_1.js +++ b/search/functions_1.js @@ -1,16 +1,17 @@ var searchData= [ - ['basicwatchdog_3016',['BasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ad611dcd9094effff25e1e41431b671de',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], - ['bindtest_3017',['BindTest',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html#a2b6458e7e063e0ea2368fefd2df1c0e1',1,'Tgstation::Server::Host::Extensions::SocketExtensions']]], - ['bridgecontroller_3018',['BridgeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0a1273e6fe2a3c56413909df260b51b7',1,'Tgstation::Server::Host::Controllers::BridgeController']]], - ['bridgeregistration_3019',['BridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a473a69f7f87a96e00daa65b03116b238',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeRegistration']]], - ['buildmodel_3020',['BuildModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html#ab1af0dabbd13507f341ce41597c203f3',1,'Tgstation.Server.Host.Database.Migrations.MySqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html#a9a55e88dc3ec4a0d948c634c093a314f',1,'Tgstation.Server.Host.Database.Migrations.PostgresSqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html#ab2e6dcb99f3746d7345ac6851701e3a2',1,'Tgstation.Server.Host.Database.Migrations.SqliteDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html#a723164104a9f25dd93ee5190a78aff1c',1,'Tgstation.Server.Host.Database.Migrations.SqlServerDatabaseContextModelSnapshot.BuildModel()']]], - ['buildtargetmodel_3021',['BuildTargetModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7bded25dcebba0767a564222ab04ee05',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a777db8e71d3968d11746ac1212509661',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a5a30b78e4742894a5043edbd416ae5c7',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a36fd9c984b7e30d05e6dd3db022f4b4f',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ab4b402a8a6515780be12561bf2eb0903',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a0460c6beedadda1044a12056555778aa',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ae93775ef37c0f7b6e42382a2921f5168',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#adab7a99a17c00cf7fd3c552db42fd98b',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a392a370a88d84f51f77683a4e1ac6541',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a110d320f4574deb84bd438c85881fcb7',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ac05b1f1b82e93dc15bed566bbc976b6a',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ac688032d578556f231894a0d1037b0ff',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a4d3a513fe33896a78d434afe70003ff9',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#ad20249f02a9d28eec93299e126b6fb15',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#ad4813165e4ff98a40b195485f31ade97',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a4cc9a2c803e1df587ad94af23fae1980',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a782a903df07e21a584d37310aaf534f9',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a3d13ad8d0031635725cefc299b5f7497',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7e3cd4c5e9e7e85dacb4acfebf06f4ba',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a73a439e9e30e34c9409caf2db00f5f49',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#adb8abf6a68f01f29d0d19e687be7bc6b',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#a451e508e82bf383da26da0e329ad211d',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#aac7ea57d83d853b3282a083d67f04cd5',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#ae7d0af3a8c268d6222d617cd79dd3121',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#ac3cf415db21e6ed98f32a0f3dfeca299',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a51ef9342cea7662a16848567539b5126',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a3bf5f4f3731d773a73d1ccb4def7e681',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a2406a50f47e5a964bcc74a7053d16fbb',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a18b6634968ddbd323a7159bdfb730a52',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#ae7eebc7b84bc7e1f161c5d8621a3dd9e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aa845ab345c3a19a90b346b5d5bde9d8a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a73266a58d7c7a9ed8adf963a930a512c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a7eb21d0ba901a5407ece872184846eb9',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a56bafe1317a077bbb6d28eed35e5fed6',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a01c5981f2d86f427cc4b2a2fc746a102',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a6b349456228618f6eced647631907299',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#ad05f21edbb1cbca42bb3897218573a7e',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a5e9d01db51d41bb582fb3b6a1784827e',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a84038dce1140d52bb8fab07a75e8f8c2',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a384f0cec4e567e0b2e02cb49556773f0',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a7a94efc1a10771a4dc70b6a620263d5b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a9cbeea1c3b1e2dad5117a54ab46e2cae',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4567044d2f672170549b048d7aeeec28',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#acf969f355d4e8c92beea7c9c4d571d6a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aab0ccfde487b4e418c4a744007b3991f',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a887c62b5f1ae7aa222a5b89a42c3bd5e',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a120cb2765f39d1e50b16ecbbf20f9d5b',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a1e7e9ae3480daa8fce98bb454b389478',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#aabda231cfc4393820bf6744cdbe4df7e',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.BuildTargetModel()']]], - ['byond_3022',['Byond',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a3dde46060da75e3a757784489da4c810',1,'Tgstation::Server::Client::Components::ByondClient']]], - ['byondclient_3023',['ByondClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a330467d91ed28edace4990dce15c6991',1,'Tgstation::Server::Client::Components::ByondClient']]], - ['byondcommand_3024',['ByondCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a04c8863ccdb6d8f93c56eec22e3015d5',1,'Tgstation::Server::Host::Components::Chat::Commands::ByondCommand']]], - ['byondcontroller_3025',['ByondController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a60fa22db0b488a68e33b3064cacce100',1,'Tgstation::Server::Host::Controllers::ByondController']]], - ['byondexecutablelock_3026',['ByondExecutableLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a44eb282f6424c86b45fd978568f85842',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], - ['byondinstallerbase_3027',['ByondInstallerBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aafe5655d1dbaa689a3b58f12a6258b13',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], - ['byondmanager_3028',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a53f179dd7a1f02a716da371710eec7a3',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]] + ['basicwatchdog_3091',['BasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#adaf6b02a397b30570ca77bee3574ae81',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], + ['beforeapplydmb_3092',['BeforeApplyDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1582efdefef65cd7587e76a7bae09a4e',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['bindtest_3093',['BindTest',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_socket_extensions.html#a2b6458e7e063e0ea2368fefd2df1c0e1',1,'Tgstation::Server::Host::Extensions::SocketExtensions']]], + ['bridgecontroller_3094',['BridgeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0a1273e6fe2a3c56413909df260b51b7',1,'Tgstation::Server::Host::Controllers::BridgeController']]], + ['bridgeregistration_3095',['BridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a473a69f7f87a96e00daa65b03116b238',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeRegistration']]], + ['buildmodel_3096',['BuildModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_my_sql_database_context_model_snapshot.html#ab1af0dabbd13507f341ce41597c203f3',1,'Tgstation.Server.Host.Database.Migrations.MySqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_postgres_sql_database_context_model_snapshot.html#a9a55e88dc3ec4a0d948c634c093a314f',1,'Tgstation.Server.Host.Database.Migrations.PostgresSqlDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sqlite_database_context_model_snapshot.html#ab2e6dcb99f3746d7345ac6851701e3a2',1,'Tgstation.Server.Host.Database.Migrations.SqliteDatabaseContextModelSnapshot.BuildModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_sql_server_database_context_model_snapshot.html#a723164104a9f25dd93ee5190a78aff1c',1,'Tgstation.Server.Host.Database.Migrations.SqlServerDatabaseContextModelSnapshot.BuildModel()']]], + ['buildtargetmodel_3097',['BuildTargetModel',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7bded25dcebba0767a564222ab04ee05',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a777db8e71d3968d11746ac1212509661',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a5a30b78e4742894a5043edbd416ae5c7',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a36fd9c984b7e30d05e6dd3db022f4b4f',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ab4b402a8a6515780be12561bf2eb0903',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a0460c6beedadda1044a12056555778aa',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ae93775ef37c0f7b6e42382a2921f5168',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#adab7a99a17c00cf7fd3c552db42fd98b',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a392a370a88d84f51f77683a4e1ac6541',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a110d320f4574deb84bd438c85881fcb7',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ac05b1f1b82e93dc15bed566bbc976b6a',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ac688032d578556f231894a0d1037b0ff',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a4d3a513fe33896a78d434afe70003ff9',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#ad20249f02a9d28eec93299e126b6fb15',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#ad4813165e4ff98a40b195485f31ade97',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a4cc9a2c803e1df587ad94af23fae1980',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a782a903df07e21a584d37310aaf534f9',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a3d13ad8d0031635725cefc299b5f7497',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7e3cd4c5e9e7e85dacb4acfebf06f4ba',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a73a439e9e30e34c9409caf2db00f5f49',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#adb8abf6a68f01f29d0d19e687be7bc6b',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#a451e508e82bf383da26da0e329ad211d',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#aac7ea57d83d853b3282a083d67f04cd5',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#ae7d0af3a8c268d6222d617cd79dd3121',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#ac3cf415db21e6ed98f32a0f3dfeca299',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a51ef9342cea7662a16848567539b5126',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a3bf5f4f3731d773a73d1ccb4def7e681',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a2406a50f47e5a964bcc74a7053d16fbb',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a18b6634968ddbd323a7159bdfb730a52',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#ae7eebc7b84bc7e1f161c5d8621a3dd9e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aa845ab345c3a19a90b346b5d5bde9d8a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a73266a58d7c7a9ed8adf963a930a512c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a7eb21d0ba901a5407ece872184846eb9',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a56bafe1317a077bbb6d28eed35e5fed6',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a01c5981f2d86f427cc4b2a2fc746a102',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a6b349456228618f6eced647631907299',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#ad05f21edbb1cbca42bb3897218573a7e',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a5e9d01db51d41bb582fb3b6a1784827e',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a84038dce1140d52bb8fab07a75e8f8c2',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a384f0cec4e567e0b2e02cb49556773f0',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a7a94efc1a10771a4dc70b6a620263d5b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a9cbeea1c3b1e2dad5117a54ab46e2cae',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4567044d2f672170549b048d7aeeec28',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#acf969f355d4e8c92beea7c9c4d571d6a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aab0ccfde487b4e418c4a744007b3991f',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a887c62b5f1ae7aa222a5b89a42c3bd5e',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a120cb2765f39d1e50b16ecbbf20f9d5b',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a1e7e9ae3480daa8fce98bb454b389478',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#aabda231cfc4393820bf6744cdbe4df7e',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html#a9c885ae4ace9d16276e4f8cf6069c3bc',1,'Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html#ad1f3eca5d5ffe26b022dd26e9cd7fcc4',1,'Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html#af99d7cfa83033c566f67f0ab290b4e8e',1,'Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.BuildTargetModel()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html#aa4efd8e030a3e92a20b31da97bdf4261',1,'Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.BuildTargetModel()']]], + ['byond_3098',['Byond',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a3dde46060da75e3a757784489da4c810',1,'Tgstation::Server::Client::Components::ByondClient']]], + ['byondclient_3099',['ByondClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a330467d91ed28edace4990dce15c6991',1,'Tgstation::Server::Client::Components::ByondClient']]], + ['byondcommand_3100',['ByondCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a04c8863ccdb6d8f93c56eec22e3015d5',1,'Tgstation::Server::Host::Components::Chat::Commands::ByondCommand']]], + ['byondcontroller_3101',['ByondController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a60fa22db0b488a68e33b3064cacce100',1,'Tgstation::Server::Host::Controllers::ByondController']]], + ['byondexecutablelock_3102',['ByondExecutableLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a44eb282f6424c86b45fd978568f85842',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], + ['byondinstallerbase_3103',['ByondInstallerBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aafe5655d1dbaa689a3b58f12a6258b13',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], + ['byondmanager_3104',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a53f179dd7a1f02a716da371710eec7a3',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]] ]; diff --git a/search/functions_10.html b/search/functions_10.html index 7a7a44490a..d7d4f82f3c 100644 --- a/search/functions_10.html +++ b/search/functions_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_10.js b/search/functions_10.js index d3f7613116..91c1e7780e 100644 --- a/search/functions_10.js +++ b/search/functions_10.js @@ -1,62 +1,63 @@ var searchData= [ - ['ratelimit_3383',['RateLimit',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac16c0fe44009a93f09d73f702f9844e9',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['ratelimitexception_3384',['RateLimitException',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a2bbc9a674f25015db577af0b641af918',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a1bd82db7496764293896d95a761a5b1c',1,'Tgstation.Server.Client.RateLimitException.RateLimitException()'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#ab30825486f294c98083fb35043f5da0a',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(string message, Exception innerException)']]], - ['rawcheckout_3385',['RawCheckout',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ace81561f45095dabdd6969b281a2be08',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['read_3386',['Read',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a90fccaf2e24a3793a1c3892365415d63',1,'Tgstation.Server.Client.AdministrationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#adb77f8fd7a46572e3c1d6bd90e3e300c',1,'Tgstation.Server.Client.Components.ConfigurationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afcc1957f652e164e4f2e9e05ca84bc9d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aa2f286f3f548960f2f9f88f17eb31538',1,'Tgstation.Server.Client.Components.DreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a8f860a7b9851f7bcffa232fcf82eb109',1,'Tgstation.Server.Client.Components.IConfigurationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a1e6a43558dcadc261304053b63476323',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#ac0b3a15957db0648ca8425469e1983b0',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aae3394792a75d2690ff8038cb4e8007f',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ad1b39d718a1f3e635cf7ff8e24499d66',1,'Tgstation.Server.Client.Components.InstanceUserClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a5ec2d45a88691381a86f02d6a941f912',1,'Tgstation.Server.Client.Components.IRepositoryClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a37e9b08107bacf7d431b64ef3051fdc3',1,'Tgstation.Server.Client.Components.RepositoryClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a2e63dc96c5b580f348e76f014924c85f',1,'Tgstation.Server.Client.IAdministrationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#adfc947bf76c50385d043a46732cb1f75',1,'Tgstation.Server.Client.IUsersClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a7b9ce7489b2a8b3e7c8453580cfe95ff',1,'Tgstation.Server.Client.UsersClient.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ad62e7c4dde34d7c7d1039bcbf03c5b72',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Read()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a32086334958bd9009ec8eda200b9a200',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a10c3be25fd9ac418bcab6bb9541bbd69',1,'Tgstation.Server.Host.Controllers.AdministrationController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#aa62cf4ea9a81c3772cc64fade69c095d',1,'Tgstation.Server.Host.Controllers.ByondController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a233a666f5638e5bca70e51a2d38a4ba7',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a85e225aa92c30ff7e771c540a9672ba3',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#adb7e1f6c26a2e83339ae501c4ae955a3',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a9a93d9ca244bb4f65df3dde6c00ace7d',1,'Tgstation.Server.Host.Controllers.JobController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a0263b7f7bef9a5b23cdc52c3735af3c5',1,'Tgstation.Server.Host.Controllers.RepositoryController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ad82f699ed9786892700f4c9526eb06ad',1,'Tgstation.Server.Host.Controllers.UserController.Read()']]], - ['read_3c_20tresult_20_3e_3387',['Read< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a1808561c1ec1ddac56ee78648788214c',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a90dffec712d3fea1328dd2b8cb4ce5b7',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae8bd028857ed8443176c7ac25edd18bd',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a95d05b8d2e00d2da463ec7d7e6e4e2ae',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], - ['readallbytes_3388',['ReadAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8b156fb1670e0f2f74bccdf040d2661c',1,'Tgstation.Server.Host.IO.DefaultIOManager.ReadAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6c0856abd25ea8e2096702aae37f2b0c',1,'Tgstation.Server.Host.IO.IIOManager.ReadAllBytes()']]], - ['readfile_3389',['ReadFile',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a19577dc573076fd58ac1d55d682d5606',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.ReadFile()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ae7fb6512f77a65454cf2309a1c4eccdf',1,'Tgstation.Server.Host.IO.SynchronousIOManager.ReadFile()']]], - ['readimpl_3390',['ReadImpl',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a57e14f977d6bc474d831cf3b0f3f6332',1,'Tgstation::Server::Host::Controllers::DreamDaemonController']]], - ['readjson_3391',['ReadJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a9622c7856d8e0d90cb6b9a3b3f7ac14d',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.ReadJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#ae5dd36f7c8be5d7f6d19866d6ba1a49a',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.ReadJson()']]], - ['readlineasync_3392',['ReadLineAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad64d553f84d31d737bd00595fe6a122f',1,'Tgstation.Server.Host.IO.Console.ReadLineAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a5bdc0f5d449d520355dccb0f01cc0694',1,'Tgstation.Server.Host.IO.IConsole.ReadLineAsync()']]], - ['reattach_3393',['Reattach',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#ac583487a447259a5698bda86205cf593',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.Reattach()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a43661606c528da37b2aea840fe5766ef',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach()']]], - ['reattachfailure_3394',['ReattachFailure',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad136304a1e1074559ccb4310b5b1044d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['reattachinformation_3395',['ReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab648c1f38b73209f86ce8b0c7274822e',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], - ['reattachinformationbase_3396',['ReattachInformationBase',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a662295d2f9dd1746560777809a91eec0',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#adbb46135d2724b48f149ded000511f49',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase(ReattachInformationBase copy)']]], - ['reconnectionloop_3397',['ReconnectionLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac6502da810ca16f52bed5505c7807746',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['refreshtoken_3398',['RefreshToken',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#abd283e3f14a6be71a3d4a8dedd12123e',1,'Tgstation::Server::Client::ApiClient']]], - ['registercommandhandler_3399',['RegisterCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae1b556bac2bf1a08d0eef0fd76297dc4',1,'Tgstation.Server.Host.Components.Chat.ChatManager.RegisterCommandHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1e1ce49aa3e843a1e037060a544e125e',1,'Tgstation.Server.Host.Components.Chat.IChatManager.RegisterCommandHandler()']]], - ['registerforrestart_3400',['RegisterForRestart',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a35728d66030addfd5551351b8c6db942',1,'Tgstation.Server.Host.Core.IServerControl.RegisterForRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a0664caef3896a16c9f668177c68002d3',1,'Tgstation.Server.Host.Server.RegisterForRestart()']]], - ['registerhandler_3401',['RegisterHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a785c474a5d39316af850239b0c7e107b',1,'Tgstation.Server.Host.Components.InstanceManager.RegisterHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html#aa36d6072e7a96ece183b77544c9bfe4b',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeRegistrar.RegisterHandler()']]], - ['registeroperation_3402',['RegisterOperation',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a21be789f798adf9985f2432d3499b4cd',1,'Tgstation.Server.Host.Jobs.IJobManager.RegisterOperation()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a333fa6cef18c623a6521f96ea69d5667',1,'Tgstation.Server.Host.Jobs.JobManager.RegisterOperation()']]], - ['registerprocess_3403',['RegisterProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html#a3493714e50b54482ee2739479cf02d56',1,'Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html#ab90af2305373f1490bfee879371aa594',1,'Tgstation.Server.Host.System.PosixNetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a1c2af94dcdeec0b60e5df15c5fa14d8d',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.RegisterProcess()']]], - ['release_3404',['Release',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6f04efbacbb022cb5c95a899b3a00cb0',1,'Tgstation.Server.Host.Components.Session.ISessionController.Release()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a5265a5dbb5e09483ba2d84bb0dd39d12',1,'Tgstation.Server.Host.Components.Session.SessionController.Release()']]], - ['remapprovider_3405',['RemapProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa8388f0bf72714eba49fd88540c8a397',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['remove_3406',['Remove',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a8244ef4b74e973c7acc1a39a2bd7a4ca',1,'Tgstation.Server.Host.Database.DatabaseCollection.Remove()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ad270ec18822a7a90d8fca9a75c23851a',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Remove()']]], - ['removemergedpullrequests_3407',['RemoveMergedPullRequests',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aed1debb892c0e54911e3ef6b9296d62e',1,'Tgstation::Server::Host::Components::Instance']]], - ['removeprovider_3408',['RemoveProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa7ea797fb470d81d829992c1eaff6a34',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['removerange_3409',['RemoveRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a66a0ea60621331e3b5d5e4840e25e811',1,'Tgstation.Server.Host.Database.DatabaseCollection.RemoveRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a854a2e25231abb1e54bcff6fc6a8900c',1,'Tgstation.Server.Host.Database.IDatabaseCollection.RemoveRange()']]], - ['replacedmbprovider_3410',['ReplaceDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad9ac3e335150ec25eeb656ac7e310403',1,'Tgstation.Server.Host.Components.Session.ISessionController.ReplaceDmbProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab100112c49c5d17623a5f8d0d0be0b7c',1,'Tgstation.Server.Host.Components.Session.SessionController.ReplaceDmbProvider()']]], - ['repository_3411',['Repository',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a1c314570d2e4f3c0a6dfb7e8aa6c68a0',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa68b503106bfa0f9558c08cc8d79ec1d',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository ?? throw new ArgumentNullException(nameof(repository)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2118970749039c0d44a9eb4698d97e1',1,'Tgstation.Server.Host.Components.Repository.Repository.Repository()']]], - ['repositoryclient_3412',['RepositoryClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa7ff208124be2377aa50b40f63aad06c',1,'Tgstation::Server::Client::Components::RepositoryClient']]], - ['repositorycontroller_3413',['RepositoryController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ac88456f7aa7bbb54f37c6a468c102bed',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], - ['repositorymanager_3414',['RepositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8154779167cfb865f6d047f903acb37d',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], - ['requesttimeoutexception_3415',['RequestTimeoutException',['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#adc20278896b65c6ae42aa61012a6576f',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a85873681c9fb67bfd55b8751ba791e5b',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a80635931d781eaab27edcae371a77e7c',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message, Exception innerException)']]], - ['requiresposixsystemidentity_3416',['RequiresPosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a22bf49e8a9635f804b5cdcb6632ddc34',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['resetadminpassword_3417',['ResetAdminPassword',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#af844d41153f8a43c071bb6ec67445a1b',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['resetrebootstate_3418',['ResetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a5baede79a2c896fb6537ca28354837cb',1,'Tgstation.Server.Host.Components.Session.ISessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3bf4bd799f6cdbe8c992f37798b44cf9',1,'Tgstation.Server.Host.Components.Session.SessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a3b874bb53e907a576a4b88122083c6c3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.ResetRebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a2859725d1805d6655be14566f9edcf00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aaf696fd100732f5b9eb8900e81895bf0',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ResetRebootState()']]], - ['resettoorigin_3419',['ResetToOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab03d183168abf3cc19f57bc47e25c5d6',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1b591fe0be8dbc5636d96d8e9992ddbe',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToOrigin()']]], - ['resettosha_3420',['ResetToSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa955f0aaefce1850e40eda99419fdd79',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a760cc043dfc2bc394b52d9d6717d7843',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToSha()']]], - ['resolvepath_3421',['ResolvePath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a34087ebccffcf9f51173e01fe4a50be4',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a287eaf4e73a4d64e50f1dab24c3b0d3e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath(string path)'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a18a442b5dff16f5e7a730ec354e81d78',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aef508a4c82215e95c29aa23255fdb01c',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath(string path)'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a50b2302533637090939afbb9dee042ee',1,'Tgstation.Server.Host.IO.ResolvingIOManager.ResolvePath()']]], - ['resolvingiomanager_3422',['ResolvingIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a4e9c20b01d6d66f04eb106365f9d7a1a',1,'Tgstation::Server::Host::IO::ResolvingIOManager']]], - ['restart_3423',['Restart',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a695a17f5dc134c529d21146c1273c58b',1,'Tgstation.Server.Client.AdministrationClient.Restart()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab7598c890869f71b94e6051acbc6790d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#adb6252aed5c2e88bc48923b1936921fd',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a9730058c232e1f8d1917137f3445d8a3',1,'Tgstation.Server.Client.IAdministrationClient.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0e80e3751764c584151e51f4395efbf5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39d65944835fca058d4a4be46eaf81bd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#adfae63e2f33e2293f43abff9cd65c246',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a13dcbb02bca9b289a8bccd07a848b4b9',1,'Tgstation.Server.Host.Core.IServerControl.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2114beab119e090ece99d97ef0ca9c6',1,'Tgstation.Server.Host.Server.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a35a6218bf7398f527c9179cddff6c8e3',1,'Tgstation.Server.Host.Server.Restart(Version newVersion, Exception exception, bool requireWatchdog)']]], - ['restartregistration_3424',['RestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a4391d21de43d098a833168620dc24dc4',1,'Tgstation::Server::Host::Core::RestartRegistration']]], - ['resume_3425',['Resume',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca14b07bc405fa3d1c61a9007762876d',1,'Tgstation.Server.Host.Components.Session.SessionController.Resume()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a676e4a90946a0ccfbd06bfd231215a87',1,'Tgstation.Server.Host.System.IProcessBase.Resume()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac71f30aab7fc20ad92dc9b1ce8971b55',1,'Tgstation.Server.Host.System.Process.Resume()']]], - ['resumeprocess_3426',['ResumeProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad7b3670db0f89899889687e13a33f7c6',1,'Tgstation.Server.Host.System.IProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a49c4196d80413533d81efa2915bfaeb1',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a0a3d91e35d40c3f6c6bdf126aec6d112',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.ResumeProcess()']]], - ['resumethread_3427',['ResumeThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a318c159e4464a5d63dd81260b45d95bc',1,'Tgstation::Server::Host::NativeMethods']]], - ['revisioncommand_3428',['RevisionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a69b5a156fd8b4e7c8f9396d967d435e2',1,'Tgstation::Server::Host::Components::Chat::Commands::RevisionCommand']]], - ['righttotype_3429',['RightToType',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#ab694cd1b9b98a6be7d79f236a71b386c',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['rolename_3430',['RoleName',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#acbf514eba48e29a2dc177eb5ae34edd7',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['rolenames_3c_20tright_20_3e_3431',['RoleNames< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a08d444c5eb8868e931b37f11f9071f92',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['run_3432',['Run',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#a2b5c3521d783dd9eee7a3e4f2e03fc9f',1,'Tgstation.Server.Host.IServer.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a594aca268623a743fafd4acfed784e3f',1,'Tgstation.Server.Host.Server.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a5915daef37817261e058fd1d9251bd0a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Run()']]], - ['runasync_3433',['RunAsync',['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html#abe13ec45a7d7ba7db422ea661156b697',1,'Tgstation.Server.Host.Watchdog.IWatchdog.RunAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a3f2e5da2e83854873a9d8f986aff8f17',1,'Tgstation.Server.Host.Watchdog.Watchdog.RunAsync()']]], - ['runcompilejob_3434',['RunCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a90c81ec6a44a188164e5ae50e6430a7d',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['rundreammaker_3435',['RunDreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2c7d7d0048942b67b6c275cd4a643296',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['runimpersonated_3436',['RunImpersonated',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a9b525a56c704424ce14e78edcb7d003e',1,'Tgstation.Server.Host.Security.ISystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#ad8b0bb1cd74b0bc433afeb4dcc322594',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aaa070f717bb19b6d85f0253d7820bc75',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.RunImpersonated()']]], - ['runjob_3437',['RunJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ab886226b72e336cfe28a37233ed807dc',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['runrequest_3c_20tresult_20_3e_3438',['RunRequest< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a53176ca924a3696c940cef412df72f04',1,'Tgstation::Server::Client::ApiClient']]], - ['runtimeinformation_3439',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a48edb7d65b3125dc47d2222b140bc188',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['runwatchdog_3440',['RunWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a5ce97a95847cecf3650ae60f0f62d836',1,'Tgstation::Server::Host::Service::ServerService']]], - ['runwizard_3441',['RunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#af95450fea6b5b6d723d91198b7b41d8e',1,'Tgstation::Server::Host::Setup::SetupWizard']]] + ['ratelimit_3466',['RateLimit',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac16c0fe44009a93f09d73f702f9844e9',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['ratelimitexception_3467',['RateLimitException',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a2bbc9a674f25015db577af0b641af918',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a1bd82db7496764293896d95a761a5b1c',1,'Tgstation.Server.Client.RateLimitException.RateLimitException()'],['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#ab30825486f294c98083fb35043f5da0a',1,'Tgstation.Server.Client.RateLimitException.RateLimitException(string message, Exception innerException)']]], + ['rawcheckout_3468',['RawCheckout',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ace81561f45095dabdd6969b281a2be08',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['read_3469',['Read',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a90fccaf2e24a3793a1c3892365415d63',1,'Tgstation.Server.Client.AdministrationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#adb77f8fd7a46572e3c1d6bd90e3e300c',1,'Tgstation.Server.Client.Components.ConfigurationClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afcc1957f652e164e4f2e9e05ca84bc9d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aa2f286f3f548960f2f9f88f17eb31538',1,'Tgstation.Server.Client.Components.DreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a8f860a7b9851f7bcffa232fcf82eb109',1,'Tgstation.Server.Client.Components.IConfigurationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a1e6a43558dcadc261304053b63476323',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#ac0b3a15957db0648ca8425469e1983b0',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aae3394792a75d2690ff8038cb4e8007f',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ad1b39d718a1f3e635cf7ff8e24499d66',1,'Tgstation.Server.Client.Components.InstanceUserClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a5ec2d45a88691381a86f02d6a941f912',1,'Tgstation.Server.Client.Components.IRepositoryClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a37e9b08107bacf7d431b64ef3051fdc3',1,'Tgstation.Server.Client.Components.RepositoryClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a2e63dc96c5b580f348e76f014924c85f',1,'Tgstation.Server.Client.IAdministrationClient.Read()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#adfc947bf76c50385d043a46732cb1f75',1,'Tgstation.Server.Client.IUsersClient.Read()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a7b9ce7489b2a8b3e7c8453580cfe95ff',1,'Tgstation.Server.Client.UsersClient.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ad62e7c4dde34d7c7d1039bcbf03c5b72',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Read()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a32086334958bd9009ec8eda200b9a200',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a10c3be25fd9ac418bcab6bb9541bbd69',1,'Tgstation.Server.Host.Controllers.AdministrationController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#aa62cf4ea9a81c3772cc64fade69c095d',1,'Tgstation.Server.Host.Controllers.ByondController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a233a666f5638e5bca70e51a2d38a4ba7',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a85e225aa92c30ff7e771c540a9672ba3',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#adb7e1f6c26a2e83339ae501c4ae955a3',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a9a93d9ca244bb4f65df3dde6c00ace7d',1,'Tgstation.Server.Host.Controllers.JobController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a0263b7f7bef9a5b23cdc52c3735af3c5',1,'Tgstation.Server.Host.Controllers.RepositoryController.Read()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ad82f699ed9786892700f4c9526eb06ad',1,'Tgstation.Server.Host.Controllers.UserController.Read()']]], + ['read_3c_20tresult_20_3e_3470',['Read< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a1808561c1ec1ddac56ee78648788214c',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a90dffec712d3fea1328dd2b8cb4ce5b7',1,'Tgstation.Server.Client.ApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae8bd028857ed8443176c7ac25edd18bd',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a95d05b8d2e00d2da463ec7d7e6e4e2ae',1,'Tgstation.Server.Client.IApiClient.Read< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], + ['readallbytes_3471',['ReadAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8b156fb1670e0f2f74bccdf040d2661c',1,'Tgstation.Server.Host.IO.DefaultIOManager.ReadAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6c0856abd25ea8e2096702aae37f2b0c',1,'Tgstation.Server.Host.IO.IIOManager.ReadAllBytes()']]], + ['readfile_3472',['ReadFile',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a19577dc573076fd58ac1d55d682d5606',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.ReadFile()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ae7fb6512f77a65454cf2309a1c4eccdf',1,'Tgstation.Server.Host.IO.SynchronousIOManager.ReadFile()']]], + ['readimpl_3473',['ReadImpl',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a57e14f977d6bc474d831cf3b0f3f6332',1,'Tgstation::Server::Host::Controllers::DreamDaemonController']]], + ['readjson_3474',['ReadJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a9622c7856d8e0d90cb6b9a3b3f7ac14d',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.ReadJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#ae5dd36f7c8be5d7f6d19866d6ba1a49a',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.ReadJson()']]], + ['readlineasync_3475',['ReadLineAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad64d553f84d31d737bd00595fe6a122f',1,'Tgstation.Server.Host.IO.Console.ReadLineAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a5bdc0f5d449d520355dccb0f01cc0694',1,'Tgstation.Server.Host.IO.IConsole.ReadLineAsync()']]], + ['reattach_3476',['Reattach',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#ac583487a447259a5698bda86205cf593',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.Reattach()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a43661606c528da37b2aea840fe5766ef',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.Reattach()']]], + ['reattachfailure_3477',['ReattachFailure',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad136304a1e1074559ccb4310b5b1044d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['reattachinformation_3478',['ReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab648c1f38b73209f86ce8b0c7274822e',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], + ['reattachinformationbase_3479',['ReattachInformationBase',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a662295d2f9dd1746560777809a91eec0',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#adbb46135d2724b48f149ded000511f49',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ReattachInformationBase(ReattachInformationBase copy)']]], + ['reconnectionloop_3480',['ReconnectionLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac6502da810ca16f52bed5505c7807746',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['refreshtoken_3481',['RefreshToken',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#abd283e3f14a6be71a3d4a8dedd12123e',1,'Tgstation::Server::Client::ApiClient']]], + ['registercommandhandler_3482',['RegisterCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae1b556bac2bf1a08d0eef0fd76297dc4',1,'Tgstation.Server.Host.Components.Chat.ChatManager.RegisterCommandHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1e1ce49aa3e843a1e037060a544e125e',1,'Tgstation.Server.Host.Components.Chat.IChatManager.RegisterCommandHandler()']]], + ['registerforrestart_3483',['RegisterForRestart',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a35728d66030addfd5551351b8c6db942',1,'Tgstation.Server.Host.Core.IServerControl.RegisterForRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a0664caef3896a16c9f668177c68002d3',1,'Tgstation.Server.Host.Server.RegisterForRestart()']]], + ['registerhandler_3484',['RegisterHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a785c474a5d39316af850239b0c7e107b',1,'Tgstation.Server.Host.Components.InstanceManager.RegisterHandler()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_registrar.html#aa36d6072e7a96ece183b77544c9bfe4b',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeRegistrar.RegisterHandler()']]], + ['registeroperation_3485',['RegisterOperation',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a21be789f798adf9985f2432d3499b4cd',1,'Tgstation.Server.Host.Jobs.IJobManager.RegisterOperation()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a333fa6cef18c623a6521f96ea69d5667',1,'Tgstation.Server.Host.Jobs.JobManager.RegisterOperation()']]], + ['registerprocess_3486',['RegisterProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_network_prompt_reaper.html#a3493714e50b54482ee2739479cf02d56',1,'Tgstation.Server.Host.System.INetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_network_prompt_reaper.html#ab90af2305373f1490bfee879371aa594',1,'Tgstation.Server.Host.System.PosixNetworkPromptReaper.RegisterProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a1c2af94dcdeec0b60e5df15c5fa14d8d',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.RegisterProcess()']]], + ['release_3487',['Release',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6f04efbacbb022cb5c95a899b3a00cb0',1,'Tgstation.Server.Host.Components.Session.ISessionController.Release()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a5265a5dbb5e09483ba2d84bb0dd39d12',1,'Tgstation.Server.Host.Components.Session.SessionController.Release()']]], + ['remapprovider_3488',['RemapProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa8388f0bf72714eba49fd88540c8a397',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['remove_3489',['Remove',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a8244ef4b74e973c7acc1a39a2bd7a4ca',1,'Tgstation.Server.Host.Database.DatabaseCollection.Remove()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#ad270ec18822a7a90d8fca9a75c23851a',1,'Tgstation.Server.Host.Database.IDatabaseCollection.Remove()']]], + ['removemergedpullrequests_3490',['RemoveMergedPullRequests',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aed1debb892c0e54911e3ef6b9296d62e',1,'Tgstation::Server::Host::Components::Instance']]], + ['removeprovider_3491',['RemoveProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa7ea797fb470d81d829992c1eaff6a34',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['removerange_3492',['RemoveRange',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a66a0ea60621331e3b5d5e4840e25e811',1,'Tgstation.Server.Host.Database.DatabaseCollection.RemoveRange()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a854a2e25231abb1e54bcff6fc6a8900c',1,'Tgstation.Server.Host.Database.IDatabaseCollection.RemoveRange()']]], + ['replacedmbprovider_3493',['ReplaceDmbProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad9ac3e335150ec25eeb656ac7e310403',1,'Tgstation.Server.Host.Components.Session.ISessionController.ReplaceDmbProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab100112c49c5d17623a5f8d0d0be0b7c',1,'Tgstation.Server.Host.Components.Session.SessionController.ReplaceDmbProvider()']]], + ['repository_3494',['Repository',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a1c314570d2e4f3c0a6dfb7e8aa6c68a0',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa68b503106bfa0f9558c08cc8d79ec1d',1,'Tgstation.Server.Client.Components.RepositoryClient.Repository(Routes.Repository, repository ?? throw new ArgumentNullException(nameof(repository)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2118970749039c0d44a9eb4698d97e1',1,'Tgstation.Server.Host.Components.Repository.Repository.Repository()']]], + ['repositoryautoupdatejob_3495',['RepositoryAutoUpdateJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4baa7e745d0000ea968b6fb38570d6a6',1,'Tgstation::Server::Host::Components::Instance']]], + ['repositoryclient_3496',['RepositoryClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#aa7ff208124be2377aa50b40f63aad06c',1,'Tgstation::Server::Client::Components::RepositoryClient']]], + ['repositorycontroller_3497',['RepositoryController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ac88456f7aa7bbb54f37c6a468c102bed',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], + ['repositorymanager_3498',['RepositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8154779167cfb865f6d047f903acb37d',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], + ['requesttimeoutexception_3499',['RequestTimeoutException',['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#adc20278896b65c6ae42aa61012a6576f',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a85873681c9fb67bfd55b8751ba791e5b',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_request_timeout_exception.html#a80635931d781eaab27edcae371a77e7c',1,'Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException(string message, Exception innerException)']]], + ['requiresposixsystemidentity_3500',['RequiresPosixSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a22bf49e8a9635f804b5cdcb6632ddc34',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['resetadminpassword_3501',['ResetAdminPassword',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#af844d41153f8a43c071bb6ec67445a1b',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['resetrebootstate_3502',['ResetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a5baede79a2c896fb6537ca28354837cb',1,'Tgstation.Server.Host.Components.Session.ISessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3bf4bd799f6cdbe8c992f37798b44cf9',1,'Tgstation.Server.Host.Components.Session.SessionController.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a3b874bb53e907a576a4b88122083c6c3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.ResetRebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a2859725d1805d6655be14566f9edcf00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ResetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aaf696fd100732f5b9eb8900e81895bf0',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ResetRebootState()']]], + ['resettoorigin_3503',['ResetToOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab03d183168abf3cc19f57bc47e25c5d6',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1b591fe0be8dbc5636d96d8e9992ddbe',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToOrigin()']]], + ['resettosha_3504',['ResetToSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa955f0aaefce1850e40eda99419fdd79',1,'Tgstation.Server.Host.Components.Repository.IRepository.ResetToSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a760cc043dfc2bc394b52d9d6717d7843',1,'Tgstation.Server.Host.Components.Repository.Repository.ResetToSha()']]], + ['resolvepath_3505',['ResolvePath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a34087ebccffcf9f51173e01fe4a50be4',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a287eaf4e73a4d64e50f1dab24c3b0d3e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ResolvePath(string path)'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a18a442b5dff16f5e7a730ec354e81d78',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aef508a4c82215e95c29aa23255fdb01c',1,'Tgstation.Server.Host.IO.IIOManager.ResolvePath(string path)'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a50b2302533637090939afbb9dee042ee',1,'Tgstation.Server.Host.IO.ResolvingIOManager.ResolvePath()']]], + ['resolvingiomanager_3506',['ResolvingIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a4e9c20b01d6d66f04eb106365f9d7a1a',1,'Tgstation::Server::Host::IO::ResolvingIOManager']]], + ['restart_3507',['Restart',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a695a17f5dc134c529d21146c1273c58b',1,'Tgstation.Server.Client.AdministrationClient.Restart()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab7598c890869f71b94e6051acbc6790d',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#adb6252aed5c2e88bc48923b1936921fd',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Restart()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a9730058c232e1f8d1917137f3445d8a3',1,'Tgstation.Server.Client.IAdministrationClient.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0e80e3751764c584151e51f4395efbf5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39d65944835fca058d4a4be46eaf81bd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#adfae63e2f33e2293f43abff9cd65c246',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Restart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a13dcbb02bca9b289a8bccd07a848b4b9',1,'Tgstation.Server.Host.Core.IServerControl.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2114beab119e090ece99d97ef0ca9c6',1,'Tgstation.Server.Host.Server.Restart()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a35a6218bf7398f527c9179cddff6c8e3',1,'Tgstation.Server.Host.Server.Restart(Version newVersion, Exception exception, bool requireWatchdog)']]], + ['restartregistration_3508',['RestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a4391d21de43d098a833168620dc24dc4',1,'Tgstation::Server::Host::Core::RestartRegistration']]], + ['resume_3509',['Resume',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca14b07bc405fa3d1c61a9007762876d',1,'Tgstation.Server.Host.Components.Session.SessionController.Resume()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a676e4a90946a0ccfbd06bfd231215a87',1,'Tgstation.Server.Host.System.IProcessBase.Resume()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac71f30aab7fc20ad92dc9b1ce8971b55',1,'Tgstation.Server.Host.System.Process.Resume()']]], + ['resumeprocess_3510',['ResumeProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad7b3670db0f89899889687e13a33f7c6',1,'Tgstation.Server.Host.System.IProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a49c4196d80413533d81efa2915bfaeb1',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ResumeProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a0a3d91e35d40c3f6c6bdf126aec6d112',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.ResumeProcess()']]], + ['resumethread_3511',['ResumeThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a318c159e4464a5d63dd81260b45d95bc',1,'Tgstation::Server::Host::NativeMethods']]], + ['revisioncommand_3512',['RevisionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a69b5a156fd8b4e7c8f9396d967d435e2',1,'Tgstation::Server::Host::Components::Chat::Commands::RevisionCommand']]], + ['righttotype_3513',['RightToType',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#ab694cd1b9b98a6be7d79f236a71b386c',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['rolename_3514',['RoleName',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#acbf514eba48e29a2dc177eb5ae34edd7',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['rolenames_3c_20tright_20_3e_3515',['RoleNames< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a08d444c5eb8868e931b37f11f9071f92',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['run_3516',['Run',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#a2b5c3521d783dd9eee7a3e4f2e03fc9f',1,'Tgstation.Server.Host.IServer.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a594aca268623a743fafd4acfed784e3f',1,'Tgstation.Server.Host.Server.Run()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a5915daef37817261e058fd1d9251bd0a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Run()']]], + ['runasync_3517',['RunAsync',['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog.html#abe13ec45a7d7ba7db422ea661156b697',1,'Tgstation.Server.Host.Watchdog.IWatchdog.RunAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a3f2e5da2e83854873a9d8f986aff8f17',1,'Tgstation.Server.Host.Watchdog.Watchdog.RunAsync()']]], + ['runcompilejob_3518',['RunCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a90c81ec6a44a188164e5ae50e6430a7d',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['rundreammaker_3519',['RunDreamMaker',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2c7d7d0048942b67b6c275cd4a643296',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['runimpersonated_3520',['RunImpersonated',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a9b525a56c704424ce14e78edcb7d003e',1,'Tgstation.Server.Host.Security.ISystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#ad8b0bb1cd74b0bc433afeb4dcc322594',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.RunImpersonated()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aaa070f717bb19b6d85f0253d7820bc75',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.RunImpersonated()']]], + ['runjob_3521',['RunJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ab886226b72e336cfe28a37233ed807dc',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['runrequest_3c_20tresult_20_3e_3522',['RunRequest< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a53176ca924a3696c940cef412df72f04',1,'Tgstation::Server::Client::ApiClient']]], + ['runtimeinformation_3523',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a62f468bd96fb1967080510a0c0aafe1a',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['runwatchdog_3524',['RunWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a5ce97a95847cecf3650ae60f0f62d836',1,'Tgstation::Server::Host::Service::ServerService']]], + ['runwizard_3525',['RunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#af95450fea6b5b6d723d91198b7b41d8e',1,'Tgstation::Server::Host::Setup::SetupWizard']]] ]; diff --git a/search/functions_11.html b/search/functions_11.html index e77ce3b2f5..034b914ff1 100644 --- a/search/functions_11.html +++ b/search/functions_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_11.js b/search/functions_11.js index 7223c5610b..0ab618cc76 100644 --- a/search/functions_11.js +++ b/search/functions_11.js @@ -1,67 +1,70 @@ var searchData= [ - ['sanitizedatabase_3442',['SanitizeDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1ed443f053ba4e1098f0e4099d23b774',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['sanitizegetpath_3443',['SanitizeGetPath',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a427423a8a36ba74df914acb74ffb0483',1,'Tgstation::Server::Api::Routes']]], - ['saslauthenticate_3444',['SaslAuthenticate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aeb5896c185ba2ea1b59197dab920febb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['save_3445',['Save',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#ad37308dbcca09a8621c7b1f7c443d6c3',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a4fb87f9615a098b3b6a6e2ae3dfb5558',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac2e88d53bf1b6ac87d175d83ed39da7c',1,'Tgstation.Server.Host.Database.DatabaseContext.Save()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a74e123c6393ad813f997c882a22b228e',1,'Tgstation.Server.Host.Database.IDatabaseContext.Save()']]], - ['saveconfiguration_3446',['SaveConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a411edd6a908eddd48051a38077d021cd',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['schemadowngradeforserverversion_3447',['SchemaDowngradeForServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a00d005a887ba10b9ed9f0e79af829c20',1,'Tgstation.Server.Host.Database.DatabaseContext.SchemaDowngradeForServerVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac34cc442f544f86aec48f1fe7570b8d2',1,'Tgstation.Server.Host.Database.IDatabaseContext.SchemaDowngradeForServerVersion()']]], - ['securityword_3448',['SecurityWord',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a25959f5d45d10e44c570751a957a3f43',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['seedadminuser_3449',['SeedAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a58329cfe5297b2569da770f7c05e1fbf',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['seeddatabase_3450',['SeedDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a09fc7208df756283dd6b475cfe013151',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['seedsystemuser_3451',['SeedSystemUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ad65df3157dcd8d5485b4564fa7f92798',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['semaphoreslimcontext_3452',['SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a600d8d0a279d2fe17d1f48c1a1bd17d4',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], - ['semver_3453',['Semver',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html#a1b4171b48717e9fcd5b00dd9613f7a65',1,'Tgstation::Server::Api::VersionExtensions']]], - ['sendasync_3454',['SendAsync',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a3564ac1eca649d3318f91116a3123279',1,'Tgstation.Server.Client.HttpClient.SendAsync()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#a7c73a8c52b38c69ed369036d186192de',1,'Tgstation.Server.Client.IHttpClient.SendAsync()']]], - ['sendcommand_3455',['SendCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad40f0e4194627c357bae9ed3ef135e66',1,'Tgstation.Server.Host.Components.Session.ISessionController.SendCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab45f8ef0b9ff253433d2122f5e3ba455',1,'Tgstation.Server.Host.Components.Session.SessionController.SendCommand()']]], - ['senddeploymentmessage_3456',['SendDeploymentMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac952a5db509eb59655c1f83b1f0530a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendDeploymentMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#aa21f71a08aaebd2b27e1d5d716ac1124',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendDeploymentMessage()']]], - ['sendmessage_3457',['SendMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae07221cd9d0d39ce4a0bb1453a221027',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a75c070c958da3a46d0deee9f243f3624',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac986f3eaca89e94c1a16d3a6392c44dd',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ad0b951bd26aed974f63c3e11971eb009',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a8bfdc6f40539bde1282c4c8c002ce7e0',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a89fe4a51bf3659db42995a39cc607285',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a23bd1ebb88ecd7ec9ae0ae7b867a05e7',1,'Tgstation.Server.Host.NativeMethods.SendMessage()']]], - ['sendupdatemessage_3458',['SendUpdateMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a99ee167ed1b5c1175b176da1ecbc4be7',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendUpdateMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a0b36493529119db3cdfa915c0fa5a11c',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#afd537fd81c6189f08d4fa654107643a9',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a6ef4f05ff34e0e1ec0eb682d959ce6dd',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendUpdateMessage()']]], - ['sendwatchdogmessage_3459',['SendWatchdogMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a3b2636d279f80828111c2bf94288983e',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendWatchdogMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a084ec3f50264304b5aa437e58a09f313',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendWatchdogMessage()']]], - ['server_3460',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#af345987c7e61e037445810ae96d8da52',1,'Tgstation::Server::Host::Server']]], - ['serverclient_3461',['ServerClient',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#aeb7a24a33819012790a38d5fceb2c8bb',1,'Tgstation::Server::Client::ServerClient']]], - ['serverclientfactory_3462',['ServerClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#ae72794d4ee4b75d442896ef3764d435b',1,'Tgstation::Server::Client::ServerClientFactory']]], - ['servererrorexception_3463',['ServerErrorException',['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a3c0883bc41902cff9f2becfdb64c0d97',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#ab9f532a000df4b5bdcf6a28a975f7018',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a2426a2796880232113cfd743b1010fdb',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(string message, Exception innerException)']]], - ['serverportproivder_3464',['ServerPortProivder',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#afbd7d7c3ac25fb1c29cfaeea3851672b',1,'Tgstation::Server::Host::Core::ServerPortProivder']]], - ['serverservice_3465',['ServerService',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a3f4d7655e24f18f6929e48f48c79b0a2',1,'Tgstation::Server::Host::Service::ServerService']]], - ['serversidemodifications_3466',['ServerSideModifications',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a80a1a88d3e1f59d285b91563e86e2ef8',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['serviceunavailableexception_3467',['ServiceUnavailableException',['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a5a4fcd887f74c9658dd181a3cf7204cb',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a6a729a7fa03b7a6bfebf6df9935b89a5',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a49a6d51cf0a76f247c3ea7bcc42f638f',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message, Exception innerException)']]], - ['sessioncontroller_3468',['SessionController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca4798c3df5c740c0690c6b13db4f0f0',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['sessioncontrollerfactory_3469',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a4fd5439afd33fbdc96ab8170681e6c78',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['sessionpersistor_3470',['SessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#abe5082b7b4dc502b717e946a90349bb6',1,'Tgstation::Server::Host::Components::Session::SessionPersistor']]], - ['setactiveversion_3471',['SetActiveVersion',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a798c9e8b4b224f3a78791f765d69b304',1,'Tgstation.Server.Client.Components.ByondClient.SetActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a76a30723a9370f391d4ca12fb31e5c71',1,'Tgstation.Server.Client.Components.IByondClient.SetActiveVersion()']]], - ['setautoupdateinterval_3472',['SetAutoUpdateInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a6023b54cb82a2300ec2b4088562ff5e4',1,'Tgstation.Server.Host.Components.IInstanceCore.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a9c7e2863cce30a01be66c0ce1dd07d9c',1,'Tgstation.Server.Host.Components.Instance.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a334385255e88789d71085f432aa71566',1,'Tgstation.Server.Host.Components.InstanceWrapper.SetAutoUpdateInterval()']]], - ['setchannelsink_3473',['SetChannelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a297f6228dbcf551f76768322b4214863',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.SetChannelSink()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#affd4bf60a56058a56804994741cceff5',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.SetChannelSink()']]], - ['setconnectionstringbuilder_3474',['SetConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#ad289a7498cd4082d22ccd610107883ea',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['sethandler_3475',['SetHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a593d81a97b0b00221c098a3c04049800',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], - ['sethighpriority_3476',['SetHighPriority',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a682e5041a73a975a85fa38ea6511d2a6',1,'Tgstation.Server.Host.Components.Session.SessionController.SetHighPriority()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a4c32c6fcf031cd1c996b505e6c58e510',1,'Tgstation.Server.Host.System.IProcessBase.SetHighPriority()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a60950c5460a2ac65c8040adbe67f711b',1,'Tgstation.Server.Host.System.Process.SetHighPriority()']]], - ['setid_3477',['SetID',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a0266a146dbc57a7c6168533d7a7b10eb',1,'Tgstation::Server::Api::Routes']]], - ['setport_3478',['SetPort',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ae21b1684e07b6cc8facf0812bb255c32',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3183d3610d700b1da9983b67cb1b558a',1,'Tgstation.Server.Host.Components.Session.SessionController.SetPort()']]], - ['setrebootstate_3479',['SetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6977882b5d7c0c7a1e280197384c7836',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3d2e9a55c08feb9a37492f537efa75bd',1,'Tgstation.Server.Host.Components.Session.SessionController.SetRebootState()']]], - ['setreconnectinterval_3480',['SetReconnectInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a8f13abd1df7147c47d6d1a8e4577b9e6',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SetReconnectInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac4642b423570a979ed7d0ae2b3b73ea3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SetReconnectInterval()']]], - ['setrequestheaders_3481',['SetRequestHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a5f9f37923fe9811ceb4556af0ebfc8aa',1,'Tgstation::Server::Api::ApiHeaders']]], - ['setruntimeinformation_3482',['SetRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a56616a95d65e523becb086f2042d8a93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], - ['setupapplication_3483',['SetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a84d9dcc04d19491908f337980bfc36dc',1,'Tgstation::Server::Host::Setup::SetupApplication']]], - ['setuplogging_3484',['SetupLogging',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a1562e1868bb163db228ef906085ed14f',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], - ['setupwizard_3485',['SetupWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a6351c594125cd749e35ac937dc482ea1',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['setuserpassword_3486',['SetUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a0936b97992a82380047925e656b4bdae',1,'Tgstation.Server.Host.Security.CryptographySuite.SetUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#aeab60aa0a0ee2cb5e2ad5dbde1983430',1,'Tgstation.Server.Host.Security.ICryptographySuite.SetUserPassword()']]], - ['setwatchdog_3487',['SetWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a38465548f0041dfcd4cd148c8452f437',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.SetWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a541045879b6d679230dfeb27f9246f9c',1,'Tgstation.Server.Host.Components.Events.EventConsumer.SetWatchdog()']]], - ['shaisparent_3488',['ShaIsParent',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a364b05c74603f9ee3f18cc012014465e',1,'Tgstation.Server.Host.Components.Repository.IRepository.ShaIsParent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a47a1cdcdc3ea945b53a727fed3691c27',1,'Tgstation.Server.Host.Components.Repository.Repository.ShaIsParent()']]], - ['shutdown_3489',['Shutdown',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a42a57cfe50960559e8d8c2c003cb27f5',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Shutdown()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a6dd7bcf744d8804790ece473931f378b',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Shutdown()']]], - ['sqlitedatabasecontext_3490',['SqliteDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a08142c9e591f05e0e6424b25f1198688',1,'Tgstation::Server::Host::Database::SqliteDatabaseContext']]], - ['sqlserverdatabasecontext_3491',['SqlServerDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#a0d17265d1aab0819b7891c9cc29e5ab9',1,'Tgstation::Server::Host::Database::SqlServerDatabaseContext']]], - ['standardmodelchecks_3492',['StandardModelChecks',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1079cc001cfaf55fa44aae68d9b106f5',1,'Tgstation::Server::Host::Controllers::ChatController']]], - ['start_3493',['Start',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a9c62e25db987e4847e6a4a8e04a72b2c',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Start()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a97ceb0b52366f1b4ce685ef8399c44e5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Start()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aba7a308e3f45a2403f388ca1e7d42e52',1,'Tgstation.Server.Host.Jobs.JobHandler.Start()']]], - ['startasync_3494',['StartAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a7b6d8a1eef58f0e3265a67ebe9036f13',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae189d33da50a0791f4caf35fa3eb2567',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ae898120e96809cdb6bbd582072bcff71',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a11cc04923d2557eefd57ad2ded9eb7f2',1,'Tgstation.Server.Host.Components.Instance.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aabf10dd79c9488de365bb8de0129b74b',1,'Tgstation.Server.Host.Components.InstanceFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa2bcc92fca46ad404800304ce4bdd781',1,'Tgstation.Server.Host.Components.InstanceManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af05de18337edc2207b60b080de230802',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ae30d4b582b04eb7c3ef3c5d848429bbd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa3ab90c932ef1f25299d046a103bfe7c',1,'Tgstation.Server.Host.Jobs.JobManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae78c3f7bde77d9470e413adba88d2ae4',1,'Tgstation.Server.Host.Setup.SetupWizard.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a4da1abbdff058acc086c60bac413df19',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StartAsync()']]], - ['staticignorepath_3495',['StaticIgnorePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a4a5436d55e83759de84d17871039d752',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['statuscode_3496',['StatusCode',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a978fe89eeaea424d7e034d2c7ab7b76e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#adc93040c7a61d510292e387329d3f00e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode, object errorMessage)']]], - ['stopasync_3497',['StopAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a691493488b449c0589784dc2f91e039b',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#af798c33e00b6fbbf046c8459cfd06eab',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a7500062f2bc5c4ee14b84b548bf55161',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afc1fd9e8dc3bd57b78dbcbc4e7f449b4',1,'Tgstation.Server.Host.Components.Instance.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad758c3c739d563f51b44b8429acadc9',1,'Tgstation.Server.Host.Components.InstanceFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa1a2f2c9fe345546fd5f8ae27fe466b',1,'Tgstation.Server.Host.Components.InstanceManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a33a5cd96e75dae867c113915bd6ebb27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec4f16b34fe08499a4aaff0235ecdc76',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a95381df073387e7bfc526757bb06ae57',1,'Tgstation.Server.Host.Jobs.JobManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a28d5e473c14aa957f87ff37a62284a66',1,'Tgstation.Server.Host.Setup.SetupWizard.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ad6fae1f6711012cda24238db8833bdef',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StopAsync()']]], - ['stopmonitor_3498',['StopMonitor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a565b987a394c375c75b3fe14ca3f75e1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['stopreconnectiontimer_3499',['StopReconnectionTimer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a19cca90f9904a5d3535cd27c3e3fe3fe',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['suspend_3500',['Suspend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0dad64e931bd586e45de09d28027cf50',1,'Tgstation.Server.Host.Components.Session.SessionController.Suspend()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a50cf121e04a59decc0262d2eaef0845f',1,'Tgstation.Server.Host.System.IProcessBase.Suspend()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a639ecf20dfbbd73e72f4b181d0b89243',1,'Tgstation.Server.Host.System.Process.Suspend()']]], - ['suspendprocess_3501',['SuspendProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ac6b97694917044ddce0c3ba9c8478246',1,'Tgstation.Server.Host.System.IProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1c0faded339a483cc9e2f513ec7d5cee',1,'Tgstation.Server.Host.System.PosixProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a08d35b105b285a19f77df6c863c5cfeb',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.SuspendProcess()']]], - ['suspendthread_3502',['SuspendThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a21ce8310ad8c05110a45b1f2b6892697',1,'Tgstation::Server::Host::NativeMethods']]], - ['swappabledmbprovider_3503',['SwappableDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ada4c525ee4e74e9ae5017d4f5816d888',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['sychronize_3504',['Sychronize',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a5f8ea07e50eb3d5d272b956a6e2543b5',1,'Tgstation.Server.Host.Components.Repository.IRepository.Sychronize()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afd7c7599794e9541d6134a30d5d7e683',1,'Tgstation.Server.Host.Components.Repository.Repository.Sychronize()']]], - ['symlinkstaticfilesto_3505',['SymlinkStaticFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af7ad93cfb1c7c7718a3b1ffe3e12d42d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a255b4504ec55e9a4c006463db8aaa61e',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.SymlinkStaticFilesTo()']]] + ['sanitizedatabase_3526',['SanitizeDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1ed443f053ba4e1098f0e4099d23b774',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['sanitizegetpath_3527',['SanitizeGetPath',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a427423a8a36ba74df914acb74ffb0483',1,'Tgstation::Server::Api::Routes']]], + ['saslauthenticate_3528',['SaslAuthenticate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aeb5896c185ba2ea1b59197dab920febb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['save_3529',['Save',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#ad37308dbcca09a8621c7b1f7c443d6c3',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a4fb87f9615a098b3b6a6e2ae3dfb5558',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Save()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac2e88d53bf1b6ac87d175d83ed39da7c',1,'Tgstation.Server.Host.Database.DatabaseContext.Save()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a74e123c6393ad813f997c882a22b228e',1,'Tgstation.Server.Host.Database.IDatabaseContext.Save()']]], + ['saveconfiguration_3530',['SaveConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a411edd6a908eddd48051a38077d021cd',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['schemadowngradeforserverversion_3531',['SchemaDowngradeForServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a00d005a887ba10b9ed9f0e79af829c20',1,'Tgstation.Server.Host.Database.DatabaseContext.SchemaDowngradeForServerVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac34cc442f544f86aec48f1fe7570b8d2',1,'Tgstation.Server.Host.Database.IDatabaseContext.SchemaDowngradeForServerVersion()']]], + ['securityword_3532',['SecurityWord',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a25959f5d45d10e44c570751a957a3f43',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['seedadminuser_3533',['SeedAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a58329cfe5297b2569da770f7c05e1fbf',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['seeddatabase_3534',['SeedDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a09fc7208df756283dd6b475cfe013151',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['seedsystemuser_3535',['SeedSystemUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ad65df3157dcd8d5485b4564fa7f92798',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['semaphoreslimcontext_3536',['SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a600d8d0a279d2fe17d1f48c1a1bd17d4',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], + ['semver_3537',['Semver',['../class_tgstation_1_1_server_1_1_api_1_1_version_extensions.html#a1b4171b48717e9fcd5b00dd9613f7a65',1,'Tgstation::Server::Api::VersionExtensions']]], + ['sendasync_3538',['SendAsync',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a3564ac1eca649d3318f91116a3123279',1,'Tgstation.Server.Client.HttpClient.SendAsync()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#a7c73a8c52b38c69ed369036d186192de',1,'Tgstation.Server.Client.IHttpClient.SendAsync()']]], + ['sendcommand_3539',['SendCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ad40f0e4194627c357bae9ed3ef135e66',1,'Tgstation.Server.Host.Components.Session.ISessionController.SendCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab45f8ef0b9ff253433d2122f5e3ba455',1,'Tgstation.Server.Host.Components.Session.SessionController.SendCommand()']]], + ['senddeploymentmessage_3540',['SendDeploymentMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac952a5db509eb59655c1f83b1f0530a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendDeploymentMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#aa21f71a08aaebd2b27e1d5d716ac1124',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendDeploymentMessage()']]], + ['sendmessage_3541',['SendMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a11c7e69a731e145f3b1adb30e3838c15',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a75c070c958da3a46d0deee9f243f3624',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac986f3eaca89e94c1a16d3a6392c44dd',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ad0b951bd26aed974f63c3e11971eb009',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a8bfdc6f40539bde1282c4c8c002ce7e0',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a89fe4a51bf3659db42995a39cc607285',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a23bd1ebb88ecd7ec9ae0ae7b867a05e7',1,'Tgstation.Server.Host.NativeMethods.SendMessage()']]], + ['sendupdatemessage_3542',['SendUpdateMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a99ee167ed1b5c1175b176da1ecbc4be7',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.SendUpdateMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a0b36493529119db3cdfa915c0fa5a11c',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#afd537fd81c6189f08d4fa654107643a9',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.SendUpdateMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a6ef4f05ff34e0e1ec0eb682d959ce6dd',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SendUpdateMessage()']]], + ['sendwatchdogmessage_3543',['SendWatchdogMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ad7e8f53171e62b278e16c0afbf8df8e4',1,'Tgstation.Server.Host.Components.Chat.ChatManager.SendWatchdogMessage()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#afd05b7393661f33ea421cc169b621cea',1,'Tgstation.Server.Host.Components.Chat.IChatManager.SendWatchdogMessage()']]], + ['server_3544',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#af345987c7e61e037445810ae96d8da52',1,'Tgstation::Server::Host::Server']]], + ['serverclient_3545',['ServerClient',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#aeb7a24a33819012790a38d5fceb2c8bb',1,'Tgstation::Server::Client::ServerClient']]], + ['serverclientfactory_3546',['ServerClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#ae72794d4ee4b75d442896ef3764d435b',1,'Tgstation::Server::Client::ServerClientFactory']]], + ['servererrorexception_3547',['ServerErrorException',['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a3c0883bc41902cff9f2becfdb64c0d97',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#ab9f532a000df4b5bdcf6a28a975f7018',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_server_error_exception.html#a2426a2796880232113cfd743b1010fdb',1,'Tgstation.Server.Client.ServerErrorException.ServerErrorException(string message, Exception innerException)']]], + ['serverportproivder_3548',['ServerPortProivder',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#afbd7d7c3ac25fb1c29cfaeea3851672b',1,'Tgstation::Server::Host::Core::ServerPortProivder']]], + ['serverservice_3549',['ServerService',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a3f4d7655e24f18f6929e48f48c79b0a2',1,'Tgstation::Server::Host::Service::ServerService']]], + ['serversidemodifications_3550',['ServerSideModifications',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a80a1a88d3e1f59d285b91563e86e2ef8',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['serviceunavailableexception_3551',['ServiceUnavailableException',['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a5a4fcd887f74c9658dd181a3cf7204cb',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a6a729a7fa03b7a6bfebf6df9935b89a5',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_service_unavailable_exception.html#a49a6d51cf0a76f247c3ea7bcc42f638f',1,'Tgstation.Server.Client.ServiceUnavailableException.ServiceUnavailableException(string message, Exception innerException)']]], + ['sessioncontroller_3552',['SessionController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aca4798c3df5c740c0690c6b13db4f0f0',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['sessioncontrollerfactory_3553',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a4fd5439afd33fbdc96ab8170681e6c78',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['sessionpersistor_3554',['SessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#abe5082b7b4dc502b717e946a90349bb6',1,'Tgstation::Server::Host::Components::Session::SessionPersistor']]], + ['setactiveversion_3555',['SetActiveVersion',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a798c9e8b4b224f3a78791f765d69b304',1,'Tgstation.Server.Client.Components.ByondClient.SetActiveVersion()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a76a30723a9370f391d4ca12fb31e5c71',1,'Tgstation.Server.Client.Components.IByondClient.SetActiveVersion()']]], + ['setautoupdateinterval_3556',['SetAutoUpdateInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a6023b54cb82a2300ec2b4088562ff5e4',1,'Tgstation.Server.Host.Components.IInstanceCore.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a9c7e2863cce30a01be66c0ce1dd07d9c',1,'Tgstation.Server.Host.Components.Instance.SetAutoUpdateInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a334385255e88789d71085f432aa71566',1,'Tgstation.Server.Host.Components.InstanceWrapper.SetAutoUpdateInterval()']]], + ['setchannelsink_3557',['SetChannelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a297f6228dbcf551f76768322b4214863',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.SetChannelSink()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#affd4bf60a56058a56804994741cceff5',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.SetChannelSink()']]], + ['setconnectionstringbuilder_3558',['SetConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#ad289a7498cd4082d22ccd610107883ea',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['sethandler_3559',['SetHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a593d81a97b0b00221c098a3c04049800',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], + ['sethighpriority_3560',['SetHighPriority',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a682e5041a73a975a85fa38ea6511d2a6',1,'Tgstation.Server.Host.Components.Session.SessionController.SetHighPriority()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a4c32c6fcf031cd1c996b505e6c58e510',1,'Tgstation.Server.Host.System.IProcessBase.SetHighPriority()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a60950c5460a2ac65c8040adbe67f711b',1,'Tgstation.Server.Host.System.Process.SetHighPriority()']]], + ['setid_3561',['SetID',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a0266a146dbc57a7c6168533d7a7b10eb',1,'Tgstation::Server::Api::Routes']]], + ['setnoprompttrusted_3562',['SetNoPromptTrusted',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a1c73acdc0ec26917b2a19ba6f1b266f4',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['setport_3563',['SetPort',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ae21b1684e07b6cc8facf0812bb255c32',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3183d3610d700b1da9983b67cb1b558a',1,'Tgstation.Server.Host.Components.Session.SessionController.SetPort()']]], + ['setrebootstate_3564',['SetRebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a6977882b5d7c0c7a1e280197384c7836',1,'Tgstation.Server.Host.Components.Session.ISessionController.SetRebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a3d2e9a55c08feb9a37492f537efa75bd',1,'Tgstation.Server.Host.Components.Session.SessionController.SetRebootState()']]], + ['setreconnectinterval_3565',['SetReconnectInterval',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a8f13abd1df7147c47d6d1a8e4577b9e6',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.SetReconnectInterval()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac4642b423570a979ed7d0ae2b3b73ea3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.SetReconnectInterval()']]], + ['setrequestheaders_3566',['SetRequestHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a5f9f37923fe9811ceb4556af0ebfc8aa',1,'Tgstation::Server::Api::ApiHeaders']]], + ['setruntimeinformation_3567',['SetRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a56616a95d65e523becb086f2042d8a93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], + ['setupapplication_3568',['SetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a84d9dcc04d19491908f337980bfc36dc',1,'Tgstation::Server::Host::Setup::SetupApplication']]], + ['setuplogging_3569',['SetupLogging',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a1562e1868bb163db228ef906085ed14f',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], + ['setupwizard_3570',['SetupWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a6351c594125cd749e35ac937dc482ea1',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['setuserpassword_3571',['SetUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a0936b97992a82380047925e656b4bdae',1,'Tgstation.Server.Host.Security.CryptographySuite.SetUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#aeab60aa0a0ee2cb5e2ad5dbde1983430',1,'Tgstation.Server.Host.Security.ICryptographySuite.SetUserPassword()']]], + ['setwatchdog_3572',['SetWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a38465548f0041dfcd4cd148c8452f437',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.SetWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a541045879b6d679230dfeb27f9246f9c',1,'Tgstation.Server.Host.Components.Events.EventConsumer.SetWatchdog()']]], + ['shaisparent_3573',['ShaIsParent',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a364b05c74603f9ee3f18cc012014465e',1,'Tgstation.Server.Host.Components.Repository.IRepository.ShaIsParent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a47a1cdcdc3ea945b53a727fed3691c27',1,'Tgstation.Server.Host.Components.Repository.Repository.ShaIsParent()']]], + ['shutdown_3574',['Shutdown',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a42a57cfe50960559e8d8c2c003cb27f5',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Shutdown()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a6dd7bcf744d8804790ece473931f378b',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Shutdown()']]], + ['sqlitedatabasecontext_3575',['SqliteDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a08142c9e591f05e0e6424b25f1198688',1,'Tgstation::Server::Host::Database::SqliteDatabaseContext']]], + ['sqlserverdatabasecontext_3576',['SqlServerDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#a0d17265d1aab0819b7891c9cc29e5ab9',1,'Tgstation::Server::Host::Database::SqlServerDatabaseContext']]], + ['stagedeployment_3577',['StageDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a395e474e23abbee52d387417a3d642b6',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StageDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a76685fabd65c52827bbbf22ce2b148da',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StageDeployment()']]], + ['standardmodelchecks_3578',['StandardModelChecks',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1079cc001cfaf55fa44aae68d9b106f5',1,'Tgstation::Server::Host::Controllers::ChatController']]], + ['start_3579',['Start',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a9c62e25db987e4847e6a4a8e04a72b2c',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Start()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a97ceb0b52366f1b4ce685ef8399c44e5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Start()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aba7a308e3f45a2403f388ca1e7d42e52',1,'Tgstation.Server.Host.Jobs.JobHandler.Start()']]], + ['startasync_3580',['StartAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a7b6d8a1eef58f0e3265a67ebe9036f13',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae189d33da50a0791f4caf35fa3eb2567',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ae898120e96809cdb6bbd582072bcff71',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a11cc04923d2557eefd57ad2ded9eb7f2',1,'Tgstation.Server.Host.Components.Instance.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aabf10dd79c9488de365bb8de0129b74b',1,'Tgstation.Server.Host.Components.InstanceFactory.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa2bcc92fca46ad404800304ce4bdd781',1,'Tgstation.Server.Host.Components.InstanceManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af05de18337edc2207b60b080de230802',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ae30d4b582b04eb7c3ef3c5d848429bbd',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa3ab90c932ef1f25299d046a103bfe7c',1,'Tgstation.Server.Host.Jobs.JobManager.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae78c3f7bde77d9470e413adba88d2ae4',1,'Tgstation.Server.Host.Setup.SetupWizard.StartAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a4da1abbdff058acc086c60bac413df19',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StartAsync()']]], + ['startdeployment_3581',['StartDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a63f609709d84ef07f7987a13c846c310',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.StartDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a880a7247e471d8014843338817e64948',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.StartDeployment()']]], + ['staticignorepath_3582',['StaticIgnorePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a4a5436d55e83759de84d17871039d752',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['statuscode_3583',['StatusCode',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a978fe89eeaea424d7e034d2c7ab7b76e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#adc93040c7a61d510292e387329d3f00e',1,'Tgstation.Server.Host.Controllers.ApiController.StatusCode(HttpStatusCode statusCode, object errorMessage)']]], + ['stopasync_3584',['StopAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a691493488b449c0589784dc2f91e039b',1,'Tgstation.Server.Host.Components.Byond.ByondManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#af798c33e00b6fbbf046c8459cfd06eab',1,'Tgstation.Server.Host.Components.Chat.ChatManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a7500062f2bc5c4ee14b84b548bf55161',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afc1fd9e8dc3bd57b78dbcbc4e7f449b4',1,'Tgstation.Server.Host.Components.Instance.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad758c3c739d563f51b44b8429acadc9',1,'Tgstation.Server.Host.Components.InstanceFactory.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa1a2f2c9fe345546fd5f8ae27fe466b',1,'Tgstation.Server.Host.Components.InstanceManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a33a5cd96e75dae867c113915bd6ebb27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec4f16b34fe08499a4aaff0235ecdc76',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a95381df073387e7bfc526757bb06ae57',1,'Tgstation.Server.Host.Jobs.JobManager.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a28d5e473c14aa957f87ff37a62284a66',1,'Tgstation.Server.Host.Setup.SetupWizard.StopAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ad6fae1f6711012cda24238db8833bdef',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.StopAsync()']]], + ['stopmonitor_3585',['StopMonitor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a565b987a394c375c75b3fe14ca3f75e1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['stopreconnectiontimer_3586',['StopReconnectionTimer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a19cca90f9904a5d3535cd27c3e3fe3fe',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['suspend_3587',['Suspend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0dad64e931bd586e45de09d28027cf50',1,'Tgstation.Server.Host.Components.Session.SessionController.Suspend()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a50cf121e04a59decc0262d2eaef0845f',1,'Tgstation.Server.Host.System.IProcessBase.Suspend()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a639ecf20dfbbd73e72f4b181d0b89243',1,'Tgstation.Server.Host.System.Process.Suspend()']]], + ['suspendprocess_3588',['SuspendProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ac6b97694917044ddce0c3ba9c8478246',1,'Tgstation.Server.Host.System.IProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1c0faded339a483cc9e2f513ec7d5cee',1,'Tgstation.Server.Host.System.PosixProcessFeatures.SuspendProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a08d35b105b285a19f77df6c863c5cfeb',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.SuspendProcess()']]], + ['suspendthread_3589',['SuspendThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a21ce8310ad8c05110a45b1f2b6892697',1,'Tgstation::Server::Host::NativeMethods']]], + ['swappabledmbprovider_3590',['SwappableDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ada4c525ee4e74e9ae5017d4f5816d888',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['sychronize_3591',['Sychronize',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a5f8ea07e50eb3d5d272b956a6e2543b5',1,'Tgstation.Server.Host.Components.Repository.IRepository.Sychronize()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afd7c7599794e9541d6134a30d5d7e683',1,'Tgstation.Server.Host.Components.Repository.Repository.Sychronize()']]], + ['symlinkstaticfilesto_3592',['SymlinkStaticFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af7ad93cfb1c7c7718a3b1ffe3e12d42d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.SymlinkStaticFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a255b4504ec55e9a4c006463db8aaa61e',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.SymlinkStaticFilesTo()']]] ]; diff --git a/search/functions_12.html b/search/functions_12.html index f6419149a2..1baf84d420 100644 --- a/search/functions_12.html +++ b/search/functions_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_12.js b/search/functions_12.js index d8c03fe2e0..6a9642150b 100644 --- a/search/functions_12.js +++ b/search/functions_12.js @@ -1,19 +1,19 @@ var searchData= [ - ['temporarydmbprovider_3506',['TemporaryDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a8cbcf4f057352b274e8c2adf461bf220',1,'Tgstation::Server::Host::Components::Deployment::TemporaryDmbProvider']]], - ['terminate_3507',['Terminate',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a7fded5c4b8aeb291ad5b1797a25eee14',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a49a9acdffdc9e7cd176f803b23e97ff4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Terminate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a840da56ea51a4bbbc6b21667cc6355a2',1,'Tgstation.Server.Host.System.IProcess.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4788d938ba886eaf6e19ac5464460',1,'Tgstation.Server.Host.System.Process.Terminate()']]], - ['terminatenolock_3508',['TerminateNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6845304123ed975aec4de3dc79bf8551',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['testdatabaseconnection_3509',['TestDatabaseConnection',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ab962664cd664ba5ad329e8af1d6b49a7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['testmergebase_3510',['TestMergeBase',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#aed82b2a4e5e83239f18657ff4a91b65f',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a22e08f62b7a5647d905d8b0ce7f703bd',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase(TestMergeBase copy)']]], - ['testmergeinformation_3511',['TestMergeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a64ffd55fcded7a03edbb7cbf43eccd9e',1,'Tgstation::Server::Host::Components::Interop::Bridge::TestMergeInformation']]], - ['tgsauthorizeattribute_3512',['TgsAuthorizeAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a71fd52c8f3c07624632ca72fa669aff9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a56841444b636e471e28acb3fd7165372',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(AdministrationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a6103a7a1e759498a879c440554ed156e',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceManagerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a9bab142d724f39746e9b5cb3f11053eb',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(RepositoryRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ab9d25ba7784171d98030af65820e31b9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ByondRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a74a9510478d9a004288929247b99f59a',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamMakerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac602c75dd93d93f998119ede5a8a337b',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamDaemonRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac4808ff26e27647d62338b4c55369bab',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ChatBotRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#af81be6ff62cf941583825b5c7e8402c2',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ConfigurationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a075e1a5a46146957800a8461f26aaab0',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceUserRights requiredRights)']]], - ['timerloop_3513',['TimerLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afb736b47a7400fb861186b8dad1c4c4c',1,'Tgstation::Server::Host::Components::Instance']]], - ['toapi_3514',['ToApi',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ac6049a16c80f49d1503935589a5e0042',1,'Tgstation.Server.Host.Models.ChatBot.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a01525688d871d70d1ab28cdda6083011',1,'Tgstation.Server.Host.Models.ChatChannel.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a64a9fc0f8da344e311b5b754eec10611',1,'Tgstation.Server.Host.Models.CompileJob.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab477e13756ea540790df3e245e17173b',1,'Tgstation.Server.Host.Models.DreamMakerSettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a169bffb644b7ff7c3686c29373f662c1',1,'Tgstation.Server.Host.Models.Instance.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#aad0b6b9eaf0b0a9462987564aa254b68',1,'Tgstation.Server.Host.Models.InstanceUser.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aaea7f482968921045b73cbdaca4dd652',1,'Tgstation.Server.Host.Models.Job.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#acff6370af1842c659c6f8ecb85dd0ea3',1,'Tgstation.Server.Host.Models.RepositorySettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a8e6f5b4375c0594f10c413c4119515b1',1,'Tgstation.Server.Host.Models.RevisionInformation.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac2943458d2fc3077a6684408fb26ab09',1,'Tgstation.Server.Host.Models.TestMerge.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8effbd8cd0ce7ba4c72f40efc08a9b50',1,'Tgstation.Server.Host.Models.User.ToApi(bool recursive, bool showDetails)'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a1d6fee3f42a73a1505d6d0d12d68b3d9',1,'Tgstation.Server.Host.Models.User.ToApi(bool showDetails)']]], - ['tofilestamp_3515',['ToFileStamp',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html#a1c52f86735de10e4573d0dc5905be489',1,'Tgstation::Server::Host::Extensions::DateTimeOffsetExtensions']]], - ['tokenfactory_3516',['TokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a6ed83527beb343b96506ad417a91ca94',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['topicclientfactory_3517',['TopicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a21833439f6cbb353c49a7e9d79682213',1,'Tgstation::Server::Host::Components::Session::TopicClientFactory']]], - ['topicparameters_3518',['TopicParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae118357d22348fdcff032c1efced3c7d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(TopicCommandType commandType)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a72da9f55f222514ad7aa1eb82116982b',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatCommand chatCommand)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa6d3ce3910a4e966608f1bb96e76e7f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(EventNotification eventNotification)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aae80f88486056044b0bd7562dab53083',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ushort newPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a2a353bdd802d0b4e4f11980aeb0ec168',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(RebootState newRebootState)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac140d441b2ec1db127e91555f0a93255',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(string newInstanceName)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aee6668a97907129159729b4716f8b71d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatUpdate channelsUpdate)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#af3473b0e8d20a291a255361587bce56f',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(Version newServerVersion, ushort serverPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac97b495dfe29514ee8152a9e63ce8558',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters()']]], - ['tostring_3519',['ToString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a659884baa91d2aa0072ccd9da844cc1e',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#aeeb97f3f4f9cc635eaa55b2e9c81ad84',1,'Tgstation.Server.Api.Models.Internal.ChatConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#ac2a182244a480865e560b06da8c4a152',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#ae3db14365b6d8d193923b9037d8f4bdb',1,'Tgstation.Server.Host.Components.Session.LaunchResult.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a16ccfcf72481ac33f4a2a2a22cb7b135',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ToString()']]], - ['trustdmbpath_3520',['TrustDmbPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aaefbc3a18632926c53945415b70b33fc',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.TrustDmbPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a1c0099bbd7870ed77fb8a579621efdd8',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.TrustDmbPath()']]], - ['trysetpassword_3521',['TrySetPassword',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ac2c00169e075062d4e1f040ed0c3b5b0',1,'Tgstation::Server::Host::Controllers::UserController']]] + ['temporarydmbprovider_3593',['TemporaryDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a8cbcf4f057352b274e8c2adf461bf220',1,'Tgstation::Server::Host::Components::Deployment::TemporaryDmbProvider']]], + ['terminate_3594',['Terminate',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a7fded5c4b8aeb291ad5b1797a25eee14',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a49a9acdffdc9e7cd176f803b23e97ff4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Terminate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a840da56ea51a4bbbc6b21667cc6355a2',1,'Tgstation.Server.Host.System.IProcess.Terminate()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4788d938ba886eaf6e19ac5464460',1,'Tgstation.Server.Host.System.Process.Terminate()']]], + ['terminatenolock_3595',['TerminateNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6845304123ed975aec4de3dc79bf8551',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['testdatabaseconnection_3596',['TestDatabaseConnection',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ab962664cd664ba5ad329e8af1d6b49a7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['testmergebase_3597',['TestMergeBase',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#aed82b2a4e5e83239f18657ff4a91b65f',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a22e08f62b7a5647d905d8b0ce7f703bd',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.TestMergeBase(TestMergeBase copy)']]], + ['testmergeinformation_3598',['TestMergeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a64ffd55fcded7a03edbb7cbf43eccd9e',1,'Tgstation::Server::Host::Components::Interop::Bridge::TestMergeInformation']]], + ['tgsauthorizeattribute_3599',['TgsAuthorizeAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a71fd52c8f3c07624632ca72fa669aff9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a56841444b636e471e28acb3fd7165372',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(AdministrationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a6103a7a1e759498a879c440554ed156e',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceManagerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a9bab142d724f39746e9b5cb3f11053eb',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(RepositoryRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ab9d25ba7784171d98030af65820e31b9',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ByondRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a74a9510478d9a004288929247b99f59a',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamMakerRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac602c75dd93d93f998119ede5a8a337b',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(DreamDaemonRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#ac4808ff26e27647d62338b4c55369bab',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ChatBotRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#af81be6ff62cf941583825b5c7e8402c2',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(ConfigurationRights requiredRights)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a075e1a5a46146957800a8461f26aaab0',1,'Tgstation.Server.Host.Controllers.TgsAuthorizeAttribute.TgsAuthorizeAttribute(InstanceUserRights requiredRights)']]], + ['timerloop_3600',['TimerLoop',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#afb736b47a7400fb861186b8dad1c4c4c',1,'Tgstation::Server::Host::Components::Instance']]], + ['toapi_3601',['ToApi',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ac6049a16c80f49d1503935589a5e0042',1,'Tgstation.Server.Host.Models.ChatBot.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a01525688d871d70d1ab28cdda6083011',1,'Tgstation.Server.Host.Models.ChatChannel.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a64a9fc0f8da344e311b5b754eec10611',1,'Tgstation.Server.Host.Models.CompileJob.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab477e13756ea540790df3e245e17173b',1,'Tgstation.Server.Host.Models.DreamMakerSettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a169bffb644b7ff7c3686c29373f662c1',1,'Tgstation.Server.Host.Models.Instance.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#aad0b6b9eaf0b0a9462987564aa254b68',1,'Tgstation.Server.Host.Models.InstanceUser.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aaea7f482968921045b73cbdaca4dd652',1,'Tgstation.Server.Host.Models.Job.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#acff6370af1842c659c6f8ecb85dd0ea3',1,'Tgstation.Server.Host.Models.RepositorySettings.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a8e6f5b4375c0594f10c413c4119515b1',1,'Tgstation.Server.Host.Models.RevisionInformation.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac2943458d2fc3077a6684408fb26ab09',1,'Tgstation.Server.Host.Models.TestMerge.ToApi()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8effbd8cd0ce7ba4c72f40efc08a9b50',1,'Tgstation.Server.Host.Models.User.ToApi(bool recursive, bool showDetails)'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a1d6fee3f42a73a1505d6d0d12d68b3d9',1,'Tgstation.Server.Host.Models.User.ToApi(bool showDetails)']]], + ['tofilestamp_3602',['ToFileStamp',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_date_time_offset_extensions.html#a1c52f86735de10e4573d0dc5905be489',1,'Tgstation::Server::Host::Extensions::DateTimeOffsetExtensions']]], + ['tokenfactory_3603',['TokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a3fd0782fa495e68c15cc28367fed9373',1,'Tgstation::Server::Host::Security::TokenFactory']]], + ['topicclientfactory_3604',['TopicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a21833439f6cbb353c49a7e9d79682213',1,'Tgstation::Server::Host::Components::Session::TopicClientFactory']]], + ['topicparameters_3605',['TopicParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae118357d22348fdcff032c1efced3c7d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(TopicCommandType commandType)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a72da9f55f222514ad7aa1eb82116982b',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatCommand chatCommand)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa6d3ce3910a4e966608f1bb96e76e7f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(EventNotification eventNotification)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aae80f88486056044b0bd7562dab53083',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ushort newPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a2a353bdd802d0b4e4f11980aeb0ec168',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(RebootState newRebootState)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac140d441b2ec1db127e91555f0a93255',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(string newInstanceName)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aee6668a97907129159729b4716f8b71d',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(ChatUpdate channelsUpdate)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#af3473b0e8d20a291a255361587bce56f',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters(Version newServerVersion, ushort serverPort)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ac97b495dfe29514ee8152a9e63ce8558',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.TopicParameters()']]], + ['tostring_3606',['ToString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a659884baa91d2aa0072ccd9da844cc1e',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#aeeb97f3f4f9cc635eaa55b2e9c81ad84',1,'Tgstation.Server.Api.Models.Internal.ChatConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#ac2a182244a480865e560b06da8c4a152',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#ae3db14365b6d8d193923b9037d8f4bdb',1,'Tgstation.Server.Host.Components.Session.LaunchResult.ToString()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a16ccfcf72481ac33f4a2a2a22cb7b135',1,'Tgstation.Server.Host.Models.ReattachInformationBase.ToString()']]], + ['trustdmbpath_3607',['TrustDmbPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aaefbc3a18632926c53945415b70b33fc',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.TrustDmbPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a1c0099bbd7870ed77fb8a579621efdd8',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.TrustDmbPath()']]], + ['trysetpassword_3608',['TrySetPassword',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#ac2c00169e075062d4e1f040ed0c3b5b0',1,'Tgstation::Server::Host::Controllers::UserController']]] ]; diff --git a/search/functions_13.html b/search/functions_13.html index 65faa02d20..76b20e7c79 100644 --- a/search/functions_13.html +++ b/search/functions_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_13.js b/search/functions_13.js index 88b9630905..073e6070c3 100644 --- a/search/functions_13.js +++ b/search/functions_13.js @@ -1,22 +1,23 @@ var searchData= [ - ['unauthorizedexception_3522',['UnauthorizedException',['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#afd9cbaa1fbc248771f74febdfc17abfd',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#ab5b729c4ff826ad5fdd574db0942b8f7',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#af481bddb4a0e255b1430b6e9f4b62a7e',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message, Exception innerException)']]], - ['unrecognizedresponseexception_3523',['UnrecognizedResponseException',['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a282b4f2eda537df30d31d3acc32b11db',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#ada8a7b87eb9de50dd5b9e43b749ab1be',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException()'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a783856ad9431193f65c6b76381fb9990',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a299e46f1692182ca4c908d6bed931e00',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message, Exception innerException)']]], - ['up_3524',['Up',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7df7a394603b58660e31804151c6b596',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a6ce02c8ec227b29b0de690abb7b3a8af',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#ad01b39dca497b10060c2058a1dd66160',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a48d1ac48f970e1bd84139bb112118398',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ae3c9b00858947f20604494860bf674de',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#ab83944ba8a141a2b0723b9180e638549',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#af9f127aef130a8dfd1fd957864d08570',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a0ba7771562cd594634f73b8e239a3c6c',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a3544f139764a77e677142a392ebaf217',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#af4403fe4bde2f525305be051e4d6848c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#a6eb6707c5b402b8d2ddbf31b7b25bc6e',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ad64d31c0438c6d7d7893a2cc34d51d00',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#abdf29c335522af79ec11007d86808b7e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a8be4ce807c0078fead38522c78bd2547',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a22370cdfbdbd8084ecc4a94c30d614c5',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a22a2e1dbca28937f3dc4ae596b875d1f',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a20f96799e10f96906c09d1f2cd7e26dd',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a051b191cb4c6e4b1eaa32e96b0bbfa3a',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a5f6c37e76fc48cbf1c89c1bf174e327c',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a96a82dc6acfbac30b83c1f8181b6a92d',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ae0b40f0db7f96df8a2c37a2cd6a221ef',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ae78d569e6f671655580e4461077b37bd',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#ad5f9c3ca384fa8d5d405a0c04b2f2917',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a495a9fdada8b62f420551f79f517f98d',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a0ea5e2853467d505261be8cc1ced22b1',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a3b4ba38bdf88d4fb349fffad5e8b564e',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a990cb1cbeced6a9facb3146f61c3bb22',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a6115c297329930e0c71e351c03330e8b',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a84b0a9d8a7be255cb2443bc3b29daaf9',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a08dfb12aacd8b1b98b352d1afba5085c',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#a3c94db4d8958852e62984e00f8d3625a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a2338f4e1c23d55843679aa523fbdb9ad',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a893443a69066318b2a3e5868880b4d32',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a55448d2e7133c0b8444eb9c851954e52',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#aed8f2b19b9edf7781ed2525d1f1a4130',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a53ea0db7eb5a384f2b64084cf25858dd',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a7ba2038004208f1baef9a09bea0cc9cd',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#ada614a2598d25ed2d196c92b8def6a8a',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a8ff25cd28e9b941df998a6d0df838e3d',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#adf7992f800e6c42b18ed7370924799c4',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#ae9433f85926cbbdb4308b26d671f4cd9',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a86720c32808a0ffbf58d45caf8743936',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#ac6aff172b1631e7c1023de87db67d7ba',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#a80a41c479a477c912b5cd47f3c4fb979',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#a92bd2ce8eaa81493340e05f9f3f0dd7c',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a705c36e2c8870e9a48e9ff58929c66d6',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#ab02baa005a77302f225ce563d75c9588',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#abce088942e2b684a287ecfb18d3a1b65',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a74ee376b058283e18cdb5129f87c85f3',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Up()']]], - ['update_3525',['Update',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a43842f5f15ef0b33c5450accdb18609f',1,'Tgstation.Server.Client.AdministrationClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a8f60027fc85212c9b35249cccc88d1e3',1,'Tgstation.Server.Client.Components.ChatBotsClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a1bc64b3c8ac57f22694751cccf580f90',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#ae428fd6c9fad6e1d019b3ded7579c0b5',1,'Tgstation.Server.Client.Components.DreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ab2356151d04b5f17d797b22dc82c6354',1,'Tgstation.Server.Client.Components.IChatBotsClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a9cc6c3e2db7c4491f00ff9347acfe634',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a328b3fb9bebf37474ab554894b43eb54',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a96063a725f2be7f6891ab46e66e7006b',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#adf513d69fe64d03119446eba42df5250',1,'Tgstation.Server.Client.Components.InstanceUserClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a24995226be87730e9b7d49d6c53f5b2c',1,'Tgstation.Server.Client.Components.IRepositoryClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a718c5e27cfe0ddbfcc9c0746ec16a6e0',1,'Tgstation.Server.Client.Components.RepositoryClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a666df801432630c494c916d35834a38b',1,'Tgstation.Server.Client.IAdministrationClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a337b3e0676570d2ba2928b0d2cef5595',1,'Tgstation.Server.Client.IInstanceManagerClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aed0303f71e96db6fa88fc10cdfb196d3',1,'Tgstation.Server.Client.InstanceManagerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aecbd14842867cfdce083b793f91ab14e',1,'Tgstation.Server.Client.IUsersClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a89d2d761849b9b8f2932920841d996e1',1,'Tgstation.Server.Client.UsersClient.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afbf7a02a0808b463ea298c43a03e0e99',1,'Tgstation.Server.Host.Controllers.AdministrationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#ad84ccddae9c935bc645b048f8ea46d7f',1,'Tgstation.Server.Host.Controllers.ByondController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a7568d3ba39d641f3fb486c779aea92cf',1,'Tgstation.Server.Host.Controllers.ChatController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a7c19c1f24368f45b5e65ccf73fc58416',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ae9ce00c8ac0758a4c2328eae7d7ef2eb',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a6ec0755f8794e6323ba59634c76bd498',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad31a819fbeeca3ebd71d35892ce10b19',1,'Tgstation.Server.Host.Controllers.InstanceController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#acf0cc09f53acd6c87a91a4a01afe8daa',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a20510f6dd61837e191a7a2c1a5c1c9ce',1,'Tgstation.Server.Host.Controllers.RepositoryController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7f795d4042188f30317c6134b75afc70',1,'Tgstation.Server.Host.Controllers.UserController.Update()']]], - ['update_3c_20tbody_20_3e_3526',['Update< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a92a748d5262e33c6ece011016d780c35',1,'Tgstation.Server.Client.ApiClient.Update< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a036ef64cf33e776c9042fa59aecbc9ba',1,'Tgstation.Server.Client.IApiClient.Update< TBody >()']]], - ['update_3c_20tbody_2c_20tresult_20_3e_3527',['Update< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aeba489d6ab822da7fe59b46cf0cb2ad4',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7c36add8f2943a7505b20213322be406',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a1573e017176db0b603a72944c5373e12',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#aed63658d4aa92fc6c6860bab59bb1b2d',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], - ['update_3c_20tresult_20_3e_3528',['Update< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afe91cd24b8b838c9e80e8165c393502c',1,'Tgstation.Server.Client.ApiClient.Update< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a2c07a344cb71a5194c90be0b7d71c0bf',1,'Tgstation.Server.Client.IApiClient.Update< TResult >()']]], - ['updatechannels_3529',['UpdateChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a900375667702050cc6bf0ffaf6cbbd16',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.UpdateChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html#ac3f839f7d95d8ad7cd22a0fc68cb6860',1,'Tgstation.Server.Host.Components.Chat.IChannelSink.UpdateChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1097ea23222ee708fb5cce9b3078d666',1,'Tgstation.Server.Host.Components.Session.SessionController.UpdateChannels()']]], - ['useapplication_3530',['UseApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html#a99cb6b8254d549fa635f9cdc908debba',1,'Tgstation::Server::Host::Extensions::WebHostBuilderExtensions']]], - ['usecancelledrequestsuppression_3531',['UseCancelledRequestSuppression',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#ac119fdfd544f8d4e196bedaba59247ad',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['usecontext_3532',['UseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a655c73b949f3fe4fee8106844ef2eab2',1,'Tgstation.Server.Host.Database.DatabaseContextFactory.UseContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#ad22fce8fc51129e9da203dcef2f7ab42',1,'Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext()']]], - ['usedbconflicthandling_3533',['UseDbConflictHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9fb7c6b75b76c45a6102bec991a311c4',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['useexecutables_3534',['UseExecutables',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3767b16e9f00578e385dcca6b7e6b816',1,'Tgstation.Server.Host.Components.Byond.ByondManager.UseExecutables()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae897f63dc75160c7378292be017a50b1',1,'Tgstation.Server.Host.Components.Byond.IByondManager.UseExecutables()']]], - ['user_3535',['User',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)']]], - ['usercontroller_3536',['UserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a972194803b6ad32f7be555b9ea93e961',1,'Tgstation::Server::Host::Controllers::UserController']]], - ['usersclient_3537',['UsersClient',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#aa7e771fad86b68de8483944e9f34a88e',1,'Tgstation::Server::Client::UsersClient']]], - ['useservererrorhandling_3538',['UseServerErrorHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a879c6c603a37c9aebf25174e7aee4b2d',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['usesetupapplication_3539',['UseSetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html#ae797b26258b28c3540df4af88ff850fe',1,'Tgstation::Server::Host::Extensions::HostBuilderExtensions']]], - ['usestandardconfig_3c_20tconfig_20_3e_3540',['UseStandardConfig< TConfig >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a47937ae7bd20d9b7cc5699cce51cb8ae',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]] + ['unauthorizedexception_3609',['UnauthorizedException',['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#afd9cbaa1fbc248771f74febdfc17abfd',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#ab5b729c4ff826ad5fdd574db0942b8f7',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unauthorized_exception.html#af481bddb4a0e255b1430b6e9f4b62a7e',1,'Tgstation.Server.Client.UnauthorizedException.UnauthorizedException(string message, Exception innerException)']]], + ['unrecognizedresponseexception_3610',['UnrecognizedResponseException',['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a282b4f2eda537df30d31d3acc32b11db',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#ada8a7b87eb9de50dd5b9e43b749ab1be',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException()'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a783856ad9431193f65c6b76381fb9990',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_unrecognized_response_exception.html#a299e46f1692182ca4c908d6bed931e00',1,'Tgstation.Server.Client.UnrecognizedResponseException.UnrecognizedResponseException(string message, Exception innerException)']]], + ['up_3611',['Up',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#a7df7a394603b58660e31804151c6b596',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a6ce02c8ec227b29b0de690abb7b3a8af',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#ad01b39dca497b10060c2058a1dd66160',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a48d1ac48f970e1bd84139bb112118398',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#ae3c9b00858947f20604494860bf674de',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#ab83944ba8a141a2b0723b9180e638549',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#af9f127aef130a8dfd1fd957864d08570',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a0ba7771562cd594634f73b8e239a3c6c',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#a3544f139764a77e677142a392ebaf217',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#af4403fe4bde2f525305be051e4d6848c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#a6eb6707c5b402b8d2ddbf31b7b25bc6e',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#ad64d31c0438c6d7d7893a2cc34d51d00',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#abdf29c335522af79ec11007d86808b7e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a8be4ce807c0078fead38522c78bd2547',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a22370cdfbdbd8084ecc4a94c30d614c5',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a22a2e1dbca28937f3dc4ae596b875d1f',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#a20f96799e10f96906c09d1f2cd7e26dd',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a051b191cb4c6e4b1eaa32e96b0bbfa3a',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a5f6c37e76fc48cbf1c89c1bf174e327c',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#a96a82dc6acfbac30b83c1f8181b6a92d',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ae0b40f0db7f96df8a2c37a2cd6a221ef',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ae78d569e6f671655580e4461077b37bd',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#ad5f9c3ca384fa8d5d405a0c04b2f2917',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a495a9fdada8b62f420551f79f517f98d',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a0ea5e2853467d505261be8cc1ced22b1',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a3b4ba38bdf88d4fb349fffad5e8b564e',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a990cb1cbeced6a9facb3146f61c3bb22',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a6115c297329930e0c71e351c03330e8b',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#a84b0a9d8a7be255cb2443bc3b29daaf9',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a08dfb12aacd8b1b98b352d1afba5085c',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#a3c94db4d8958852e62984e00f8d3625a',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a2338f4e1c23d55843679aa523fbdb9ad',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a893443a69066318b2a3e5868880b4d32',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a55448d2e7133c0b8444eb9c851954e52',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#aed8f2b19b9edf7781ed2525d1f1a4130',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a53ea0db7eb5a384f2b64084cf25858dd',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a7ba2038004208f1baef9a09bea0cc9cd',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#ada614a2598d25ed2d196c92b8def6a8a',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a8ff25cd28e9b941df998a6d0df838e3d',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#adf7992f800e6c42b18ed7370924799c4',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#ae9433f85926cbbdb4308b26d671f4cd9',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#a86720c32808a0ffbf58d45caf8743936',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#ac6aff172b1631e7c1023de87db67d7ba',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#a80a41c479a477c912b5cd47f3c4fb979',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#a92bd2ce8eaa81493340e05f9f3f0dd7c',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a705c36e2c8870e9a48e9ff58929c66d6',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#ab02baa005a77302f225ce563d75c9588',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#abce088942e2b684a287ecfb18d3a1b65',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a74ee376b058283e18cdb5129f87c85f3',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html#a43b4662c4b85350004c4e238e73370ca',1,'Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html#a4ac3a00a8c5c5b5bd1b97da7d052c400',1,'Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html#abc2356fe919e3aca05769b897dfa1a09',1,'Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Up()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html#a94469c516c8db78e17efd51ec289522c',1,'Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Up()']]], + ['update_3612',['Update',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a43842f5f15ef0b33c5450accdb18609f',1,'Tgstation.Server.Client.AdministrationClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a8f60027fc85212c9b35249cccc88d1e3',1,'Tgstation.Server.Client.Components.ChatBotsClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a1bc64b3c8ac57f22694751cccf580f90',1,'Tgstation.Server.Client.Components.DreamDaemonClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#ae428fd6c9fad6e1d019b3ded7579c0b5',1,'Tgstation.Server.Client.Components.DreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ab2356151d04b5f17d797b22dc82c6354',1,'Tgstation.Server.Client.Components.IChatBotsClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a9cc6c3e2db7c4491f00ff9347acfe634',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a328b3fb9bebf37474ab554894b43eb54',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a96063a725f2be7f6891ab46e66e7006b',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#adf513d69fe64d03119446eba42df5250',1,'Tgstation.Server.Client.Components.InstanceUserClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a24995226be87730e9b7d49d6c53f5b2c',1,'Tgstation.Server.Client.Components.IRepositoryClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a718c5e27cfe0ddbfcc9c0746ec16a6e0',1,'Tgstation.Server.Client.Components.RepositoryClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a666df801432630c494c916d35834a38b',1,'Tgstation.Server.Client.IAdministrationClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a337b3e0676570d2ba2928b0d2cef5595',1,'Tgstation.Server.Client.IInstanceManagerClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aed0303f71e96db6fa88fc10cdfb196d3',1,'Tgstation.Server.Client.InstanceManagerClient.Update()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aecbd14842867cfdce083b793f91ab14e',1,'Tgstation.Server.Client.IUsersClient.Update()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a89d2d761849b9b8f2932920841d996e1',1,'Tgstation.Server.Client.UsersClient.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afbf7a02a0808b463ea298c43a03e0e99',1,'Tgstation.Server.Host.Controllers.AdministrationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#ad84ccddae9c935bc645b048f8ea46d7f',1,'Tgstation.Server.Host.Controllers.ByondController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a7568d3ba39d641f3fb486c779aea92cf',1,'Tgstation.Server.Host.Controllers.ChatController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a7c19c1f24368f45b5e65ccf73fc58416',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ae9ce00c8ac0758a4c2328eae7d7ef2eb',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a6ec0755f8794e6323ba59634c76bd498',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad31a819fbeeca3ebd71d35892ce10b19',1,'Tgstation.Server.Host.Controllers.InstanceController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#acf0cc09f53acd6c87a91a4a01afe8daa',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a20510f6dd61837e191a7a2c1a5c1c9ce',1,'Tgstation.Server.Host.Controllers.RepositoryController.Update()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7f795d4042188f30317c6134b75afc70',1,'Tgstation.Server.Host.Controllers.UserController.Update()']]], + ['update_3c_20tbody_20_3e_3613',['Update< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a92a748d5262e33c6ece011016d780c35',1,'Tgstation.Server.Client.ApiClient.Update< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a036ef64cf33e776c9042fa59aecbc9ba',1,'Tgstation.Server.Client.IApiClient.Update< TBody >()']]], + ['update_3c_20tbody_2c_20tresult_20_3e_3614',['Update< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aeba489d6ab822da7fe59b46cf0cb2ad4',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7c36add8f2943a7505b20213322be406',1,'Tgstation.Server.Client.ApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a1573e017176db0b603a72944c5373e12',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#aed63658d4aa92fc6c6860bab59bb1b2d',1,'Tgstation.Server.Client.IApiClient.Update< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], + ['update_3c_20tresult_20_3e_3615',['Update< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afe91cd24b8b838c9e80e8165c393502c',1,'Tgstation.Server.Client.ApiClient.Update< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a2c07a344cb71a5194c90be0b7d71c0bf',1,'Tgstation.Server.Client.IApiClient.Update< TResult >()']]], + ['updatechannels_3616',['UpdateChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a900375667702050cc6bf0ffaf6cbbd16',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.UpdateChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_channel_sink.html#ac3f839f7d95d8ad7cd22a0fc68cb6860',1,'Tgstation.Server.Host.Components.Chat.IChannelSink.UpdateChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1097ea23222ee708fb5cce9b3078d666',1,'Tgstation.Server.Host.Components.Session.SessionController.UpdateChannels()']]], + ['updatedeployment_3617',['UpdateDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#ac3aeb890dfb67252ed73f8026913fd10',1,'Tgstation::Server::Host::Components::Deployment::GitHubDeploymentManager']]], + ['useapplication_3618',['UseApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_web_host_builder_extensions.html#a99cb6b8254d549fa635f9cdc908debba',1,'Tgstation::Server::Host::Extensions::WebHostBuilderExtensions']]], + ['usecancelledrequestsuppression_3619',['UseCancelledRequestSuppression',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#ac119fdfd544f8d4e196bedaba59247ad',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['usecontext_3620',['UseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a655c73b949f3fe4fee8106844ef2eab2',1,'Tgstation.Server.Host.Database.DatabaseContextFactory.UseContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#ad22fce8fc51129e9da203dcef2f7ab42',1,'Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext()']]], + ['usedbconflicthandling_3621',['UseDbConflictHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9fb7c6b75b76c45a6102bec991a311c4',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['useexecutables_3622',['UseExecutables',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3767b16e9f00578e385dcca6b7e6b816',1,'Tgstation.Server.Host.Components.Byond.ByondManager.UseExecutables()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae897f63dc75160c7378292be017a50b1',1,'Tgstation.Server.Host.Components.Byond.IByondManager.UseExecutables()']]], + ['user_3623',['User',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ac78f83e6537e2744d0e746646c553db9',1,'Tgstation.Server.Client.UsersClient.User(Routes.User, user ?? throw new ArgumentNullException(nameof(user)), cancellationToken)']]], + ['usercontroller_3624',['UserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a972194803b6ad32f7be555b9ea93e961',1,'Tgstation::Server::Host::Controllers::UserController']]], + ['usersclient_3625',['UsersClient',['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#aa7e771fad86b68de8483944e9f34a88e',1,'Tgstation::Server::Client::UsersClient']]], + ['useservererrorhandling_3626',['UseServerErrorHandling',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a879c6c603a37c9aebf25174e7aee4b2d',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['usesetupapplication_3627',['UseSetupApplication',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_host_builder_extensions.html#ae797b26258b28c3540df4af88ff850fe',1,'Tgstation::Server::Host::Extensions::HostBuilderExtensions']]], + ['usestandardconfig_3c_20tconfig_20_3e_3628',['UseStandardConfig< TConfig >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a47937ae7bd20d9b7cc5699cce51cb8ae',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]] ]; diff --git a/search/functions_14.html b/search/functions_14.html index 527223c5dd..a9146d9f6e 100644 --- a/search/functions_14.html +++ b/search/functions_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_14.js b/search/functions_14.js index 25f1ba74d5..9150e095f1 100644 --- a/search/functions_14.js +++ b/search/functions_14.js @@ -1,13 +1,13 @@ var searchData= [ - ['validateconfigrelativepath_3541',['ValidateConfigRelativePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3947ddcc7baa1a6c536a0db65766c7cb',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['validateinstanceonlinestatus_3542',['ValidateInstanceOnlineStatus',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a666be878e8b392ab679eea0b30751dbf',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], - ['validateinstancerequest_3543',['ValidateInstanceRequest',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a08c7d163190736be9f4823dd9ba7eb11',1,'Tgstation.Server.Host.Controllers.ApiController.ValidateInstanceRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a518d9ff728410957637c47fcd2aad02c',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.ValidateInstanceRequest()']]], - ['validatenonexistantsqlitedbname_3544',['ValidateNonExistantSqliteDBName',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a8a3a9f933ee29e77d67fbd7223fd84ca',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['validateproviderchanneltypes_3545',['ValidateProviderChannelTypes',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a8f3524dcce53f320de9b210334928a06',1,'Tgstation::Server::Api::Models::ChatBot']]], - ['verifyapi_3546',['VerifyApi',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab683b1788351899ba9ded6cd284c4177',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['version_3547',['Version',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a3bebba1e2658a94424e66713bf1085c4',1,'Tgstation.Server.Client.IServerClient.Version()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a8c853236fdd5679440d5ba7a1289012e',1,'Tgstation.Server.Client.ServerClient.Version()']]], - ['versioncommand_3548',['VersionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#aac843c7ae2125089ba16ccf1e35a0a0d',1,'Tgstation::Server::Host::Components::Chat::Commands::VersionCommand']]], - ['versionkey_3549',['VersionKey',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#af852a60634ee83b315fcdaf9aa28b02a',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['versionmismatchexception_3550',['VersionMismatchException',['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a966b6b4550325adc9ba29fd32c4e7309',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a98f49568d813eb370d5729acf521f661',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException()'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a28b7f81f775966bb71c0dcaf27734684',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#afac834c26a3f8b12f53c8a4e6deaae2c',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message, Exception innerException)']]] + ['validateconfigrelativepath_3629',['ValidateConfigRelativePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3947ddcc7baa1a6c536a0db65766c7cb',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['validateinstanceonlinestatus_3630',['ValidateInstanceOnlineStatus',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a666be878e8b392ab679eea0b30751dbf',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], + ['validateinstancerequest_3631',['ValidateInstanceRequest',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a08c7d163190736be9f4823dd9ba7eb11',1,'Tgstation.Server.Host.Controllers.ApiController.ValidateInstanceRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a518d9ff728410957637c47fcd2aad02c',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.ValidateInstanceRequest()']]], + ['validatenonexistantsqlitedbname_3632',['ValidateNonExistantSqliteDBName',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a8a3a9f933ee29e77d67fbd7223fd84ca',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['validateproviderchanneltypes_3633',['ValidateProviderChannelTypes',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a8f3524dcce53f320de9b210334928a06',1,'Tgstation::Server::Api::Models::ChatBot']]], + ['verifyapi_3634',['VerifyApi',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab683b1788351899ba9ded6cd284c4177',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['version_3635',['Version',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a3bebba1e2658a94424e66713bf1085c4',1,'Tgstation.Server.Client.IServerClient.Version()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a8c853236fdd5679440d5ba7a1289012e',1,'Tgstation.Server.Client.ServerClient.Version()']]], + ['versioncommand_3636',['VersionCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#aac843c7ae2125089ba16ccf1e35a0a0d',1,'Tgstation::Server::Host::Components::Chat::Commands::VersionCommand']]], + ['versionkey_3637',['VersionKey',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#af852a60634ee83b315fcdaf9aa28b02a',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['versionmismatchexception_3638',['VersionMismatchException',['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a966b6b4550325adc9ba29fd32c4e7309',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a98f49568d813eb370d5729acf521f661',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException()'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#a28b7f81f775966bb71c0dcaf27734684',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_version_mismatch_exception.html#afac834c26a3f8b12f53c8a4e6deaae2c',1,'Tgstation.Server.Client.VersionMismatchException.VersionMismatchException(string message, Exception innerException)']]] ]; diff --git a/search/functions_15.html b/search/functions_15.html index 932bb87ba2..e289e9812e 100644 --- a/search/functions_15.html +++ b/search/functions_15.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_15.js b/search/functions_15.js index 6fed7e1e81..fd0a64da67 100644 --- a/search/functions_15.js +++ b/search/functions_15.js @@ -1,23 +1,23 @@ var searchData= [ - ['wait_3551',['Wait',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ae9c16c160e9e0f1e1201dc86a29eace0',1,'Tgstation::Server::Host::Jobs::JobHandler']]], - ['waitforjobcompletion_3552',['WaitForJobCompletion',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a04ad7543ef9c8863c1d8d0b46d17f522',1,'Tgstation.Server.Host.Jobs.IJobManager.WaitForJobCompletion()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a91cb1783409dd1e5cd4ec7670851f05f',1,'Tgstation.Server.Host.Jobs.JobManager.WaitForJobCompletion()']]], - ['watchdog_3553',['Watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#ada6c36ef01a0cdaf67ea13a350c3f073',1,'Tgstation::Server::Host::Watchdog::Watchdog']]], - ['watchdogbase_3554',['WatchdogBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a4fa6000293a0b943a2316c28ed3433d0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['watchdogfactory_3555',['WatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#afdf6af7bc2e3fc7eb272eb50dd95994e',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], - ['windowsbyondinstaller_3556',['WindowsByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a90d405cbc30a94e4f42bb82f1ae70db9',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['windowsnetworkpromptreaper_3557',['WindowsNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a48c16d7265c9d7b8c578f20c52601f94',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['windowssystemidentity_3558',['WindowsSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a6b20afd81a3b07e0ef1f89fc134652ad',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(WindowsIdentity identity)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a8a3ea6f579bf33bbba407c615140998d',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(UserPrincipal userPrincipal)']]], - ['windowssystemidentityfactory_3559',['WindowsSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a46f081a94982769acd01d0fdee271b40',1,'Tgstation::Server::Host::Security::WindowsSystemIdentityFactory']]], - ['windowswatchdog_3560',['WindowsWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a0b58f817109441d766bfbd318c2c668a',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['windowswatchdogfactory_3561',['WindowsWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a4d5807c151983860963c9562ec0cd8ef',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdogFactory']]], - ['withcomponentinstance_3562',['WithComponentInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#ab20aad6535d46cb0f297e9a1b88d6e74',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], - ['withtoken_3563',['WithToken',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#af361129d3382024befd82cd448fa6ed3',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], - ['withtoken_3c_20t_20_3e_3564',['WithToken< T >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a3950e2e535f0222c5fe4ca029dd130cc',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], - ['wraplifetimetask_3565',['WrapLifetimeTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac29e58ebc2a30e17a50d9a445be22acc',1,'Tgstation::Server::Host::System::Process']]], - ['write_3566',['Write',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a7623081b4c09cf5f7679989cf73c7003',1,'Tgstation.Server.Client.Components.ConfigurationClient.Write()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ae72948a1a0f52e1a84b0e430c1984e4b',1,'Tgstation.Server.Client.Components.IConfigurationClient.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac6f986527806a782c0bea1ab51d7f0ad',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Write()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aa5244c05dd19f32a6f3603b5ca4fd638',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#aa5c825a8266ddf651f978ed539323b49',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Write()']]], - ['writeallbytes_3567',['WriteAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adfa411bbedf8ffc430cb9fcf0a6e6fe4',1,'Tgstation.Server.Host.IO.DefaultIOManager.WriteAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af3e7a63cedbe826cfd27f1a2a411103e',1,'Tgstation.Server.Host.IO.IIOManager.WriteAllBytes()']]], - ['writeasync_3568',['WriteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aa038503e15f044245a1a0d30b0de1b6d',1,'Tgstation.Server.Host.IO.Console.WriteAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#af9dd7697e9f6a0f4a62567e28cd6c470',1,'Tgstation.Server.Host.IO.IConsole.WriteAsync()']]], - ['writefilechecked_3569',['WriteFileChecked',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a66e6e18e2e313165e390361b77465f65',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.WriteFileChecked()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a74a681b01f42d65b5bc6e10ad73541c1',1,'Tgstation.Server.Host.IO.SynchronousIOManager.WriteFileChecked()']]], - ['writejson_3570',['WriteJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a75c1da27117d5e6854103375ca7c24b7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.WriteJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a64bc434b6536e65eb3bb0adcc8de1748',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.WriteJson()']]] + ['wait_3639',['Wait',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ae9c16c160e9e0f1e1201dc86a29eace0',1,'Tgstation::Server::Host::Jobs::JobHandler']]], + ['waitforjobcompletion_3640',['WaitForJobCompletion',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a04ad7543ef9c8863c1d8d0b46d17f522',1,'Tgstation.Server.Host.Jobs.IJobManager.WaitForJobCompletion()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a91cb1783409dd1e5cd4ec7670851f05f',1,'Tgstation.Server.Host.Jobs.JobManager.WaitForJobCompletion()']]], + ['watchdog_3641',['Watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#ada6c36ef01a0cdaf67ea13a350c3f073',1,'Tgstation::Server::Host::Watchdog::Watchdog']]], + ['watchdogbase_3642',['WatchdogBase',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a10098368e02b5ce00e1bd40a69d49d4e',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['watchdogfactory_3643',['WatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#afdf6af7bc2e3fc7eb272eb50dd95994e',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], + ['windowsbyondinstaller_3644',['WindowsByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a90d405cbc30a94e4f42bb82f1ae70db9',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['windowsnetworkpromptreaper_3645',['WindowsNetworkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a48c16d7265c9d7b8c578f20c52601f94',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['windowssystemidentity_3646',['WindowsSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a6b20afd81a3b07e0ef1f89fc134652ad',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(WindowsIdentity identity)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a8a3ea6f579bf33bbba407c615140998d',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.WindowsSystemIdentity(UserPrincipal userPrincipal)']]], + ['windowssystemidentityfactory_3647',['WindowsSystemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a46f081a94982769acd01d0fdee271b40',1,'Tgstation::Server::Host::Security::WindowsSystemIdentityFactory']]], + ['windowswatchdog_3648',['WindowsWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a47fdb570ec0eb35d3628c583d6df868f',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['windowswatchdogfactory_3649',['WindowsWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a4d5807c151983860963c9562ec0cd8ef',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdogFactory']]], + ['withcomponentinstance_3650',['WithComponentInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#ab20aad6535d46cb0f297e9a1b88d6e74',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], + ['withtoken_3651',['WithToken',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#af361129d3382024befd82cd448fa6ed3',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], + ['withtoken_3c_20t_20_3e_3652',['WithToken< T >',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a3950e2e535f0222c5fe4ca029dd130cc',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], + ['wraplifetimetask_3653',['WrapLifetimeTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac29e58ebc2a30e17a50d9a445be22acc',1,'Tgstation::Server::Host::System::Process']]], + ['write_3654',['Write',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a7623081b4c09cf5f7679989cf73c7003',1,'Tgstation.Server.Client.Components.ConfigurationClient.Write()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ae72948a1a0f52e1a84b0e430c1984e4b',1,'Tgstation.Server.Client.Components.IConfigurationClient.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac6f986527806a782c0bea1ab51d7f0ad',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Write()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aa5244c05dd19f32a6f3603b5ca4fd638',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.Write()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#aa5c825a8266ddf651f978ed539323b49',1,'Tgstation.Server.Host.Core.OpenApiEnumVarNamesExtension.Write()']]], + ['writeallbytes_3655',['WriteAllBytes',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adfa411bbedf8ffc430cb9fcf0a6e6fe4',1,'Tgstation.Server.Host.IO.DefaultIOManager.WriteAllBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af3e7a63cedbe826cfd27f1a2a411103e',1,'Tgstation.Server.Host.IO.IIOManager.WriteAllBytes()']]], + ['writeasync_3656',['WriteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aa038503e15f044245a1a0d30b0de1b6d',1,'Tgstation.Server.Host.IO.Console.WriteAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#af9dd7697e9f6a0f4a62567e28cd6c470',1,'Tgstation.Server.Host.IO.IConsole.WriteAsync()']]], + ['writefilechecked_3657',['WriteFileChecked',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a66e6e18e2e313165e390361b77465f65',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.WriteFileChecked()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a74a681b01f42d65b5bc6e10ad73541c1',1,'Tgstation.Server.Host.IO.SynchronousIOManager.WriteFileChecked()']]], + ['writejson_3658',['WriteJson',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a75c1da27117d5e6854103375ca7c24b7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.WriteJson()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a64bc434b6536e65eb3bb0adcc8de1748',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.WriteJson()']]] ]; diff --git a/search/functions_16.html b/search/functions_16.html index a42c030656..3bc3f4c367 100644 --- a/search/functions_16.html +++ b/search/functions_16.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_16.js b/search/functions_16.js index 175125c10b..ca373f35b5 100644 --- a/search/functions_16.js +++ b/search/functions_16.js @@ -1,4 +1,4 @@ var searchData= [ - ['ziptodirectory_3571',['ZipToDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8905a0a82326cf61f67ba1ec1eccb0e2',1,'Tgstation.Server.Host.IO.DefaultIOManager.ZipToDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a839873a83e4a687821fbc3d28619f851',1,'Tgstation.Server.Host.IO.IIOManager.ZipToDirectory()']]] + ['ziptodirectory_3659',['ZipToDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8905a0a82326cf61f67ba1ec1eccb0e2',1,'Tgstation.Server.Host.IO.DefaultIOManager.ZipToDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a839873a83e4a687821fbc3d28619f851',1,'Tgstation.Server.Host.IO.IIOManager.ZipToDirectory()']]] ]; diff --git a/search/functions_17.html b/search/functions_17.html index dc805abb9a..8040559eeb 100644 --- a/search/functions_17.html +++ b/search/functions_17.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_17.js b/search/functions_17.js index bc497b13eb..5d9bbefe21 100644 --- a/search/functions_17.js +++ b/search/functions_17.js @@ -1,4 +1,4 @@ var searchData= [ - ['_7esemaphoreslimcontext_3572',['~SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a38494639c16b57de63e6af91f2841a12',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]] + ['_7esemaphoreslimcontext_3660',['~SemaphoreSlimContext',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a38494639c16b57de63e6af91f2841a12',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]] ]; diff --git a/search/functions_2.html b/search/functions_2.html index eb51f809fd..a531f573b7 100644 --- a/search/functions_2.html +++ b/search/functions_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_2.js b/search/functions_2.js index 6b901aed57..fb6d5da04e 100644 --- a/search/functions_2.js +++ b/search/functions_2.js @@ -1,111 +1,111 @@ var searchData= [ - ['cachesystemidentity_3029',['CacheSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#acbbad46e8e5ac5cae600edce613f9cf5',1,'Tgstation.Server.Host.Security.IdentityCache.CacheSystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#a40f3695ec18d3df1bea7b230b75dabbb',1,'Tgstation.Server.Host.Security.IIdentityCache.CacheSystemIdentity()']]], - ['calculateexpecteddeploymenttime_3030',['CalculateExpectedDeploymentTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2365f1b05cb4cea83027efaea9580f83',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['canapplywithoutreboot_3031',['CanApplyWithoutReboot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#ad1c56d38c1a48c110765c99a72619e13',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['cancel_3032',['Cancel',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a060a731a0c221146d5d81d7890e1cd42',1,'Tgstation.Server.Client.Components.IJobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a50456aace539b2c54afc8f8218278c49',1,'Tgstation.Server.Client.Components.JobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a674342b0dc8050c0ab42a299aa4a7762',1,'Tgstation.Server.Host.Jobs.JobHandler.Cancel()']]], - ['canceljob_3033',['CancelJob',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a02ff92fbece1f77bc9d34216d1ffa7ce',1,'Tgstation.Server.Host.Jobs.IJobManager.CancelJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#afab851d16b36dadeb5d7afdc40e7a740',1,'Tgstation.Server.Host.Jobs.JobManager.CancelJob()']]], - ['canconvert_3034',['CanConvert',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a06799ee353b6539298ae9157a94447d7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.CanConvert()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a4179b3dce37ebd3e673c0d3326c08624',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.CanConvert()']]], - ['canonicalizename_3035',['CanonicalizeName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a4b139051d0d6db501e37590fa1eabf16',1,'Tgstation::Server::Host::Models::User']]], - ['changechannels_3036',['ChangeChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a29ba2842fd3cf2c5532acc07966eb1a9',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#ab9ba3beba537518b1f68ca31ae9dea25',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeChannels()']]], - ['changesettings_3037',['ChangeSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0821ad5d467ff2ea9216eadd33273104',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a2ae0c2190435e3c65914eaec63dd2db6',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afab0aa088dc77e54e978c730645d8d00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ChangeSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a390fcde5ed6ed30d6e5b5b2ebc8273dc',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ChangeSettings()']]], - ['changeversion_3038',['ChangeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a431f006cfe5e1d2ab2efb346d6556705',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ChangeVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#af3559b76b9c7faff35cd8eadaac75c0b',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ChangeVersion()']]], - ['chatbot_3039',['ChatBot',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)']]], - ['chatbotsclient_3040',['ChatBotsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a322c40d10b0b8b65802c71a899a555d9',1,'Tgstation::Server::Client::Components::ChatBotsClient']]], - ['chatcommand_3041',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a1737c025e35743a0f2be00fba48521c4',1,'Tgstation::Server::Host::Components::Interop::Topic::ChatCommand']]], - ['chatcontroller_3042',['ChatController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#aeb8a6d7b46b068d26e685b7b22e78cb4',1,'Tgstation::Server::Host::Controllers::ChatController']]], - ['chatmanager_3043',['ChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae0a718f1cae22fe94e31e1c6103ddbed',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['chatmanagerfactory_3044',['ChatManagerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a664778f38f54960c97b79cb3bcd97651',1,'Tgstation::Server::Host::Components::Chat::ChatManagerFactory']]], - ['chattrackingcontext_3045',['ChatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a930d4047b0c065fa25b3a149bb541648',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], - ['chatupdate_3046',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#aad6730fe7ca3dfdf9b037bdc07a97c91',1,'Tgstation::Server::Host::Components::Interop::ChatUpdate']]], - ['checkavailable_3047',['CheckAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a6556df91ef25960c814f583b71996a9f',1,'Tgstation::Server::Host::IO::Console']]], - ['checkcompatibility_3048',['CheckCompatibility',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3c5df000903796a032fe6a4cafdc8a73',1,'Tgstation.Server.Api.ApiHeaders.CheckCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0dff52d3ac52e100397122e63e1337ee',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.CheckCompatibility()']]], - ['checkdisposed_3049',['CheckDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab0660ae6440a38aa85f8473a8220533a',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['checkexceptionpropagation_3050',['CheckExceptionPropagation',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab5cd879190ac2d9764b9849eb31985f8',1,'Tgstation::Server::Host::Server']]], - ['checkgetjob_3051',['CheckGetJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ae129c81a2e2ad2ecf8838e03a5a7db07',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['checklaunchresult_3052',['CheckLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a96ad9302ae812f4ba3bbbaed2f7adbd0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['checkout_3053',['Checkout',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a193582291ff43c0841b5c75f77f50fcb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Checkout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a6bd416c14953fd88906f93050249e705',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Checkout()']]], - ['checkoutobject_3054',['CheckoutObject',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab069c1ee11c48955e51956ff31a0d0fc',1,'Tgstation.Server.Host.Components.Repository.IRepository.CheckoutObject()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a26b2fb935f0fd74a479231085029ce86',1,'Tgstation.Server.Host.Components.Repository.Repository.CheckoutObject()']]], - ['checkoutprogresshandler_3055',['CheckoutProgressHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae8ee5ac2942a57e05ec5c7e238e75977',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['checkpagerisnotrunning_3056',['CheckPagerIsNotRunning',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3937a00c1b51549531faec1248595cf0',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['checkreleasesandapplyupdate_3057',['CheckReleasesAndApplyUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a136149ffd1e19c77776bf08ad6f019d8',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['checkrunwizard_3058',['CheckRunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a3b92be081e2beac876e749532a6d1d87',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['checksanity_3059',['CheckSanity',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a5307337e3bb84c45327e8a856b7f425f',1,'Tgstation::Server::Host::Server']]], - ['checksystemcompatibility_3060',['CheckSystemCompatibility',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ade02e9746380fbab6b087a74bd701dbe',1,'Tgstation.Server.Host.Components.InstanceFactory.CheckSystemCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a3e875f6dd7bf0458e6d54e0dcf7bfe44',1,'Tgstation.Server.Host.Components.InstanceManager.CheckSystemCompatibility()']]], - ['checkuserpassword_3061',['CheckUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a020220485dde96985ea6bfe224a85d89',1,'Tgstation.Server.Host.Security.CryptographySuite.CheckUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac23fd656dc42cf07e64a62844f8bcfbc',1,'Tgstation.Server.Host.Security.ICryptographySuite.CheckUserPassword()']]], - ['checkvalidname_3062',['CheckValidName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7d6d50ff837b991a62dd2664cc0577ad',1,'Tgstation::Server::Host::Controllers::UserController']]], - ['claimsinjector_3063',['ClaimsInjector',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a9308e0623ef273d2009436d144cbe5bb',1,'Tgstation::Server::Host::Security::ClaimsInjector']]], - ['clamp_3c_20tright_20_3e_3064',['Clamp< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a3ff2a4a6158c2a8f6264fabd88d8cdff',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['cleancache_3065',['CleanCache',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a26fd27ae8ad551f07cb655309bed6830',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.CleanCache()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad014a7849a1246dc316a9ac3d8a43d16',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.CleanCache()']]], - ['cleanjob_3066',['CleanJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#abc5644c8a944e0cebe2599d910f6df18',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['cleanunusedcompilejobs_3067',['CleanUnusedCompileJobs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a4bc1df0d137c1e026997a89262530182',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a1c5532c254d0eadf738379a4c0c33c62',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.CleanUnusedCompileJobs()']]], - ['cleanupfailedcompile_3068',['CleanupFailedCompile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae0e53f455a17d18db864b9b7896372c9',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['client_5fmessagereceived_3069',['Client_MessageReceived',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3866a830f4cedcfdc6b2d1ca7e87ab4d',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], - ['client_5fonchannelmessage_3070',['Client_OnChannelMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ad5b2c312d6d9703edbeb60825cfb1602',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['client_5fonquerymessage_3071',['Client_OnQueryMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6709ea88022cc7f1ed175e5f863e79c9',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['clientexception_3072',['ClientException',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a3f17ba166b12061604c4324017a8b82b',1,'Tgstation.Server.Client.ClientException.ClientException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#aa609a0cde59451054984705078125700',1,'Tgstation.Server.Client.ClientException.ClientException()'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a9195a6bc325e3df79e9ae9490c90a0a4',1,'Tgstation.Server.Client.ClientException.ClientException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a8864363a43d30e891b54cc46d75bdce4',1,'Tgstation.Server.Client.ClientException.ClientException(string message, Exception innerException)']]], - ['clone_3073',['Clone',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#ad1443ff74ddf28de61129c0c98e2abc2',1,'Tgstation.Server.Client.Components.IRepositoryClient.Clone()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a5e84a3b8d18e965718b2c37386c6aede',1,'Tgstation.Server.Client.Components.RepositoryClient.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a0a6ed81450e50013e2ec1bae65e5f8cb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ac40ab8e01d38e4283f2b108b6cf3d4e4',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a1cb40673b65fa830543c69461449953a',1,'Tgstation.Server.Host.Security.ISystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a59df57ef35247cd92739a0617e1b967c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aa3df6c34f2e2c1a5755b21595bc6f1a5',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Clone()']]], - ['clonemetadata_3074',['CloneMetadata',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#af41bc4f3fadb8aa31a7d2950f1906383',1,'Tgstation::Server::Api::Models::Instance']]], - ['clonerepository_3075',['CloneRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#af808580132ffdf6fdd6d35a02894489a',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad629e70450172a215353ac97029fd5ba',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneRepository()']]], - ['closehandle_3076',['CloseHandle',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a5cc6468cad981968d6edbeec40aea81e',1,'Tgstation::Server::Host::NativeMethods']]], - ['combinedtopicresponse_3077',['CombinedTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#aae9b5be94a1f68b17db56b3bdaf2fbbb',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], - ['commandfactory_3078',['CommandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac2c9597d5999233e2e8e138ea59f8808',1,'Tgstation::Server::Host::Components::Chat::Commands::CommandFactory']]], - ['compatible_3079',['Compatible',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a305abd5b6b16230fb32f779af0a07d61',1,'Tgstation::Server::Api::ApiHeaders']]], - ['compile_3080',['Compile',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af9d90085714117a3109d6f7af3fdc1cc',1,'Tgstation.Server.Client.Components.DreamMakerClient.Compile()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a548a8f4daed30ab49f77a23b1c125078',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Compile()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a6e1e847a00e2387bf4bd43522c64ddd0',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile()']]], - ['concatpath_3081',['ConcatPath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#abd68930642dbf40df272b35dc438312e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ConcatPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a286f4eb5c679683b7e519847a6c3574e',1,'Tgstation.Server.Host.IO.IIOManager.ConcatPath()']]], - ['configuration_3082',['Configuration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae5932bea40716ebcc3145ccfd2c48aa3',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['configurationclient_3083',['ConfigurationClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#aed092908af675dfdec16528492815010',1,'Tgstation::Server::Client::Components::ConfigurationClient']]], - ['configurationcontroller_3084',['ConfigurationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a9ed3e9d430a0a4dbe5b2a3e3298089ca',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], - ['configurationfile_3085',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a60002e47d604a7189fea03b3a4720787',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, directory, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a804b1608adc364d167bf1224e4490642',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, file ?? throw new ArgumentNullException(nameof(file)), instance.Id, cancellationToken)']]], - ['configure_3086',['Configure',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2c2b516c6696a0390b37c4983a52a235',1,'Tgstation.Server.Host.Core.Application.Configure()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a58ef7bff279e5663448d9c5e9fa81e89',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Configure()']]], - ['configurecontrolpanel_3087',['ConfigureControlPanel',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a4395ef504696978cdc743b50121456f7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configuredatabase_3088',['ConfigureDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a1deda504d8ba5d227a51c83564b72ca1',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configuregeneral_3089',['ConfigureGeneral',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae6f4a68f9543e70ef9b01c4f1088aa1b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configurehostedservice_3090',['ConfigureHostedService',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a1d6e849d4a69fe90f23f60aaeb2bc960',1,'Tgstation.Server.Host.Core.Application.ConfigureHostedService()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a03097b9f375ae721b318fc2aaf970b9b',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureHostedService()']]], - ['configurelogging_3091',['ConfigureLogging',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a95d031c71d5219c0d2327191b220311b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['configureservices_3092',['ConfigureServices',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2b610f9600937f97857f303dcfe41823',1,'Tgstation.Server.Host.Core.Application.ConfigureServices()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a1225384501e2dfd8dd509a1f96ea2fa6',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureServices()']]], - ['configurewith_3093',['ConfigureWith',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a7f6de62bd38ebbe07636d0157900a38e',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a3d07b96c19d7b70b69c4e8d946b7cced',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#aa805cd8652307d8a0a2995d745af8ace',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#ac5686cbb48dd4d5fae19a104daa4e6a9',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext.ConfigureWith()']]], - ['conflictexception_3094',['ConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a71a13b722965b9a2e3b0b0b667d59b54',1,'Tgstation.Server.Client.ConflictException.ConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a6f35d432dfaab891a7652e2fc636c258',1,'Tgstation.Server.Client.ConflictException.ConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a5577bc93af2abe799a86b0c383902ea2',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a08028d33db9e62104c77df9ef3f673af',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message, Exception innerException)']]], - ['connect_3095',['Connect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#aaa5c800b8dc532cb596ebd075e14e48e',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6329a704d61a9d05333408279b044d50',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a96305dc74c77224130e4067f19b59407',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connect()']]], - ['console_3096',['Console',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aba874ec794084e164acb19d73c7c1dee',1,'Tgstation::Server::Host::IO::Console']]], - ['convertapichatchannel_3097',['ConvertApiChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a30fce4a18499c3c89b4b153b9805ce85',1,'Tgstation::Server::Host::Controllers::ChatController']]], - ['copydirectory_3098',['CopyDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac24671c0d1ce1f6787304c5f4bcccf7c',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aab4ec78e2b2d66ad39642ed92a66250c',1,'Tgstation.Server.Host.IO.IIOManager.CopyDirectory()']]], - ['copydirectoryimpl_3099',['CopyDirectoryImpl',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a32ca1367eadecb45e671aa509f3ce058',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['copydmfilesto_3100',['CopyDMFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab1a680d6faed5978ce9cd0b7e4d9701b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CopyDMFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a0b26ca1668b405574bd7662965c7ebb7',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CopyDMFilesTo()']]], - ['copyfile_3101',['CopyFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac3523b10f3affcd57a6e94ba5297e8fb',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aff4f7354934126bbc9516b04bc882ef3',1,'Tgstation.Server.Host.IO.IIOManager.CopyFile()']]], - ['copyto_3102',['CopyTo',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ada48f9615977d839874139999fdd69ef',1,'Tgstation.Server.Host.Components.Repository.IRepository.CopyTo()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a09369ceb3b7c2c2562d546b9daebd42b',1,'Tgstation.Server.Host.Components.Repository.Repository.CopyTo()']]], - ['create_3103',['Create',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2683730461ef575dbaab18fb01a10162',1,'Tgstation.Server.Client.Components.ChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a781f11da2fc0bc852e57544872e2f47e',1,'Tgstation.Server.Client.Components.IChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a8f315515848f8b7397e71255fa1055c9',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#af62bfee4e1cdca8a216bdade995a57b7',1,'Tgstation.Server.Client.Components.InstanceUserClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#a60a4f54b4b6cb61d3c0054b9b7a04604',1,'Tgstation.Server.Client.IUsersClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a68a9c4aea0859ef158ef8146e22d0fd6',1,'Tgstation.Server.Client.UsersClient.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a38a75a3f14b37983b1e5a76f2186e0ad',1,'Tgstation.Server.Host.Controllers.ChatController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a111121fa22f2648803f8f890c8a6305b',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a5fe34841f9b648b042096e51dba7be4e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a7231f4980bd98c9a033e805c90e92c95',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8712ba6603139064d68520e16c076901',1,'Tgstation.Server.Host.Controllers.InstanceController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a3a26d7b7a1b8c8c8c0ade33893f24b09',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a30a5b00625419334b1d51ae4a51aebda',1,'Tgstation.Server.Host.Controllers.RepositoryController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a99457477cad4b6adcedbba47d939f005',1,'Tgstation.Server.Host.Controllers.UserController.Create()']]], - ['create_3c_20tbody_2c_20tresult_20_3e_3104',['Create< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a73701939b0af1ee33b46c931829200fc',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ab5fc54acd429e50a254fccaf23e52299',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0448d3803d9f45d2e67295cef2096174',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a726cb2cf80d2499c3e6ff8ae67bbc0ed',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], - ['create_3c_20tresult_20_3e_3105',['Create< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a5c7201add0fadb2be2851aa749a0c3c6',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a70d6c289a7e07426ff72c36eb2502819',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ac4bbf7c3cc9ff87beda2b13f018a25f5',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a16d32f00e49bed861bcbd1c6c9325727',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], - ['createapiclient_3106',['CreateApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html#a953819c1f71266c5d8657a8222afe2d1',1,'Tgstation.Server.Client.ApiClientFactory.CreateApiClient()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html#a26c11e29c0d4c3e2bded15672ecd4cf3',1,'Tgstation.Server.Client.IApiClientFactory.CreateApiClient()']]], - ['createauthenticationcontext_3107',['CreateAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a2d25109494770497244333f385bd5d7e',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CreateAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6ed924f10ee271ccc8d2ea840c095e23',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CreateAuthenticationContext()']]], - ['createbaseclient_3108',['CreateBaseClient',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a0d2033f1157b71089477c1383ed77e09',1,'Tgstation::Server::Host::Core::GitHubClientFactory']]], - ['createchatmanager_3109',['CreateChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#ab7cb1f1ac63ad00a080ec4cb65b03ac6',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.CreateChatManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html#a2da119ff14c5553f07a8e0c3b3d43755',1,'Tgstation.Server.Host.Components.Chat.IChatManagerFactory.CreateChatManager()']]], - ['createclient_3110',['CreateClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a89d0d8409ead36832135461bb544ad09',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aad7c5289f672bb2598084276d583a1f9',1,'Tgstation.Server.Client.InstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#ab32f8e03603c878ebc0affdc144facd0',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#aa2f86d385b449ccf9b4d9011c0479e34',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient(string accessToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9043597fb0563f7fb0ed751819aa7525',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9b084c659f289f370933fe1b53e55ce9',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient(string accessToken)']]], - ['createconnection_3111',['CreateConnection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html#abce25a599c920bf792f33fcc352f99b3',1,'Tgstation.Server.Host.Database.DatabaseConnectionFactory.CreateConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html#a0f383d25a87d76938ddafd924c5fa517',1,'Tgstation.Server.Host.Database.IDatabaseConnectionFactory.CreateConnection()']]], - ['createconnectionstringbuilder_3112',['CreateConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#af2e5b18a1f41b8c75c8504f745db9d92',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['created_3113',['Created',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae0fcee33c7b7341bc3bf0c0e66e1ebf4',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['createdatabasecontextoptions_3c_20tdatabasecontext_20_3e_3114',['CreateDatabaseContextOptions< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html#a45ce56300f6ce4d136326452c493353c',1,'Tgstation::Server::Host::Database::Design::DesignTimeDbContextFactoryHelpers']]], - ['createdbcontext_3115',['CreateDbContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html#a8c2173be2b6fa289a8bfcf8da59de797',1,'Tgstation.Server.Host.Database.Design.MySqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html#a36ff3f3ef52311c0fa45971cc3156bb1',1,'Tgstation.Server.Host.Database.Design.PostgresSqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html#a88c77d7409d55231d096416130531e93',1,'Tgstation.Server.Host.Database.Design.SqliteDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html#aff56794443746e5d8d0c08389d7cd8a5',1,'Tgstation.Server.Host.Database.Design.SqlServerDesignTimeDbContextFactory.CreateDbContext()']]], - ['createdefaultinstance_3116',['CreateDefaultInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8bf721ab3f71056d9e5556b1b6c438de',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['createdefaultserverfactory_3117',['CreateDefaultServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a6720ad4775ff4751c0d2e00b36f0c31f',1,'Tgstation::Server::Host::Core::Application']]], - ['createdirectory_3118',['CreateDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#ad3f4cf594c24523ba3717b926843c078',1,'Tgstation.Server.Client.Components.ConfigurationClient.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab7b97489e1cb6307e417f6ecc22b9260',1,'Tgstation.Server.Client.Components.IConfigurationClient.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9e6d3a7af0e253142f6ea1fe932f6002',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aac9d5ed7fad37fc5f29295f4a3445449',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a35975e796c564e8b5dd5d4a601d0c2e3',1,'Tgstation.Server.Host.IO.DefaultIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a69aa1b9dbeb6af3744e568095c4376e7',1,'Tgstation.Server.Host.IO.IIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a87b99f131bf6b48d725561414d4ddfcb',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a595b31e7065ee0d3431903fa0ac55156',1,'Tgstation.Server.Host.IO.SynchronousIOManager.CreateDirectory()']]], - ['createdump_3119',['CreateDump',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ae3caf6b9a60ad0a3dc2f9019865f0a81',1,'Tgstation.Server.Client.Components.DreamDaemonClient.CreateDump()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a48394b257252091cbcd25caa49891fa5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27cbf6cebc4f18d796bc0e0a77c5d755',1,'Tgstation.Server.Host.Components.Session.SessionController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a67f97ee77ae892e162173be45d7522f7',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad8489bee0d96bcaf87eba19adee17149',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a9131baefd94f4bf123ef1901cb37565e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#acf8d9dfdf49269e33dd78e634b741620',1,'Tgstation.Server.Host.System.IProcessBase.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad576ba0ef666881ed6059180a0522a09',1,'Tgstation.Server.Host.System.IProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#adb55624c50c7c2ac7fedb4c64737b0db',1,'Tgstation.Server.Host.System.PosixProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#add49679c161683221749ee9962b98f49',1,'Tgstation.Server.Host.System.Process.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a1f0c6b3671ac06b34d885c295d1971ee',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.CreateDump()']]], - ['createfromexistinghandle_3120',['CreateFromExistingHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ab8ce5d8354aea3fec89a1d7687acb877',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['createfromlogin_3121',['CreateFromLogin',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#a092382c5ce194b7f7cade97451a1e504',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromLogin()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a9002a789598c8fab690514d9dc9cfbcf',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromLogin()']]], - ['createfrompath_3122',['CreateFromPath',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a855673b50e2639242bea6d6770c39773',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateFromPath()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#aff825ad3b4e4f4de83285d3cf2281e7b',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateFromPath()']]], - ['createfromtoken_3123',['CreateFromToken',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#ada7a9fcb461c62ddb534a57e1d3791c7',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromToken()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#abc81fe410ef4bbf999e7531505cac7e1',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromToken()']]], - ['createinmemory_3124',['CreateInMemory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#af08df14e3a5e9e63b14a6d65cc47abd6',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateInMemory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ad04e55b87e2ea16c68210ce73a80cebd',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateInMemory()']]], - ['createinstance_3125',['CreateInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html#af404cbb63284897baafdeb6316d45293',1,'Tgstation.Server.Host.Components.IInstanceFactory.CreateInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a009ffff68f9d96d360cde0fefe4c8b5e',1,'Tgstation.Server.Host.Components.InstanceFactory.CreateInstance()']]], - ['createorattach_3126',['CreateOrAttach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#af937af9989159b8d9336cffa4f3b578a',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateOrAttach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a1a1428f9a34d1cec0fa1bc3fe6b8a3a8',1,'Tgstation.Server.Client.InstanceManagerClient.CreateOrAttach()']]], - ['createprovider_3127',['CreateProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html#a4250fc0dc09258c391507fbf29977758',1,'Tgstation.Server.Host.Components.Chat.Providers.IProviderFactory.CreateProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a52f360a24dd9085562ee7137ed0ea28d',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.CreateProvider()']]], - ['createruntimeinformation_3128',['CreateRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a04f638e9803b002f5242947ec6491f6b',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['createserver_3129',['CreateServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a063542cb78195a507feb3c0e6921b01b',1,'Tgstation.Server.Host.IServerFactory.CreateServer()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a4234b15ede546c23f9b5d35bc5c8749b',1,'Tgstation.Server.Host.ServerFactory.CreateServer()']]], - ['createsymboliclink_3130',['CreateSymbolicLink',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html#a35bd8c53ef36c4a655e827750a40699c',1,'Tgstation.Server.Host.IO.ISymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html#ac487bf33d9a5821fb30bfd7b74915fbe',1,'Tgstation.Server.Host.IO.PosixSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html#a87a0b1b31b48f65e53e4b3b6f476a2c0',1,'Tgstation.Server.Host.IO.WindowsSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a668c437c860fb2eafcee04a1a2a613c9',1,'Tgstation.Server.Host.NativeMethods.CreateSymbolicLink()']]], - ['createsystemidentity_3131',['CreateSystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#adaf274d215700bf692b1c3964ff32103',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6dd83aca91cf43c7236afd22dc512b0a',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a8e2c85e4ed45d68065f86749afa4651d',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a4621a750f1d0592586d26323af215d93',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a5c140611a428b663c3a3f76623f825c2',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a24c82be81ba5cda6c975a931e8bfe6f1',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)']]], - ['createtoken_3132',['CreateToken',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afe4c43b884ebd0e9c4b60e39d4e1c162',1,'Tgstation.Server.Host.Controllers.HomeController.CreateToken()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a57edffc2d8c63352fbf4ebd0b5991b45',1,'Tgstation.Server.Host.Security.ITokenFactory.CreateToken()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a17610f96f7e87136d957e8ba3c1f5d4a',1,'Tgstation.Server.Host.Security.TokenFactory.CreateToken()']]], - ['createtopicclient_3133',['CreateTopicClient',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html#a950569e357f1d6e51722d4894792c555',1,'Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a4e452e6c92e14627b7194cd33d11b6ed',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.CreateTopicClient()']]], - ['createtrackingcontext_3134',['CreateTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aadf2ea0ffdbf567ac24cc5c45f6f66b6',1,'Tgstation.Server.Host.Components.Chat.ChatManager.CreateTrackingContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a5b3b4e9ab7d03bd8020ee9dfa9bebbbe',1,'Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext()']]], - ['createwatchdog_3135',['CreateWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html#a4e0ea5f477f968e4f64902e6ad1ae032',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#a55c35d3407232ef352cedfed89dfdda4',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a7417b9b6823272f9c4452dfd818ed804',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#ac7577c15b657467c12af75e719feccc6',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.CreateWatchdog()'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html#a4610f9c60c131dab81a56aa23abdfbb8',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html#ae25446ee2a7bb19d9208695d18621914',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory.CreateWatchdog()']]], - ['cryptographysuite_3136',['CryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a57c7a5016e948842f6d52697f806614b',1,'Tgstation::Server::Host::Security::CryptographySuite']]] + ['cachesystemidentity_3105',['CacheSystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#acbbad46e8e5ac5cae600edce613f9cf5',1,'Tgstation.Server.Host.Security.IdentityCache.CacheSystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#a40f3695ec18d3df1bea7b230b75dabbb',1,'Tgstation.Server.Host.Security.IIdentityCache.CacheSystemIdentity()']]], + ['calculateexpecteddeploymenttime_3106',['CalculateExpectedDeploymentTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2365f1b05cb4cea83027efaea9580f83',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['canapplywithoutreboot_3107',['CanApplyWithoutReboot',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#ad1c56d38c1a48c110765c99a72619e13',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['cancel_3108',['Cancel',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a060a731a0c221146d5d81d7890e1cd42',1,'Tgstation.Server.Client.Components.IJobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a50456aace539b2c54afc8f8218278c49',1,'Tgstation.Server.Client.Components.JobsClient.Cancel()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a674342b0dc8050c0ab42a299aa4a7762',1,'Tgstation.Server.Host.Jobs.JobHandler.Cancel()']]], + ['canceljob_3109',['CancelJob',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#a02ff92fbece1f77bc9d34216d1ffa7ce',1,'Tgstation.Server.Host.Jobs.IJobManager.CancelJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#afab851d16b36dadeb5d7afdc40e7a740',1,'Tgstation.Server.Host.Jobs.JobManager.CancelJob()']]], + ['canconvert_3110',['CanConvert',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_bool_converter.html#a06799ee353b6539298ae9157a94447d7',1,'Tgstation.Server.Host.Components.Interop.Converters.BoolConverter.CanConvert()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters_1_1_version_converter.html#a4179b3dce37ebd3e673c0d3326c08624',1,'Tgstation.Server.Host.Components.Interop.Converters.VersionConverter.CanConvert()']]], + ['canonicalizename_3111',['CanonicalizeName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a4b139051d0d6db501e37590fa1eabf16',1,'Tgstation::Server::Host::Models::User']]], + ['changechannels_3112',['ChangeChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a29ba2842fd3cf2c5532acc07966eb1a9',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#ab9ba3beba537518b1f68ca31ae9dea25',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeChannels()']]], + ['changesettings_3113',['ChangeSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0821ad5d467ff2ea9216eadd33273104',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a2ae0c2190435e3c65914eaec63dd2db6',1,'Tgstation.Server.Host.Components.Chat.IChatManager.ChangeSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afab0aa088dc77e54e978c730645d8d00',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ChangeSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a390fcde5ed6ed30d6e5b5b2ebc8273dc',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ChangeSettings()']]], + ['changeversion_3114',['ChangeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a431f006cfe5e1d2ab2efb346d6556705',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ChangeVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#af3559b76b9c7faff35cd8eadaac75c0b',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ChangeVersion()']]], + ['chatbot_3115',['ChatBot',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aa8342c38e2ed6d4290be11a1dfd906d5',1,'Tgstation.Server.Client.Components.ChatBotsClient.ChatBot(Routes.Chat, settings ?? throw new ArgumentNullException(nameof(settings)), instance.Id, cancellationToken)']]], + ['chatbotsclient_3116',['ChatBotsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a322c40d10b0b8b65802c71a899a555d9',1,'Tgstation::Server::Client::Components::ChatBotsClient']]], + ['chatcommand_3117',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a1737c025e35743a0f2be00fba48521c4',1,'Tgstation::Server::Host::Components::Interop::Topic::ChatCommand']]], + ['chatcontroller_3118',['ChatController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#aeb8a6d7b46b068d26e685b7b22e78cb4',1,'Tgstation::Server::Host::Controllers::ChatController']]], + ['chatmanager_3119',['ChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae0a718f1cae22fe94e31e1c6103ddbed',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['chatmanagerfactory_3120',['ChatManagerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a664778f38f54960c97b79cb3bcd97651',1,'Tgstation::Server::Host::Components::Chat::ChatManagerFactory']]], + ['chattrackingcontext_3121',['ChatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a930d4047b0c065fa25b3a149bb541648',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], + ['chatupdate_3122',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#aad6730fe7ca3dfdf9b037bdc07a97c91',1,'Tgstation::Server::Host::Components::Interop::ChatUpdate']]], + ['checkavailable_3123',['CheckAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a6556df91ef25960c814f583b71996a9f',1,'Tgstation::Server::Host::IO::Console']]], + ['checkcompatibility_3124',['CheckCompatibility',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3c5df000903796a032fe6a4cafdc8a73',1,'Tgstation.Server.Api.ApiHeaders.CheckCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0dff52d3ac52e100397122e63e1337ee',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.CheckCompatibility()']]], + ['checkdisposed_3125',['CheckDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab0660ae6440a38aa85f8473a8220533a',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['checkexceptionpropagation_3126',['CheckExceptionPropagation',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab5cd879190ac2d9764b9849eb31985f8',1,'Tgstation::Server::Host::Server']]], + ['checkgetjob_3127',['CheckGetJob',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ae129c81a2e2ad2ecf8838e03a5a7db07',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['checklaunchresult_3128',['CheckLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a96ad9302ae812f4ba3bbbaed2f7adbd0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['checkout_3129',['Checkout',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a193582291ff43c0841b5c75f77f50fcb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Checkout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a6bd416c14953fd88906f93050249e705',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Checkout()']]], + ['checkoutobject_3130',['CheckoutObject',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab069c1ee11c48955e51956ff31a0d0fc',1,'Tgstation.Server.Host.Components.Repository.IRepository.CheckoutObject()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a26b2fb935f0fd74a479231085029ce86',1,'Tgstation.Server.Host.Components.Repository.Repository.CheckoutObject()']]], + ['checkoutprogresshandler_3131',['CheckoutProgressHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae8ee5ac2942a57e05ec5c7e238e75977',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['checkpagerisnotrunning_3132',['CheckPagerIsNotRunning',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3937a00c1b51549531faec1248595cf0',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['checkreleasesandapplyupdate_3133',['CheckReleasesAndApplyUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a136149ffd1e19c77776bf08ad6f019d8',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['checkrunwizard_3134',['CheckRunWizard',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a3b92be081e2beac876e749532a6d1d87',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['checksanity_3135',['CheckSanity',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a5307337e3bb84c45327e8a856b7f425f',1,'Tgstation::Server::Host::Server']]], + ['checksystemcompatibility_3136',['CheckSystemCompatibility',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ade02e9746380fbab6b087a74bd701dbe',1,'Tgstation.Server.Host.Components.InstanceFactory.CheckSystemCompatibility()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a3e875f6dd7bf0458e6d54e0dcf7bfe44',1,'Tgstation.Server.Host.Components.InstanceManager.CheckSystemCompatibility()']]], + ['checkuserpassword_3137',['CheckUserPassword',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a020220485dde96985ea6bfe224a85d89',1,'Tgstation.Server.Host.Security.CryptographySuite.CheckUserPassword()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac23fd656dc42cf07e64a62844f8bcfbc',1,'Tgstation.Server.Host.Security.ICryptographySuite.CheckUserPassword()']]], + ['checkvalidname_3138',['CheckValidName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7d6d50ff837b991a62dd2664cc0577ad',1,'Tgstation::Server::Host::Controllers::UserController']]], + ['claimsinjector_3139',['ClaimsInjector',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a9308e0623ef273d2009436d144cbe5bb',1,'Tgstation::Server::Host::Security::ClaimsInjector']]], + ['clamp_3c_20tright_20_3e_3140',['Clamp< TRight >',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a3ff2a4a6158c2a8f6264fabd88d8cdff',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['cleancache_3141',['CleanCache',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a26fd27ae8ad551f07cb655309bed6830',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.CleanCache()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad014a7849a1246dc316a9ac3d8a43d16',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.CleanCache()']]], + ['cleanjob_3142',['CleanJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#abc5644c8a944e0cebe2599d910f6df18',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['cleanunusedcompilejobs_3143',['CleanUnusedCompileJobs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a4bc1df0d137c1e026997a89262530182',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.CleanUnusedCompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a1c5532c254d0eadf738379a4c0c33c62',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.CleanUnusedCompileJobs()']]], + ['cleanupfailedcompile_3144',['CleanupFailedCompile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa5f70760f3e069c36e2515cc2d68d9a8',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['client_5fmessagereceived_3145',['Client_MessageReceived',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3866a830f4cedcfdc6b2d1ca7e87ab4d',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], + ['client_5fonchannelmessage_3146',['Client_OnChannelMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ad5b2c312d6d9703edbeb60825cfb1602',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['client_5fonquerymessage_3147',['Client_OnQueryMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6709ea88022cc7f1ed175e5f863e79c9',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['clientexception_3148',['ClientException',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a3f17ba166b12061604c4324017a8b82b',1,'Tgstation.Server.Client.ClientException.ClientException(HttpResponseMessage responseMessage, string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#aa609a0cde59451054984705078125700',1,'Tgstation.Server.Client.ClientException.ClientException()'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a9195a6bc325e3df79e9ae9490c90a0a4',1,'Tgstation.Server.Client.ClientException.ClientException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#a8864363a43d30e891b54cc46d75bdce4',1,'Tgstation.Server.Client.ClientException.ClientException(string message, Exception innerException)']]], + ['clone_3149',['Clone',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#ad1443ff74ddf28de61129c0c98e2abc2',1,'Tgstation.Server.Client.Components.IRepositoryClient.Clone()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a5e84a3b8d18e965718b2c37386c6aede',1,'Tgstation.Server.Client.Components.RepositoryClient.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a0a6ed81450e50013e2ec1bae65e5f8cb',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ac40ab8e01d38e4283f2b108b6cf3d4e4',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.Clone()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a1cb40673b65fa830543c69461449953a',1,'Tgstation.Server.Host.Security.ISystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a59df57ef35247cd92739a0617e1b967c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Clone()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#aa3df6c34f2e2c1a5755b21595bc6f1a5',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Clone()']]], + ['clonemetadata_3150',['CloneMetadata',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#af41bc4f3fadb8aa31a7d2950f1906383',1,'Tgstation::Server::Api::Models::Instance']]], + ['clonerepository_3151',['CloneRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#af808580132ffdf6fdd6d35a02894489a',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad629e70450172a215353ac97029fd5ba',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneRepository()']]], + ['closehandle_3152',['CloseHandle',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a5cc6468cad981968d6edbeec40aea81e',1,'Tgstation::Server::Host::NativeMethods']]], + ['combinedtopicresponse_3153',['CombinedTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#aae9b5be94a1f68b17db56b3bdaf2fbbb',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], + ['commandfactory_3154',['CommandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac2c9597d5999233e2e8e138ea59f8808',1,'Tgstation::Server::Host::Components::Chat::Commands::CommandFactory']]], + ['compatible_3155',['Compatible',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a305abd5b6b16230fb32f779af0a07d61',1,'Tgstation::Server::Api::ApiHeaders']]], + ['compile_3156',['Compile',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af9d90085714117a3109d6f7af3fdc1cc',1,'Tgstation.Server.Client.Components.DreamMakerClient.Compile()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a548a8f4daed30ab49f77a23b1c125078',1,'Tgstation.Server.Client.Components.IDreamMakerClient.Compile()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a6e1e847a00e2387bf4bd43522c64ddd0',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.Compile()']]], + ['concatpath_3157',['ConcatPath',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#abd68930642dbf40df272b35dc438312e',1,'Tgstation.Server.Host.IO.DefaultIOManager.ConcatPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a286f4eb5c679683b7e519847a6c3574e',1,'Tgstation.Server.Host.IO.IIOManager.ConcatPath()']]], + ['configuration_3158',['Configuration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae5932bea40716ebcc3145ccfd2c48aa3',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['configurationclient_3159',['ConfigurationClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#aed092908af675dfdec16528492815010',1,'Tgstation::Server::Client::Components::ConfigurationClient']]], + ['configurationcontroller_3160',['ConfigurationController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a9ed3e9d430a0a4dbe5b2a3e3298089ca',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], + ['configurationfile_3161',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a60002e47d604a7189fea03b3a4720787',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, directory, instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a804b1608adc364d167bf1224e4490642',1,'Tgstation.Server.Client.Components.ConfigurationClient.ConfigurationFile(Routes.Configuration, file ?? throw new ArgumentNullException(nameof(file)), instance.Id, cancellationToken)']]], + ['configure_3162',['Configure',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2c2b516c6696a0390b37c4983a52a235',1,'Tgstation.Server.Host.Core.Application.Configure()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a58ef7bff279e5663448d9c5e9fa81e89',1,'Tgstation.Server.Host.Core.SwaggerConfiguration.Configure()']]], + ['configurecontrolpanel_3163',['ConfigureControlPanel',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a4395ef504696978cdc743b50121456f7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configuredatabase_3164',['ConfigureDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a1deda504d8ba5d227a51c83564b72ca1',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configuregeneral_3165',['ConfigureGeneral',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae6f4a68f9543e70ef9b01c4f1088aa1b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configurehostedservice_3166',['ConfigureHostedService',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a1d6e849d4a69fe90f23f60aaeb2bc960',1,'Tgstation.Server.Host.Core.Application.ConfigureHostedService()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a03097b9f375ae721b318fc2aaf970b9b',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureHostedService()']]], + ['configurelogging_3167',['ConfigureLogging',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a95d031c71d5219c0d2327191b220311b',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['configureservices_3168',['ConfigureServices',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a2b610f9600937f97857f303dcfe41823',1,'Tgstation.Server.Host.Core.Application.ConfigureServices()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a1225384501e2dfd8dd509a1f96ea2fa6',1,'Tgstation.Server.Host.Setup.SetupApplication.ConfigureServices()']]], + ['configurewith_3169',['ConfigureWith',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a7f6de62bd38ebbe07636d0157900a38e',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a3d07b96c19d7b70b69c4e8d946b7cced',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#aa805cd8652307d8a0a2995d745af8ace',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.ConfigureWith()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sql_server_database_context.html#ac5686cbb48dd4d5fae19a104daa4e6a9',1,'Tgstation.Server.Host.Database.SqlServerDatabaseContext.ConfigureWith()']]], + ['conflictexception_3170',['ConflictException',['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a71a13b722965b9a2e3b0b0b667d59b54',1,'Tgstation.Server.Client.ConflictException.ConflictException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a6f35d432dfaab891a7652e2fc636c258',1,'Tgstation.Server.Client.ConflictException.ConflictException()'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a5577bc93af2abe799a86b0c383902ea2',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_conflict_exception.html#a08028d33db9e62104c77df9ef3f673af',1,'Tgstation.Server.Client.ConflictException.ConflictException(string message, Exception innerException)']]], + ['connect_3171',['Connect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#aaa5c800b8dc532cb596ebd075e14e48e',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6329a704d61a9d05333408279b044d50',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a96305dc74c77224130e4067f19b59407',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connect()']]], + ['console_3172',['Console',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#aba874ec794084e164acb19d73c7c1dee',1,'Tgstation::Server::Host::IO::Console']]], + ['convertapichatchannel_3173',['ConvertApiChatChannel',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a30fce4a18499c3c89b4b153b9805ce85',1,'Tgstation::Server::Host::Controllers::ChatController']]], + ['copydirectory_3174',['CopyDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac24671c0d1ce1f6787304c5f4bcccf7c',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aab4ec78e2b2d66ad39642ed92a66250c',1,'Tgstation.Server.Host.IO.IIOManager.CopyDirectory()']]], + ['copydirectoryimpl_3175',['CopyDirectoryImpl',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a32ca1367eadecb45e671aa509f3ce058',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['copydmfilesto_3176',['CopyDMFilesTo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab1a680d6faed5978ce9cd0b7e4d9701b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CopyDMFilesTo()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a0b26ca1668b405574bd7662965c7ebb7',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CopyDMFilesTo()']]], + ['copyfile_3177',['CopyFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac3523b10f3affcd57a6e94ba5297e8fb',1,'Tgstation.Server.Host.IO.DefaultIOManager.CopyFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aff4f7354934126bbc9516b04bc882ef3',1,'Tgstation.Server.Host.IO.IIOManager.CopyFile()']]], + ['copyto_3178',['CopyTo',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ada48f9615977d839874139999fdd69ef',1,'Tgstation.Server.Host.Components.Repository.IRepository.CopyTo()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a09369ceb3b7c2c2562d546b9daebd42b',1,'Tgstation.Server.Host.Components.Repository.Repository.CopyTo()']]], + ['create_3179',['Create',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2683730461ef575dbaab18fb01a10162',1,'Tgstation.Server.Client.Components.ChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a781f11da2fc0bc852e57544872e2f47e',1,'Tgstation.Server.Client.Components.IChatBotsClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a8f315515848f8b7397e71255fa1055c9',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#af62bfee4e1cdca8a216bdade995a57b7',1,'Tgstation.Server.Client.Components.InstanceUserClient.Create()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#a60a4f54b4b6cb61d3c0054b9b7a04604',1,'Tgstation.Server.Client.IUsersClient.Create()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a68a9c4aea0859ef158ef8146e22d0fd6',1,'Tgstation.Server.Client.UsersClient.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a38a75a3f14b37983b1e5a76f2186e0ad',1,'Tgstation.Server.Host.Controllers.ChatController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a111121fa22f2648803f8f890c8a6305b',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a5fe34841f9b648b042096e51dba7be4e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a7231f4980bd98c9a033e805c90e92c95',1,'Tgstation.Server.Host.Controllers.DreamMakerController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8712ba6603139064d68520e16c076901',1,'Tgstation.Server.Host.Controllers.InstanceController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a3a26d7b7a1b8c8c8c0ade33893f24b09',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a30a5b00625419334b1d51ae4a51aebda',1,'Tgstation.Server.Host.Controllers.RepositoryController.Create()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a99457477cad4b6adcedbba47d939f005',1,'Tgstation.Server.Host.Controllers.UserController.Create()']]], + ['create_3c_20tbody_2c_20tresult_20_3e_3180',['Create< TBody, TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a73701939b0af1ee33b46c931829200fc',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ab5fc54acd429e50a254fccaf23e52299',1,'Tgstation.Server.Client.ApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0448d3803d9f45d2e67295cef2096174',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a726cb2cf80d2499c3e6ff8ae67bbc0ed',1,'Tgstation.Server.Client.IApiClient.Create< TBody, TResult >(string route, TBody body, long instanceId, CancellationToken cancellationToken)']]], + ['create_3c_20tresult_20_3e_3181',['Create< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a5c7201add0fadb2be2851aa749a0c3c6',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a70d6c289a7e07426ff72c36eb2502819',1,'Tgstation.Server.Client.ApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ac4bbf7c3cc9ff87beda2b13f018a25f5',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a16d32f00e49bed861bcbd1c6c9325727',1,'Tgstation.Server.Client.IApiClient.Create< TResult >(string route, long instanceId, CancellationToken cancellationToken)']]], + ['createapiclient_3182',['CreateApiClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client_factory.html#a953819c1f71266c5d8657a8222afe2d1',1,'Tgstation.Server.Client.ApiClientFactory.CreateApiClient()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client_factory.html#a26c11e29c0d4c3e2bded15672ecd4cf3',1,'Tgstation.Server.Client.IApiClientFactory.CreateApiClient()']]], + ['createauthenticationcontext_3183',['CreateAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a2d25109494770497244333f385bd5d7e',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CreateAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6ed924f10ee271ccc8d2ea840c095e23',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CreateAuthenticationContext()']]], + ['createbaseclient_3184',['CreateBaseClient',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a0d2033f1157b71089477c1383ed77e09',1,'Tgstation::Server::Host::Core::GitHubClientFactory']]], + ['createchatmanager_3185',['CreateChatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#ab7cb1f1ac63ad00a080ec4cb65b03ac6',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.CreateChatManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager_factory.html#a2da119ff14c5553f07a8e0c3b3d43755',1,'Tgstation.Server.Host.Components.Chat.IChatManagerFactory.CreateChatManager()']]], + ['createclient_3186',['CreateClient',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a89d0d8409ead36832135461bb544ad09',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#aad7c5289f672bb2598084276d583a1f9',1,'Tgstation.Server.Client.InstanceManagerClient.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#ab32f8e03603c878ebc0affdc144facd0',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#aa2f86d385b449ccf9b4d9011c0479e34',1,'Tgstation.Server.Host.Core.GitHubClientFactory.CreateClient(string accessToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9043597fb0563f7fb0ed751819aa7525',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_git_hub_client_factory.html#a9b084c659f289f370933fe1b53e55ce9',1,'Tgstation.Server.Host.Core.IGitHubClientFactory.CreateClient(string accessToken)']]], + ['createconnection_3187',['CreateConnection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_connection_factory.html#abce25a599c920bf792f33fcc352f99b3',1,'Tgstation.Server.Host.Database.DatabaseConnectionFactory.CreateConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_connection_factory.html#a0f383d25a87d76938ddafd924c5fa517',1,'Tgstation.Server.Host.Database.IDatabaseConnectionFactory.CreateConnection()']]], + ['createconnectionstringbuilder_3188',['CreateConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#af2e5b18a1f41b8c75c8504f745db9d92',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['created_3189',['Created',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae0fcee33c7b7341bc3bf0c0e66e1ebf4',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['createdatabasecontextoptions_3c_20tdatabasecontext_20_3e_3190',['CreateDatabaseContextOptions< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_design_time_db_context_factory_helpers.html#a45ce56300f6ce4d136326452c493353c',1,'Tgstation::Server::Host::Database::Design::DesignTimeDbContextFactoryHelpers']]], + ['createdbcontext_3191',['CreateDbContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_my_sql_design_time_db_context_factory.html#a8c2173be2b6fa289a8bfcf8da59de797',1,'Tgstation.Server.Host.Database.Design.MySqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_postgres_sql_design_time_db_context_factory.html#a36ff3f3ef52311c0fa45971cc3156bb1',1,'Tgstation.Server.Host.Database.Design.PostgresSqlDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sqlite_design_time_db_context_factory.html#a88c77d7409d55231d096416130531e93',1,'Tgstation.Server.Host.Database.Design.SqliteDesignTimeDbContextFactory.CreateDbContext()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_design_1_1_sql_server_design_time_db_context_factory.html#aff56794443746e5d8d0c08389d7cd8a5',1,'Tgstation.Server.Host.Database.Design.SqlServerDesignTimeDbContextFactory.CreateDbContext()']]], + ['createdefaultinstance_3192',['CreateDefaultInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8bf721ab3f71056d9e5556b1b6c438de',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['createdefaultserverfactory_3193',['CreateDefaultServerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a6720ad4775ff4751c0d2e00b36f0c31f',1,'Tgstation::Server::Host::Core::Application']]], + ['createdirectory_3194',['CreateDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#ad3f4cf594c24523ba3717b926843c078',1,'Tgstation.Server.Client.Components.ConfigurationClient.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab7b97489e1cb6307e417f6ecc22b9260',1,'Tgstation.Server.Client.Components.IConfigurationClient.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9e6d3a7af0e253142f6ea1fe932f6002',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#aac9d5ed7fad37fc5f29295f4a3445449',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a35975e796c564e8b5dd5d4a601d0c2e3',1,'Tgstation.Server.Host.IO.DefaultIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a69aa1b9dbeb6af3744e568095c4376e7',1,'Tgstation.Server.Host.IO.IIOManager.CreateDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a87b99f131bf6b48d725561414d4ddfcb',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.CreateDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a595b31e7065ee0d3431903fa0ac55156',1,'Tgstation.Server.Host.IO.SynchronousIOManager.CreateDirectory()']]], + ['createdump_3195',['CreateDump',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ae3caf6b9a60ad0a3dc2f9019865f0a81',1,'Tgstation.Server.Client.Components.DreamDaemonClient.CreateDump()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_daemon_client.html#a48394b257252091cbcd25caa49891fa5',1,'Tgstation.Server.Client.Components.IDreamDaemonClient.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27cbf6cebc4f18d796bc0e0a77c5d755',1,'Tgstation.Server.Host.Components.Session.SessionController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a67f97ee77ae892e162173be45d7522f7',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad8489bee0d96bcaf87eba19adee17149',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a9131baefd94f4bf123ef1901cb37565e',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#acf8d9dfdf49269e33dd78e634b741620',1,'Tgstation.Server.Host.System.IProcessBase.CreateDump()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#ad576ba0ef666881ed6059180a0522a09',1,'Tgstation.Server.Host.System.IProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#adb55624c50c7c2ac7fedb4c64737b0db',1,'Tgstation.Server.Host.System.PosixProcessFeatures.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#add49679c161683221749ee9962b98f49',1,'Tgstation.Server.Host.System.Process.CreateDump()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a1f0c6b3671ac06b34d885c295d1971ee',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.CreateDump()']]], + ['createfromexistinghandle_3196',['CreateFromExistingHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ab8ce5d8354aea3fec89a1d7687acb877',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['createfromlogin_3197',['CreateFromLogin',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#a092382c5ce194b7f7cade97451a1e504',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromLogin()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a9002a789598c8fab690514d9dc9cfbcf',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromLogin()']]], + ['createfrompath_3198',['CreateFromPath',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#a855673b50e2639242bea6d6770c39773',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateFromPath()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#aff825ad3b4e4f4de83285d3cf2281e7b',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateFromPath()']]], + ['createfromtoken_3199',['CreateFromToken',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client_factory.html#ada7a9fcb461c62ddb534a57e1d3791c7',1,'Tgstation.Server.Client.IServerClientFactory.CreateFromToken()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#abc81fe410ef4bbf999e7531505cac7e1',1,'Tgstation.Server.Client.ServerClientFactory.CreateFromToken()']]], + ['createinmemory_3200',['CreateInMemory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_repository_factory.html#af08df14e3a5e9e63b14a6d65cc47abd6',1,'Tgstation.Server.Host.Components.Repository.ILibGit2RepositoryFactory.CreateInMemory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#ad04e55b87e2ea16c68210ce73a80cebd',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.CreateInMemory()']]], + ['createinstance_3201',['CreateInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_factory.html#af404cbb63284897baafdeb6316d45293',1,'Tgstation.Server.Host.Components.IInstanceFactory.CreateInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a009ffff68f9d96d360cde0fefe4c8b5e',1,'Tgstation.Server.Host.Components.InstanceFactory.CreateInstance()']]], + ['createorattach_3202',['CreateOrAttach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#af937af9989159b8d9336cffa4f3b578a',1,'Tgstation.Server.Client.IInstanceManagerClient.CreateOrAttach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a1a1428f9a34d1cec0fa1bc3fe6b8a3a8',1,'Tgstation.Server.Client.InstanceManagerClient.CreateOrAttach()']]], + ['createprovider_3203',['CreateProvider',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider_factory.html#a4250fc0dc09258c391507fbf29977758',1,'Tgstation.Server.Host.Components.Chat.Providers.IProviderFactory.CreateProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a52f360a24dd9085562ee7137ed0ea28d',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.CreateProvider()']]], + ['createruntimeinformation_3204',['CreateRuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a04f638e9803b002f5242947ec6491f6b',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['createserver_3205',['CreateServer',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a063542cb78195a507feb3c0e6921b01b',1,'Tgstation.Server.Host.IServerFactory.CreateServer()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a4234b15ede546c23f9b5d35bc5c8749b',1,'Tgstation.Server.Host.ServerFactory.CreateServer()']]], + ['createsymboliclink_3206',['CreateSymbolicLink',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_symlink_factory.html#a35bd8c53ef36c4a655e827750a40699c',1,'Tgstation.Server.Host.IO.ISymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_symlink_factory.html#ac487bf33d9a5821fb30bfd7b74915fbe',1,'Tgstation.Server.Host.IO.PosixSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_symlink_factory.html#a87a0b1b31b48f65e53e4b3b6f476a2c0',1,'Tgstation.Server.Host.IO.WindowsSymlinkFactory.CreateSymbolicLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a668c437c860fb2eafcee04a1a2a613c9',1,'Tgstation.Server.Host.NativeMethods.CreateSymbolicLink()']]], + ['createsystemidentity_3207',['CreateSystemIdentity',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#adaf274d215700bf692b1c3964ff32103',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6dd83aca91cf43c7236afd22dc512b0a',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a8e2c85e4ed45d68065f86749afa4651d',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#a4621a750f1d0592586d26323af215d93',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a5c140611a428b663c3a3f76623f825c2',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(User user, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a24c82be81ba5cda6c975a931e8bfe6f1',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)']]], + ['createtoken_3208',['CreateToken',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afe4c43b884ebd0e9c4b60e39d4e1c162',1,'Tgstation.Server.Host.Controllers.HomeController.CreateToken()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a57edffc2d8c63352fbf4ebd0b5991b45',1,'Tgstation.Server.Host.Security.ITokenFactory.CreateToken()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a17610f96f7e87136d957e8ba3c1f5d4a',1,'Tgstation.Server.Host.Security.TokenFactory.CreateToken()']]], + ['createtopicclient_3209',['CreateTopicClient',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_topic_client_factory.html#a950569e357f1d6e51722d4894792c555',1,'Tgstation.Server.Host.Components.Session.ITopicClientFactory.CreateTopicClient()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a4e452e6c92e14627b7194cd33d11b6ed',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.CreateTopicClient()']]], + ['createtrackingcontext_3210',['CreateTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aadf2ea0ffdbf567ac24cc5c45f6f66b6',1,'Tgstation.Server.Host.Components.Chat.ChatManager.CreateTrackingContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a5b3b4e9ab7d03bd8020ee9dfa9bebbbe',1,'Tgstation.Server.Host.Components.Chat.IChatManager.CreateTrackingContext()']]], + ['createwatchdog_3211',['CreateWatchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog_factory.html#a5a7c5f02df9f603fd21cd61fc3ebaf3e',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#abadff6c7e09b1dca214723704bd82de4',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a92e3fcfa39c13aae369b838d18fd00d4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a8e2e376b000fa966434d010d2c9946e3',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdogFactory.CreateWatchdog()'],['../interface_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_i_watchdog_factory.html#a4610f9c60c131dab81a56aa23abdfbb8',1,'Tgstation.Server.Host.Watchdog.IWatchdogFactory.CreateWatchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog_factory.html#ae25446ee2a7bb19d9208695d18621914',1,'Tgstation.Server.Host.Watchdog.WatchdogFactory.CreateWatchdog()']]], + ['cryptographysuite_3212',['CryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a57c7a5016e948842f6d52697f806614b',1,'Tgstation::Server::Host::Security::CryptographySuite']]] ]; diff --git a/search/functions_3.html b/search/functions_3.html index e53b9d0112..d05d0d7277 100644 --- a/search/functions_3.html +++ b/search/functions_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_3.js b/search/functions_3.js index 3482590fb2..f9faaa4af5 100644 --- a/search/functions_3.js +++ b/search/functions_3.js @@ -1,44 +1,44 @@ var searchData= [ - ['databasecollection_3137',['DatabaseCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#ab45237330b1543809ec730ad8a5ba3af',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['databasecontext_3138',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a816a6a136cb720c30a89568a0d071a5b',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['databasecontextfactory_3139',['DatabaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#ac543a4e3bf61cec7ef0cee9abab7d0e4',1,'Tgstation::Server::Host::Database::DatabaseContextFactory']]], - ['databaseseeder_3140',['DatabaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aadb06f4dafe423e9545a4e123c5e8abd',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['delay_3141',['Delay',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html#a28ea9fb35caed002bf15a67b03d5e0c7',1,'Tgstation.Server.Host.Core.AsyncDelayer.Delay()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html#afab931ac159bc999fee1e7eda917c7d6',1,'Tgstation.Server.Host.Core.IAsyncDelayer.Delay()']]], - ['delete_3142',['Delete',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a79097c50707454b30e031a6cf53c1cca',1,'Tgstation.Server.Client.ApiClient.Delete(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ac4676e1e4197c8b3177738388a70db2e',1,'Tgstation.Server.Client.ApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af21f7f62a34e6486d979bf56f93ab522',1,'Tgstation.Server.Client.Components.ChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a9ce8f7309dd82e761f821939ad877036',1,'Tgstation.Server.Client.Components.IChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a1e57e5258ee0d519916cbf6e8452de12',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a66319c3cf70b1e17e7d03d00113680ef',1,'Tgstation.Server.Client.Components.InstanceUserClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a542817cc102394601ab78412d37f82ba',1,'Tgstation.Server.Client.Components.IRepositoryClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a53bf505d9df01bc1bccec11d00e44733',1,'Tgstation.Server.Client.Components.RepositoryClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a6954d79598a2d4498c99e201481dc6b1',1,'Tgstation.Server.Client.IApiClient.Delete(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a64cf5a4f7ea0ce4a99164906fcdfd19a',1,'Tgstation.Server.Client.IApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aacf3549e22bb38699d3226a156e3e0dc',1,'Tgstation.Server.Host.Controllers.AdministrationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a5c9497452013644a7b8b6d4ee09a65a3',1,'Tgstation.Server.Host.Controllers.ChatController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a70a6018d637cb3eb379b8949a4a754a8',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a42cbbc5eb5facf44f1d0df46664824f6',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a14134d386ac311c0f7a76b7ef312a2d6',1,'Tgstation.Server.Host.Controllers.InstanceController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a90a765f46e182acc2ce419f8787fcfa5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a1442deb8a2f3296b5125bb385aa3caf2',1,'Tgstation.Server.Host.Controllers.JobController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad5ffc737feb4385afff13146e336a910',1,'Tgstation.Server.Host.Controllers.RepositoryController.Delete()']]], - ['delete_3c_20tbody_20_3e_3143',['Delete< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a16602577e0ea7e639491f47873aa07c2',1,'Tgstation.Server.Client.ApiClient.Delete< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a59cd6ab3e15c7b5e35268a68e381dd5d',1,'Tgstation.Server.Client.IApiClient.Delete< TBody >()']]], - ['delete_3c_20tresult_20_3e_3144',['Delete< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afa6dc92d38b59a7a6a2e44126bb5ad50',1,'Tgstation.Server.Client.ApiClient.Delete< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a70767f3f66d4486d4025835ece18d9ef',1,'Tgstation.Server.Client.IApiClient.Delete< TResult >()']]], - ['deleteconnection_3145',['DeleteConnection',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae8f42e9fc59f0aa9d70de26a4b6600b7',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DeleteConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1593d7d3f8d4b3efe3412d6c96f6e411',1,'Tgstation.Server.Host.Components.Chat.IChatManager.DeleteConnection()']]], - ['deletedirectory_3146',['DeleteDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a79f673d1a6c8868b648c0c3393e34d27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a38c2d45d551a853c4a1545dcf1996063',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a1c0202582bb5f80ba212bf7cceb2bd6d',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad3e0dda4b7fbad4c77f48ba3b2681dc7',1,'Tgstation.Server.Host.IO.IIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad7db8df684e3820376d161b6ac89804f',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a238b441b58a9da1b2e2821f203b65deb',1,'Tgstation.Server.Host.IO.SynchronousIOManager.DeleteDirectory()']]], - ['deleteemptydirectory_3147',['DeleteEmptyDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a6b1c64f700e702c9944463c9cd7d4419',1,'Tgstation.Server.Client.Components.ConfigurationClient.DeleteEmptyDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab64268e03bd3451604bf4c4bdbbec2ba',1,'Tgstation.Server.Client.Components.IConfigurationClient.DeleteEmptyDirectory()']]], - ['deletefile_3148',['DeleteFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad75df660abbe0d645edc657cf9910a1a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6ca322ea63f5693487917c1ee71c707a',1,'Tgstation.Server.Host.IO.IIOManager.DeleteFile()']]], - ['deleterepository_3149',['DeleteRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a0476484a5f4909326dfd7edcf697716d',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.DeleteRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a48d21690a40164c4a11d81be94055395',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.DeleteRepository()']]], - ['deploymentprocess_3150',['DeploymentProcess',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab03690c5e8fd15c8d3f7c746a36a9f37',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DeploymentProcess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html#aeb470ac53fa295c9456606278c9f6e65',1,'Tgstation.Server.Host.Components.Deployment.IDreamMaker.DeploymentProcess()']]], - ['describe_3151',['Describe',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html#a786e167f94f9d7bcfcdcfe4be812e162',1,'Tgstation::Server::Api::Models::ErrorCodeExtensions']]], - ['detach_3152',['Detach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#abd45f73a94f3e25829be0e477c73caad',1,'Tgstation.Server.Client.IInstanceManagerClient.Detach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a9aaeff926049f5bc8c311fc67b4fb78c',1,'Tgstation.Server.Client.InstanceManagerClient.Detach()']]], - ['die_3153',['Die',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a2eb5bdeb76bf1fbfdb297219af3ede45',1,'Tgstation.Server.Host.Core.IServerControl.Die()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ae61fcfdb226cd0f5126e29ffb6fff403',1,'Tgstation.Server.Host.Server.Die()']]], - ['directory_3154',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a048dc25d07e09e17d7f697cf6ded2dd7',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], - ['directoryexists_3155',['DirectoryExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad1b0c2e2bdf35fa955cc62f13349f19a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DirectoryExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ae1f28b3b77349cbfbb9b3f9ba1271e5e',1,'Tgstation.Server.Host.IO.IIOManager.DirectoryExists()']]], - ['disconnect_3156',['Disconnect',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ae24ff61d2fb16b41675498d0d95b67d8',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disconnect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab77ee1149c17f06af44755f54aa19880',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disconnect()']]], - ['disconnectimpl_3157',['DisconnectImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ae4da9b25c89c74b4e2d70fdfb7f8c894',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ab7dc167a715c37ce3487b14e682a6b46',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a627edd03f216fa53e443b1901cf5599c',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisconnectImpl()']]], - ['discordconnectionstringbuilder_3158',['DiscordConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a6728e43a98a9f8a7e99cb4b286ae03af',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#acf0ae3d6a9370ce06e612d8edb6773e9',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder(string connectionString)']]], - ['discordprovider_3159',['DiscordProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a887f42d3b818cf7e637057a0939ed639',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], - ['dispose_3160',['Dispose',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ad4afd612c75a7240f3aa27b49520a1bf',1,'Tgstation.Server.Client.ApiClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a01a43b38e92d4c35f303db4d24a2d27a',1,'Tgstation.Server.Client.HttpClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#abcacb02b4b6734d065f599659914c2ff',1,'Tgstation.Server.Client.ServerClient.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#af8246eaaf2299ebea9af766cad757790',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ad943befa858b57706c8fdeac1c93a7bc',1,'Tgstation.Server.Host.Components.Byond.ByondManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac28dcfb947617ce11f16c9812e4a5a22',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a405ff7157fc650643ebdc42571740706',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a5f4170ba6cb22e8497e1774cfa61fed2',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a3dffaa0728d657493bc0e2f637db142c',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a7750549dee1e98a8d5a2299fcf8fbd87',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a606fe532cfc8b19526857ffc63517637',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a154c4115a2c116b7b3dd3410fa894d29',1,'Tgstation.Server.Host.Components.InstanceWrapper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#aeef0e0b995b4616afa59974f820a40b9',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a3ea44742a122a7d74046017a02f5ea08',1,'Tgstation.Server.Host.Components.Repository.Repository.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a61b0a56eced0f9e75057c0c9f17b5d1d',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a490ea3b8f33527e6b1e348346195503a',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a1a4d9a4d259d03ff3f69b2b061c2e5df',1,'Tgstation.Server.Host.Core.RestartRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a7a90d285258c8e67e5a351c6b8854537',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a4094b920d3ba4aa6f3620b1fff15672c',1,'Tgstation.Server.Host.IO.Console.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a6ae06f68e5a74aefeb5ac12f832efcfe',1,'Tgstation.Server.Host.Jobs.JobHandler.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a16e8a7081a33c07a98ac25749e8de832',1,'Tgstation.Server.Host.Jobs.JobManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a4a5a80952341c5a9e0f3a84e27734f8a',1,'Tgstation.Server.Host.Security.AuthenticationContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#accc9334a642e563e47c5308df2d5149a',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a8a7ab89f157f77d9424c642587fd0460',1,'Tgstation.Server.Host.Security.IdentityCache.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#abf1fccfffa19349bb551ffe64c364387',1,'Tgstation.Server.Host.Security.IdentityCacheObject.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#afcbcff9ad24bfd3aaf29984f0f78bb4c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a69861e38af0e65778b2e6e5692fd87a4',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a110b26835967f72e89837e6f47f4b1a1',1,'Tgstation.Server.Host.System.Process.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a1c17ac001c62907054e00cf6216aba78',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab96927cd0efef08c6926838bc238d45a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a75ee7501b3cb59e3e34c05f382380292',1,'Tgstation.Server.Host.Service.ServerService.Dispose()']]], - ['disposeandnullcontrollers_3161',['DisposeAndNullControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a875fe1589eb86e57a50a0e793b0d74f5',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['disposeandnullcontrollersimpl_3162',['DisposeAndNullControllersImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a269e152d2acb113d8fd5db064c098162',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a2f8ea066a8ae2408f1c86f828d7974f8',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a4fbabec855f7dc736b0bd76e6c311be4',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.DisposeAndNullControllersImpl()']]], - ['disposeasync_3163',['DisposeAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac0bd122a06d9a590adc983b3aedc7417',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ab650903107863653f1b637562f4813b4',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4fafe65b92ddf1b6fae01c5e479dce39',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afe2edd40c945bc526ccd5dfea7a062b1',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a923eeba6faee2b5573a1fa4bc37c2216',1,'Tgstation.Server.Host.Components.Instance.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a72f7ed3869c2397df900e5745be0befc',1,'Tgstation.Server.Host.Components.InstanceManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a6612e49a14544cad75292fba3798c1',1,'Tgstation.Server.Host.Components.Session.SessionController.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6f69db8c3ceae298404f5d8d5a7312b3',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAsync()']]], - ['dmbfactory_3164',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6792aff6d8b22ed0ac3f895676abbeab',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['dmbprovider_3165',['DmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad43adafe380a7db4160c975f67340126',1,'Tgstation::Server::Host::Components::Deployment::DmbProvider']]], - ['donotdeletethissession_3166',['DoNotDeleteThisSession',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae54582fd5e1f354554c9a0402eb72a2b',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DoNotDeleteThisSession()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aefcf67dd06a656e319e6d6e42a2aef81',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DoNotDeleteThisSession()']]], - ['down_3167',['Down',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#ae0f4cc2dd9b29f92f03b254d9411140b',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a1c0857d0051862bb633c92aa072e47bd',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a70b456f851dae6ac43d48e2170d975ce',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a9233da9df7bb2bbbf399a8225a77dfc5',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#a8c179cd8b856bf48a6ae1b5134ed5caf',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a5ce4a6670e01c07bc7e7f96e0834f201',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ad16a541bed641a4299ad34c836d35381',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a985c501dd70a3bde97d5664e32d6ec4f',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#ab73d9fedcdc7d6f8c1961984b60a6a74',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a65028283085928ece01cd4d4c43dd16c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ae8f00fc3a07d7375ce51b8f129369088',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#a75731f56be6e24f24ad159d275e16665',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a6d996f6780dc488d4cc7cb9d9804481e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a2ab30ec2c22da1e82035bd86885d0a19',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a0fd91dc305f512bb5c3d2a9d9bda2d6e',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a7913c39e263b705e6ed1ba52d4dad6ff',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#acf6df5f177b238f879d6cadc9c212c8f',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a08643345b848248c54f6391c441afca0',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7a360f89edab0412cbf2522317c503a7',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#ad60c496d7dec72affca9fac2b6131912',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ac0aa836ba342d7d6f1b775d354466f9a',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ac2a807dd610b05efff586abc8fc5838c',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#a69f92765673944b287c528ef67ac628f',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a051e7067eb3622929d13230cd270136a',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a46fc331b3a27bdc1a3220d16991fd676',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a2b882b3dc7c98709f515357624fd5c7d',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a7eb735e2cac5616d83e1fc523950a7a7',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a29c2467e5b26498fdc9be4daf32190e6',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#af59f624ac40ca4702a4ceee81043c686',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a6699ad0573ce9d6809adb8275aef1e4e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aecedd67bcc41584f5cc7ce3e43991e67',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a69db556c8f9816d01d3acfe308c32d0c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a452f5f223962a06f1f4aac9250a98f7a',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a00aad2d1a76c69ee46d01f608bec097b',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a79220430d6011f769ff13ab1eece5edd',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a91b4446c41d615ad2513be276114100e',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a75a8797a59d9d37f823c1e8141c48148',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a75b4c0c1b4dce285abf160ca70fa7ad0',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a65160a3abe4072ec1f844961f600b6da',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a71446c05ce0d2861a0a22e2a01f4d89d',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a0310dac83148c1460053a83c2b0a453b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#aeba16375a98e6314db22f48319e39d81',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4ecfa74d942bf845f49016ed7e0c01c9',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#ae854d9dd602db118b7711bf4a13b9b2a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aef19a599caab07370c84bf792cd002e8',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a3a5535279567ec208518789362b10040',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a23b83a4977a3869e6a5c1975586411f1',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a11dfa79c963f480b402307af39034789',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a835767cfae5418f6e289022d1d1ae7ac',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Down()']]], - ['downgrade_3168',['Downgrade',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ae30cd4eb76ba111b3fcd0e1b3622716d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Downgrade()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a83bee4040049ba8768dcb04ae7f50deb',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Downgrade()']]], - ['downloadfile_3169',['DownloadFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a509e05cc7905cda41869f57bee5c6c58',1,'Tgstation.Server.Host.IO.DefaultIOManager.DownloadFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a20647d9e4dd09b806e407cd5c8a23b9b',1,'Tgstation.Server.Host.IO.IIOManager.DownloadFile()']]], - ['downloadversion_3170',['DownloadVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#af3c14961e49ea0fcc923d75ae1eec19a',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DownloadVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a827552d8311f380aecac2fd75beecc52',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DownloadVersion()']]], - ['dreamdaemon_3171',['DreamDaemon',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab5eab4143b5b6250e72b4ea05b2a039c',1,'Tgstation::Server::Client::Components::DreamDaemonClient']]], - ['dreamdaemonclient_3172',['DreamDaemonClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a8bf0ad726b61e3dbc31a53c7ea0822c2',1,'Tgstation::Server::Client::Components::DreamDaemonClient']]], - ['dreamdaemoncontroller_3173',['DreamDaemonController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ad6d82fab816712a4c95163e0ee2a4d7d',1,'Tgstation::Server::Host::Controllers::DreamDaemonController']]], - ['dreammaker_3174',['DreamMaker',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a62edd66a221c9b7044bd068dcf7324d9',1,'Tgstation.Server.Client.Components.DreamMakerClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a5037defb980ec8375313a1fa4a684187',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DreamMaker()']]], - ['dreammakerclient_3175',['DreamMakerClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a04dd94462a3bb8aad7469c84d53f78a9',1,'Tgstation::Server::Client::Components::DreamMakerClient']]], - ['dreammakercontroller_3176',['DreamMakerController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a5434cff9c9fa15212f0630672f48de13',1,'Tgstation::Server::Host::Controllers::DreamMakerController']]], - ['drop_3177',['Drop',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#abd512a5dfbfbc3f64670a963ec808de5',1,'Tgstation.Server.Host.Database.DatabaseContext.Drop()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a6216e8a817ab6700a155699bb8013584',1,'Tgstation.Server.Host.Database.IDatabaseContext.Drop()']]] + ['databasecollection_3213',['DatabaseCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#ab45237330b1543809ec730ad8a5ba3af',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['databasecontext_3214',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a816a6a136cb720c30a89568a0d071a5b',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['databasecontextfactory_3215',['DatabaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#ac543a4e3bf61cec7ef0cee9abab7d0e4',1,'Tgstation::Server::Host::Database::DatabaseContextFactory']]], + ['databaseseeder_3216',['DatabaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aadb06f4dafe423e9545a4e123c5e8abd',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['delay_3217',['Delay',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_async_delayer.html#a28ea9fb35caed002bf15a67b03d5e0c7',1,'Tgstation.Server.Host.Core.AsyncDelayer.Delay()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_async_delayer.html#afab931ac159bc999fee1e7eda917c7d6',1,'Tgstation.Server.Host.Core.IAsyncDelayer.Delay()']]], + ['delete_3218',['Delete',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a79097c50707454b30e031a6cf53c1cca',1,'Tgstation.Server.Client.ApiClient.Delete(string route, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ac4676e1e4197c8b3177738388a70db2e',1,'Tgstation.Server.Client.ApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af21f7f62a34e6486d979bf56f93ab522',1,'Tgstation.Server.Client.Components.ChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#a9ce8f7309dd82e761f821939ad877036',1,'Tgstation.Server.Client.Components.IChatBotsClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#a1e57e5258ee0d519916cbf6e8452de12',1,'Tgstation.Server.Client.Components.IInstanceUserClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a66319c3cf70b1e17e7d03d00113680ef',1,'Tgstation.Server.Client.Components.InstanceUserClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_repository_client.html#a542817cc102394601ab78412d37f82ba',1,'Tgstation.Server.Client.Components.IRepositoryClient.Delete()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a53bf505d9df01bc1bccec11d00e44733',1,'Tgstation.Server.Client.Components.RepositoryClient.Delete()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a6954d79598a2d4498c99e201481dc6b1',1,'Tgstation.Server.Client.IApiClient.Delete(string route, CancellationToken cancellationToken)'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a64cf5a4f7ea0ce4a99164906fcdfd19a',1,'Tgstation.Server.Client.IApiClient.Delete(string route, long instanceId, CancellationToken cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aacf3549e22bb38699d3226a156e3e0dc',1,'Tgstation.Server.Host.Controllers.AdministrationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a5c9497452013644a7b8b6d4ee09a65a3',1,'Tgstation.Server.Host.Controllers.ChatController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a70a6018d637cb3eb379b8949a4a754a8',1,'Tgstation.Server.Host.Controllers.ConfigurationController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#a42cbbc5eb5facf44f1d0df46664824f6',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a14134d386ac311c0f7a76b7ef312a2d6',1,'Tgstation.Server.Host.Controllers.InstanceController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a90a765f46e182acc2ce419f8787fcfa5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a1442deb8a2f3296b5125bb385aa3caf2',1,'Tgstation.Server.Host.Controllers.JobController.Delete()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad5ffc737feb4385afff13146e336a910',1,'Tgstation.Server.Host.Controllers.RepositoryController.Delete()']]], + ['delete_3c_20tbody_20_3e_3219',['Delete< TBody >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a16602577e0ea7e639491f47873aa07c2',1,'Tgstation.Server.Client.ApiClient.Delete< TBody >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a59cd6ab3e15c7b5e35268a68e381dd5d',1,'Tgstation.Server.Client.IApiClient.Delete< TBody >()']]], + ['delete_3c_20tresult_20_3e_3220',['Delete< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#afa6dc92d38b59a7a6a2e44126bb5ad50',1,'Tgstation.Server.Client.ApiClient.Delete< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a70767f3f66d4486d4025835ece18d9ef',1,'Tgstation.Server.Client.IApiClient.Delete< TResult >()']]], + ['deleteconnection_3221',['DeleteConnection',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae8f42e9fc59f0aa9d70de26a4b6600b7',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DeleteConnection()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_manager.html#a1593d7d3f8d4b3efe3412d6c96f6e411',1,'Tgstation.Server.Host.Components.Chat.IChatManager.DeleteConnection()']]], + ['deletedirectory_3222',['DeleteDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a79f673d1a6c8868b648c0c3393e34d27',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a38c2d45d551a853c4a1545dcf1996063',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a1c0202582bb5f80ba212bf7cceb2bd6d',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad3e0dda4b7fbad4c77f48ba3b2681dc7',1,'Tgstation.Server.Host.IO.IIOManager.DeleteDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad7db8df684e3820376d161b6ac89804f',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.DeleteDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a238b441b58a9da1b2e2821f203b65deb',1,'Tgstation.Server.Host.IO.SynchronousIOManager.DeleteDirectory()']]], + ['deleteemptydirectory_3223',['DeleteEmptyDirectory',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a6b1c64f700e702c9944463c9cd7d4419',1,'Tgstation.Server.Client.Components.ConfigurationClient.DeleteEmptyDirectory()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#ab64268e03bd3451604bf4c4bdbbec2ba',1,'Tgstation.Server.Client.Components.IConfigurationClient.DeleteEmptyDirectory()']]], + ['deletefile_3224',['DeleteFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad75df660abbe0d645edc657cf9910a1a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DeleteFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a6ca322ea63f5693487917c1ee71c707a',1,'Tgstation.Server.Host.IO.IIOManager.DeleteFile()']]], + ['deleterepository_3225',['DeleteRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a0476484a5f4909326dfd7edcf697716d',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.DeleteRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a48d21690a40164c4a11d81be94055395',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.DeleteRepository()']]], + ['deploymentprocess_3226',['DeploymentProcess',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab03690c5e8fd15c8d3f7c746a36a9f37',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DeploymentProcess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dream_maker.html#aeb470ac53fa295c9456606278c9f6e65',1,'Tgstation.Server.Host.Components.Deployment.IDreamMaker.DeploymentProcess()']]], + ['describe_3227',['Describe',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_code_extensions.html#a786e167f94f9d7bcfcdcfe4be812e162',1,'Tgstation::Server::Api::Models::ErrorCodeExtensions']]], + ['detach_3228',['Detach',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#abd45f73a94f3e25829be0e477c73caad',1,'Tgstation.Server.Client.IInstanceManagerClient.Detach()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a9aaeff926049f5bc8c311fc67b4fb78c',1,'Tgstation.Server.Client.InstanceManagerClient.Detach()']]], + ['die_3229',['Die',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a2eb5bdeb76bf1fbfdb297219af3ede45',1,'Tgstation.Server.Host.Core.IServerControl.Die()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ae61fcfdb226cd0f5126e29ffb6fff403',1,'Tgstation.Server.Host.Server.Die()']]], + ['directory_3230',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a048dc25d07e09e17d7f697cf6ded2dd7',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], + ['directoryexists_3231',['DirectoryExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ad1b0c2e2bdf35fa955cc62f13349f19a',1,'Tgstation.Server.Host.IO.DefaultIOManager.DirectoryExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ae1f28b3b77349cbfbb9b3f9ba1271e5e',1,'Tgstation.Server.Host.IO.IIOManager.DirectoryExists()']]], + ['disconnect_3232',['Disconnect',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ae24ff61d2fb16b41675498d0d95b67d8',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disconnect()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab77ee1149c17f06af44755f54aa19880',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disconnect()']]], + ['disconnectimpl_3233',['DisconnectImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ae4da9b25c89c74b4e2d70fdfb7f8c894',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ab7dc167a715c37ce3487b14e682a6b46',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisconnectImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a627edd03f216fa53e443b1901cf5599c',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisconnectImpl()']]], + ['discordconnectionstringbuilder_3234',['DiscordConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#a6728e43a98a9f8a7e99cb4b286ae03af',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#acf0ae3d6a9370ce06e612d8edb6773e9',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.DiscordConnectionStringBuilder(string connectionString)']]], + ['discordprovider_3235',['DiscordProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a887f42d3b818cf7e637057a0939ed639',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], + ['dispose_3236',['Dispose',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ad4afd612c75a7240f3aa27b49520a1bf',1,'Tgstation.Server.Client.ApiClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a01a43b38e92d4c35f303db4d24a2d27a',1,'Tgstation.Server.Client.HttpClient.Dispose()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#abcacb02b4b6734d065f599659914c2ff',1,'Tgstation.Server.Client.ServerClient.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#af8246eaaf2299ebea9af766cad757790',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ad943befa858b57706c8fdeac1c93a7bc',1,'Tgstation.Server.Host.Components.Byond.ByondManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac28dcfb947617ce11f16c9812e4a5a22',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a405ff7157fc650643ebdc42571740706',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a5f4170ba6cb22e8497e1774cfa61fed2',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a3dffaa0728d657493bc0e2f637db142c',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a7750549dee1e98a8d5a2299fcf8fbd87',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a606fe532cfc8b19526857ffc63517637',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a154c4115a2c116b7b3dd3410fa894d29',1,'Tgstation.Server.Host.Components.InstanceWrapper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#aeef0e0b995b4616afa59974f820a40b9',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a3ea44742a122a7d74046017a02f5ea08',1,'Tgstation.Server.Host.Components.Repository.Repository.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a61b0a56eced0f9e75057c0c9f17b5d1d',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a490ea3b8f33527e6b1e348346195503a',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a1a4d9a4d259d03ff3f69b2b061c2e5df',1,'Tgstation.Server.Host.Core.RestartRegistration.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a7a90d285258c8e67e5a351c6b8854537',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a4094b920d3ba4aa6f3620b1fff15672c',1,'Tgstation.Server.Host.IO.Console.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a6ae06f68e5a74aefeb5ac12f832efcfe',1,'Tgstation.Server.Host.Jobs.JobHandler.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a16e8a7081a33c07a98ac25749e8de832',1,'Tgstation.Server.Host.Jobs.JobManager.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a4a5a80952341c5a9e0f3a84e27734f8a',1,'Tgstation.Server.Host.Security.AuthenticationContext.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#accc9334a642e563e47c5308df2d5149a',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a8a7ab89f157f77d9424c642587fd0460',1,'Tgstation.Server.Host.Security.IdentityCache.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#abf1fccfffa19349bb551ffe64c364387',1,'Tgstation.Server.Host.Security.IdentityCacheObject.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#afcbcff9ad24bfd3aaf29984f0f78bb4c',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a69861e38af0e65778b2e6e5692fd87a4',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a110b26835967f72e89837e6f47f4b1a1',1,'Tgstation.Server.Host.System.Process.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a1c17ac001c62907054e00cf6216aba78',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab96927cd0efef08c6926838bc238d45a',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.Dispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a75ee7501b3cb59e3e34c05f382380292',1,'Tgstation.Server.Host.Service.ServerService.Dispose()']]], + ['disposeandnullcontrollers_3237',['DisposeAndNullControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a875fe1589eb86e57a50a0e793b0d74f5',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['disposeandnullcontrollersimpl_3238',['DisposeAndNullControllersImpl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a269e152d2acb113d8fd5db064c098162',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a2f8ea066a8ae2408f1c86f828d7974f8',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAndNullControllersImpl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a4fbabec855f7dc736b0bd76e6c311be4',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.DisposeAndNullControllersImpl()']]], + ['disposeasync_3239',['DisposeAsync',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac0bd122a06d9a590adc983b3aedc7417',1,'Tgstation.Server.Host.Components.Chat.ChatManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ab650903107863653f1b637562f4813b4',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4fafe65b92ddf1b6fae01c5e479dce39',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afe2edd40c945bc526ccd5dfea7a062b1',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a923eeba6faee2b5573a1fa4bc37c2216',1,'Tgstation.Server.Host.Components.Instance.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a72f7ed3869c2397df900e5745be0befc',1,'Tgstation.Server.Host.Components.InstanceManager.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a6612e49a14544cad75292fba3798c1',1,'Tgstation.Server.Host.Components.Session.SessionController.DisposeAsync()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6f69db8c3ceae298404f5d8d5a7312b3',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.DisposeAsync()']]], + ['dmbfactory_3240',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#acf5589df4ced5b0683e045870001fb18',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['dmbprovider_3241',['DmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad43adafe380a7db4160c975f67340126',1,'Tgstation::Server::Host::Components::Deployment::DmbProvider']]], + ['donotdeletethissession_3242',['DoNotDeleteThisSession',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae54582fd5e1f354554c9a0402eb72a2b',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DoNotDeleteThisSession()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aefcf67dd06a656e319e6d6e42a2aef81',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DoNotDeleteThisSession()']]], + ['down_3243',['Down',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_initial_create.html#ae0f4cc2dd9b29f92f03b254d9411140b',1,'Tgstation.Server.Host.Database.Migrations.MSInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_initial_create.html#a1c0857d0051862bb633c92aa072e47bd',1,'Tgstation.Server.Host.Database.Migrations.MYInitialCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_minimum_security.html#a70b456f851dae6ac43d48e2170d975ce',1,'Tgstation.Server.Host.Database.Migrations.MYAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_minimum_security.html#a9233da9df7bb2bbbf399a8225a77dfc5',1,'Tgstation.Server.Host.Database.Migrations.MSAddMinimumSecurity.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_nullable_and_foreign_key_cleanup.html#a8c179cd8b856bf48a6ae1b5134ed5caf',1,'Tgstation.Server.Host.Database.Migrations.MYNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_nullable_and_foreign_key_cleanup.html#a5ce4a6670e01c07bc7e7f96e0834f201',1,'Tgstation.Server.Host.Database.Migrations.MSNullableAndForeignKeyCleanup.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_reattach_compile_job_required.html#ad16a541bed641a4299ad34c836d35381',1,'Tgstation.Server.Host.Database.Migrations.MSReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_reattach_compile_job_required.html#a985c501dd70a3bde97d5664e32d6ec4f',1,'Tgstation.Server.Host.Database.Migrations.MYReattachCompileJobRequired.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_toggle_testmerge_comments.html#ab73d9fedcdc7d6f8c1961984b60a6a74',1,'Tgstation.Server.Host.Database.Migrations.MSToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_toggle_testmerge_comments.html#a65028283085928ece01cd4d4c43dd16c',1,'Tgstation.Server.Host.Database.Migrations.MYToggleTestmergeComments.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_rev_info_index.html#ae8f00fc3a07d7375ce51b8f129369088',1,'Tgstation.Server.Host.Database.Migrations.MSFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_rev_info_index.html#a75731f56be6e24f24ad159d275e16665',1,'Tgstation.Server.Host.Database.Migrations.MYFixRevInfoIndex.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_chat_bot_reconnection_interval.html#a6d996f6780dc488d4cc7cb9d9804481e',1,'Tgstation.Server.Host.Database.Migrations.MSAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_chat_bot_reconnection_interval.html#a2ab30ec2c22da1e82035bd86885d0a19',1,'Tgstation.Server.Host.Database.Migrations.MYAddChatBotReconnectionInterval.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_tons_of_validation.html#a0fd91dc305f512bb5c3d2a9d9bda2d6e',1,'Tgstation.Server.Host.Database.Migrations.MSTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_tons_of_validation.html#a7913c39e263b705e6ed1ba52d4dad6ff',1,'Tgstation.Server.Host.Database.Migrations.MYTonsOfValidation.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_limits_on_chat.html#acf6df5f177b238f879d6cadc9c212c8f',1,'Tgstation.Server.Host.Database.Migrations.MSLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_limits_on_chat.html#a08643345b848248c54f6391c441afca0',1,'Tgstation.Server.Host.Database.Migrations.MYLimitsOnChat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_compile_job_d_m_api_version.html#a7a360f89edab0412cbf2522317c503a7',1,'Tgstation.Server.Host.Database.Migrations.MSAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_compile_job_d_m_api_version.html#ad60c496d7dec72affca9fac2b6131912',1,'Tgstation.Server.Host.Database.Migrations.MYAddCompileJobDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_checkpoint_rebuild.html#ac0aa836ba342d7d6f1b775d354466f9a',1,'Tgstation.Server.Host.Database.Migrations.MYCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_checkpoint_rebuild.html#ac2a807dd610b05efff586abc8fc5838c',1,'Tgstation.Server.Host.Database.Migrations.MSCheckpointRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_kill_jsons_add_d_m_api_version.html#a69f92765673944b287c528ef67ac628f',1,'Tgstation.Server.Host.Database.Migrations.MSKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_kill_jsons_add_d_m_api_version.html#a051e7067eb3622929d13230cd270136a',1,'Tgstation.Server.Host.Database.Migrations.MYKillJsonsAddDMApiVersion.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_job_error_codes.html#a46fc331b3a27bdc1a3220d16991fd676',1,'Tgstation.Server.Host.Database.Migrations.MSAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_job_error_codes.html#a2b882b3dc7c98709f515357624fd5c7d',1,'Tgstation.Server.Host.Database.Migrations.MYAddJobErrorCodes.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_fix_cascading_delete.html#a7eb735e2cac5616d83e1fc523950a7a7',1,'Tgstation.Server.Host.Database.Migrations.MSFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_cascading_delete.html#a29c2467e5b26498fdc9be4daf32190e6',1,'Tgstation.Server.Host.Database.Migrations.MYFixCascadingDelete.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_rebuild.html#af59f624ac40ca4702a4ceee81043c686',1,'Tgstation.Server.Host.Database.Migrations.SLRebuild.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_heartbeat.html#a6699ad0573ce9d6809adb8275aef1e4e',1,'Tgstation.Server.Host.Database.Migrations.MSAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_heartbeat.html#aecedd67bcc41584f5cc7ce3e43991e67',1,'Tgstation.Server.Host.Database.Migrations.MYAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_heartbeat.html#a69db556c8f9816d01d3acfe308c32d0c',1,'Tgstation.Server.Host.Database.Migrations.SLAddHeartbeat.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_soft_columns.html#a452f5f223962a06f1f4aac9250a98f7a',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_soft_columns.html#a00aad2d1a76c69ee46d01f608bec097b',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_soft_columns.html#a79220430d6011f769ff13ab1eece5edd',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveSoftColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_create.html#a91b4446c41d615ad2513be276114100e',1,'Tgstation.Server.Host.Database.Migrations.PGCreate.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_fix_foreign_key.html#a75a8797a59d9d37f823c1e8141c48148',1,'Tgstation.Server.Host.Database.Migrations.MYFixForeignKey.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_topic_timeout.html#a75b4c0c1b4dce285abf160ca70fa7ad0',1,'Tgstation.Server.Host.Database.Migrations.MSTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_topic_timeout.html#a65160a3abe4072ec1f844961f600b6da',1,'Tgstation.Server.Host.Database.Migrations.MYTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_topic_timeout.html#a71446c05ce0d2861a0a22e2a01f4d89d',1,'Tgstation.Server.Host.Database.Migrations.SLTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_topic_timeout.html#a0310dac83148c1460053a83c2b0a453b',1,'Tgstation.Server.Host.Database.Migrations.PGTopicTimeout.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_remove_experimental_watchdog.html#aeba16375a98e6314db22f48319e39d81',1,'Tgstation.Server.Host.Database.Migrations.MSRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_remove_experimental_watchdog.html#a4ecfa74d942bf845f49016ed7e0c01c9',1,'Tgstation.Server.Host.Database.Migrations.MYRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_remove_experimental_watchdog.html#ae854d9dd602db118b7711bf4a13b9b2a',1,'Tgstation.Server.Host.Database.Migrations.PGRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_remove_experimental_watchdog.html#aef19a599caab07370c84bf792cd002e8',1,'Tgstation.Server.Host.Database.Migrations.SLRemoveExperimentalWatchdog.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_allow_null_d_m_api.html#a3a5535279567ec208518789362b10040',1,'Tgstation.Server.Host.Database.Migrations.MSAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_allow_null_d_m_api.html#a23b83a4977a3869e6a5c1975586411f1',1,'Tgstation.Server.Host.Database.Migrations.MYAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_allow_null_d_m_api.html#a11dfa79c963f480b402307af39034789',1,'Tgstation.Server.Host.Database.Migrations.PGAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_allow_null_d_m_api.html#a835767cfae5418f6e289022d1d1ae7ac',1,'Tgstation.Server.Host.Database.Migrations.SLAllowNullDMApi.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_s_add_deployment_columns.html#a792df9e381ad5ed9bfc9441487ce6ea0',1,'Tgstation.Server.Host.Database.Migrations.MSAddDeploymentColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_m_y_add_deployment_columns.html#a38931c1859c59c0991c6a54b2dff560c',1,'Tgstation.Server.Host.Database.Migrations.MYAddDeploymentColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_p_g_add_deployment_columns.html#added5a11d65c29997659a974ce398362',1,'Tgstation.Server.Host.Database.Migrations.PGAddDeploymentColumns.Down()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations_1_1_s_l_add_deployment_columns.html#a64a95198e3162f8c094904534dbb3fd9',1,'Tgstation.Server.Host.Database.Migrations.SLAddDeploymentColumns.Down()']]], + ['downgrade_3244',['Downgrade',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#ae30cd4eb76ba111b3fcd0e1b3622716d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Downgrade()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a83bee4040049ba8768dcb04ae7f50deb',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Downgrade()']]], + ['downloadfile_3245',['DownloadFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a509e05cc7905cda41869f57bee5c6c58',1,'Tgstation.Server.Host.IO.DefaultIOManager.DownloadFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a20647d9e4dd09b806e407cd5c8a23b9b',1,'Tgstation.Server.Host.IO.IIOManager.DownloadFile()']]], + ['downloadversion_3246',['DownloadVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#af3c14961e49ea0fcc923d75ae1eec19a',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DownloadVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a827552d8311f380aecac2fd75beecc52',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DownloadVersion()']]], + ['dreamdaemon_3247',['DreamDaemon',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#ab5eab4143b5b6250e72b4ea05b2a039c',1,'Tgstation::Server::Client::Components::DreamDaemonClient']]], + ['dreamdaemonclient_3248',['DreamDaemonClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a8bf0ad726b61e3dbc31a53c7ea0822c2',1,'Tgstation::Server::Client::Components::DreamDaemonClient']]], + ['dreamdaemoncontroller_3249',['DreamDaemonController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ad6d82fab816712a4c95163e0ee2a4d7d',1,'Tgstation::Server::Host::Controllers::DreamDaemonController']]], + ['dreammaker_3250',['DreamMaker',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a62edd66a221c9b7044bd068dcf7324d9',1,'Tgstation.Server.Client.Components.DreamMakerClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae0e8004e9266522f60980b7724eb9252',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.DreamMaker()']]], + ['dreammakerclient_3251',['DreamMakerClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a04dd94462a3bb8aad7469c84d53f78a9',1,'Tgstation::Server::Client::Components::DreamMakerClient']]], + ['dreammakercontroller_3252',['DreamMakerController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a5434cff9c9fa15212f0630672f48de13',1,'Tgstation::Server::Host::Controllers::DreamMakerController']]], + ['drop_3253',['Drop',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#abd512a5dfbfbc3f64670a963ec808de5',1,'Tgstation.Server.Host.Database.DatabaseContext.Drop()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a6216e8a817ab6700a155699bb8013584',1,'Tgstation.Server.Host.Database.IDatabaseContext.Drop()']]] ]; diff --git a/search/functions_4.html b/search/functions_4.html index d049621bd5..d90dff155b 100644 --- a/search/functions_4.html +++ b/search/functions_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_4.js b/search/functions_4.js index 67b67635fb..42070612a6 100644 --- a/search/functions_4.js +++ b/search/functions_4.js @@ -1,13 +1,13 @@ var searchData= [ - ['enablecustomchatcommands_3178',['EnableCustomChatCommands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a2059702d832059ed0ce009413cb646af',1,'Tgstation.Server.Host.Components.Session.ISessionController.EnableCustomChatCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab7fa60010e2afa686bc6447c0df77704',1,'Tgstation.Server.Host.Components.Session.SessionController.EnableCustomChatCommands()']]], - ['enqueuemessage_3179',['EnqueueMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac45c189505744c6f1012461193fca877',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['ensuredirectories_3180',['EnsureDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a067086b7757d904b99cabe914a925c',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['enumchildwindows_3181',['EnumChildWindows',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a6b4b37ca121784ecd63c477cc022415d',1,'Tgstation::Server::Host::NativeMethods']]], - ['enumwindow_3182',['EnumWindow',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a8ebd64b49b87ea79d0b6b6fd5d4290b4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['enumwindowproc_3183',['EnumWindowProc',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a865bfe43e7d4085326ccf40500eb4222',1,'Tgstation::Server::Host::NativeMethods']]], - ['errormessage_3184',['ErrorMessage',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a594af171f50f98e2be8481692c6584cc',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#abfbfef9f57a4e2d279cd3fa227b32711',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage(ErrorCode errorCode)']]], - ['eventconsumer_3185',['EventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a8954b7610df4c6ad14ccf71126651044',1,'Tgstation::Server::Host::Components::Events::EventConsumer']]], - ['eventnotification_3186',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#af7bba6883ff8690cb16cf257291aca02',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], - ['eventscriptattribute_3187',['EventScriptAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a014125f7696774d3ab87e2377d6d779f',1,'Tgstation::Server::Host::Components::Events::EventScriptAttribute']]] + ['enablecustomchatcommands_3254',['EnableCustomChatCommands',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a2059702d832059ed0ce009413cb646af',1,'Tgstation.Server.Host.Components.Session.ISessionController.EnableCustomChatCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ab7fa60010e2afa686bc6447c0df77704',1,'Tgstation.Server.Host.Components.Session.SessionController.EnableCustomChatCommands()']]], + ['enqueuemessage_3255',['EnqueueMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac45c189505744c6f1012461193fca877',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['ensuredirectories_3256',['EnsureDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a067086b7757d904b99cabe914a925c',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['enumchildwindows_3257',['EnumChildWindows',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a6b4b37ca121784ecd63c477cc022415d',1,'Tgstation::Server::Host::NativeMethods']]], + ['enumwindow_3258',['EnumWindow',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a8ebd64b49b87ea79d0b6b6fd5d4290b4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['enumwindowproc_3259',['EnumWindowProc',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a865bfe43e7d4085326ccf40500eb4222',1,'Tgstation::Server::Host::NativeMethods']]], + ['errormessage_3260',['ErrorMessage',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a594af171f50f98e2be8481692c6584cc',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#abfbfef9f57a4e2d279cd3fa227b32711',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorMessage(ErrorCode errorCode)']]], + ['eventconsumer_3261',['EventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a8954b7610df4c6ad14ccf71126651044',1,'Tgstation::Server::Host::Components::Events::EventConsumer']]], + ['eventnotification_3262',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#af7bba6883ff8690cb16cf257291aca02',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], + ['eventscriptattribute_3263',['EventScriptAttribute',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a014125f7696774d3ab87e2377d6d779f',1,'Tgstation::Server::Host::Components::Events::EventScriptAttribute']]] ]; diff --git a/search/functions_5.html b/search/functions_5.html index 342487bc1a..9f40dc6108 100644 --- a/search/functions_5.html +++ b/search/functions_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_5.js b/search/functions_5.js index 795d18d51d..12579fd38f 100644 --- a/search/functions_5.js +++ b/search/functions_5.js @@ -1,10 +1,12 @@ var searchData= [ - ['fetch_3188',['Fetch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a3660f1ded05e762c347ffc43c6d71700',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Fetch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a24fb43b841e486d791dc52078ec1d870',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Fetch()']]], - ['fetchorigin_3189',['FetchOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a749160f7ea74fc975303e46d5ad196e0',1,'Tgstation.Server.Host.Components.Repository.IRepository.FetchOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a9e88ae9848a65008f544cfd34071f115',1,'Tgstation.Server.Host.Components.Repository.Repository.FetchOrigin()']]], - ['file_3190',['File',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a51d11df3997c7f49c6fb8e7784d3f2d0',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], - ['fileexists_3191',['FileExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab1b31bbcb5d4bdc0650d81a19af5d6ae',1,'Tgstation.Server.Host.IO.DefaultIOManager.FileExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4088b7924c694d628acd99b5a0829c86',1,'Tgstation.Server.Host.IO.IIOManager.FileExists()']]], - ['findwindow_3192',['FindWindow',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aaff201757860dd95c1ab3047ac6e2ec8',1,'Tgstation::Server::Host::NativeMethods']]], - ['forbidduetomodeconflicts_3193',['ForbidDueToModeConflicts',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a3478628e5a443b65c9ffb565d4da2cde',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], - ['fromcompilejob_3194',['FromCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#af0268d30e70a14c2cff65d09e6ca6df5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a5a61b3a38bdb256b40a1630432356dc7',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.FromCompileJob()']]] + ['faildeployment_3264',['FailDeployment',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a938c17c6436f93fa99340d94f900ad23',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.FailDeployment()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#ad7f5e3391e59c578b004c57f4706df35',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.FailDeployment()']]], + ['fetch_3265',['Fetch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_lib_git2_commands.html#a3660f1ded05e762c347ffc43c6d71700',1,'Tgstation.Server.Host.Components.Repository.ILibGit2Commands.Fetch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_commands.html#a24fb43b841e486d791dc52078ec1d870',1,'Tgstation.Server.Host.Components.Repository.LibGit2Commands.Fetch()']]], + ['fetchorigin_3266',['FetchOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a749160f7ea74fc975303e46d5ad196e0',1,'Tgstation.Server.Host.Components.Repository.IRepository.FetchOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a9e88ae9848a65008f544cfd34071f115',1,'Tgstation.Server.Host.Components.Repository.Repository.FetchOrigin()']]], + ['file_3267',['File',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a51d11df3997c7f49c6fb8e7784d3f2d0',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], + ['fileexists_3268',['FileExists',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab1b31bbcb5d4bdc0650d81a19af5d6ae',1,'Tgstation.Server.Host.IO.DefaultIOManager.FileExists()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4088b7924c694d628acd99b5a0829c86',1,'Tgstation.Server.Host.IO.IIOManager.FileExists()']]], + ['findwindow_3269',['FindWindow',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aaff201757860dd95c1ab3047ac6e2ec8',1,'Tgstation::Server::Host::NativeMethods']]], + ['forbidduetomodeconflicts_3270',['ForbidDueToModeConflicts',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a3478628e5a443b65c9ffb565d4da2cde',1,'Tgstation::Server::Host::Controllers::ConfigurationController']]], + ['formatexceptionforusers_3271',['FormatExceptionForUsers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8cdce0ecb73a635564b1eafc0fc0372f',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['fromcompilejob_3272',['FromCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#af0268d30e70a14c2cff65d09e6ca6df5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.FromCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a5a61b3a38bdb256b40a1630432356dc7',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.FromCompileJob()']]] ]; diff --git a/search/functions_6.html b/search/functions_6.html index 4bf3bd63bc..93ebd8a8fc 100644 --- a/search/functions_6.html +++ b/search/functions_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_6.js b/search/functions_6.js index 958df4a18a..0eadd1d8f5 100644 --- a/search/functions_6.js +++ b/search/functions_6.js @@ -1,54 +1,56 @@ var searchData= [ - ['generalconfiguration_3195',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0d5ca385e9de5c07753ed5ff5ad84b52',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['generatecommands_3196',['GenerateCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a6d69dde344df916a244626be56bc1b78',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.GenerateCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html#a3f5fdca17c71257d34528f45f61ed469',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommandFactory.GenerateCommands()']]], - ['generatecredentialshandler_3197',['GenerateCredentialsHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html#a30e3427729e4b3a67bbd3068be3213b4',1,'Tgstation.Server.Host.Components.Repository.ICredentialsProvider.GenerateCredentialsHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a8690f8be311b5092a11782a2c54b3728',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.GenerateCredentialsHandler()']]], - ['generatepushoptions_3198',['GeneratePushOptions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae497427222edeac86fbaea36d2dac220',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['getactivecontroller_3199',['GetActiveController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a81f31795e687423e39ed6a9e6dd82454',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.GetActiveController()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a634f53946305b875c65c04dfd1719830',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.GetActiveController()']]], - ['getadminuser_3200',['GetAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1eed27ad5d706f6f3f4c691704205f67',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['getallchildhandles_3201',['GetAllChildHandles',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a7b0c5446ce7d67f409cd743e74f32183',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['getasyncenumerator_3202',['GetAsyncEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a6212ee32986277efe11bff2d46009ca7',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['getcombinedoutput_3203',['GetCombinedOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a143445ea75400e7a5eafcdfefcb277bb',1,'Tgstation.Server.Host.System.IProcess.GetCombinedOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac0865b3b4306e3fde82f9ba2bb91340b',1,'Tgstation.Server.Host.System.Process.GetCombinedOutput()']]], - ['getcompilejob_3204',['GetCompileJob',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aac86150cb373a42b2e6b373a464977ec',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetCompileJob()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a7b5cc5d3b3d5860cec8c9e0b84e5ec83',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetCompileJob()']]], - ['getconfigureaction_3c_20tdatabasecontext_20_3e_3205',['GetConfigureAction< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aad405596b71424eee16791f412dbd42e',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['getcurrent_3206',['GetCurrent',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6052301d3f6ed6eb477f74a081e2187e',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#af2bc1f5b4e9cd8531f44111b8eae71fa',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#aad49a7d5b5c5f6e796587da47e29215e',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.GetCurrent()']]], - ['getcurrentprocess_3207',['GetCurrentProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a81eeee7944e490c141d2e7b66f651369',1,'Tgstation.Server.Host.System.IProcessExecutor.GetCurrentProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04581cbc596b3a53ef3e17752ca3cfb',1,'Tgstation.Server.Host.System.ProcessExecutor.GetCurrentProcess()']]], - ['getdirectories_3208',['GetDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#acae0255ab165ae1421ece5b1d5fbdf29',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4813de766ae0c63cf3ba34e4a40626ca',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a254a4bab3839ca09cdeade65387523d7',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetDirectories()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a65612d712154495899633c1195579b08',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetDirectories()']]], - ['getdirectoryname_3209',['GetDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a993c9bef376d9b28f47e97d8bdf21d04',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectoryName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a691970cc91e5576b06ed9ce14e51d9b8',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectoryName()']]], - ['getdotnetpath_3210',['GetDotnetPath',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a8d0f1fffc5a866c3d542d2e1c106fbb4',1,'Tgstation::Server::Host::Watchdog::Watchdog']]], - ['getenumerator_3211',['GetEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a22760f9ae163fd85e535b867454d718b',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9b882344750b9a126e181724dee145cb',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()']]], - ['geterroroutput_3212',['GetErrorOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a6d681111b5ff6f12506dacf82b9f77f9',1,'Tgstation.Server.Host.System.IProcess.GetErrorOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a6326465402724922cf73994bb5e931e8',1,'Tgstation.Server.Host.System.Process.GetErrorOutput()']]], - ['getexecutingusername_3213',['GetExecutingUsername',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a1981fd196af57d3f4ee8385ecbc50870',1,'Tgstation.Server.Host.System.IProcess.GetExecutingUsername()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#af76f476ae07e3e2d8c060d970897dfe0',1,'Tgstation.Server.Host.System.IProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a710e33bec7224c7ee6363af5fb5d8681',1,'Tgstation.Server.Host.System.PosixProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a8af1df99f5ed8cf15494e230243890e5',1,'Tgstation.Server.Host.System.Process.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a986ecee40f7bffce7e4db8d1c36c3b72',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.GetExecutingUsername()']]], - ['getfilename_3214',['GetFileName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adf2a105e1c455565c3c15de9078f1282',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a0d6d5a54db205d2d1d45a927d57f5182',1,'Tgstation.Server.Host.IO.IIOManager.GetFileName()']]], - ['getfilenamewithoutextension_3215',['GetFileNameWithoutExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5e595bab061d2fe0b1f6cb0454a44a12',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileNameWithoutExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ab6635afaf199a1396a743f3b46eac786',1,'Tgstation.Server.Host.IO.IIOManager.GetFileNameWithoutExtension()']]], - ['getfiles_3216',['GetFiles',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a29ee8cd097023d261cab484b6732cdb6',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aca74c5436163f98c2780e8aa1468d098',1,'Tgstation.Server.Host.IO.IIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad8368416aaa9561f5a55f8705639060e',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetFiles()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a9a2b8e249e8a8f9786158e30b52471da',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetFiles()']]], - ['getfileswithextension_3217',['GetFilesWithExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6a40b596effc389caef80b800b74359c',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFilesWithExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad4ce6628b1a44e825ae36b75e6b176c2',1,'Tgstation.Server.Host.IO.IIOManager.GetFilesWithExtension()']]], - ['getfulllogdirectory_3218',['GetFullLogDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a6e9e186a1456017f692358f96bdab2c3',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['getgithubclient_3219',['GetGitHubClient',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a35af4d06cfa01eea597d3e29e74b0e21',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['getid_3220',['GetId',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aafc459bdd85faa34ca004f760699355d',1,'Tgstation.Server.Client.Components.ChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#af3ce02a1214ddb80ef5021683fa1c778',1,'Tgstation.Server.Client.Components.IChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#ab3a233f8693053d156993065bd4705cb',1,'Tgstation.Server.Client.Components.IInstanceUserClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a7fad6a1f5465b9bb5971787c5d782bd8',1,'Tgstation.Server.Client.Components.IJobsClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab231f97fcf3c7ac3c920bae0530c96a0',1,'Tgstation.Server.Client.Components.InstanceUserClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a1a7399807a0abd4dfaed05c1c0d3adff',1,'Tgstation.Server.Client.Components.JobsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ae1c05f75c697ddba9bf488cf899749fb',1,'Tgstation.Server.Client.IInstanceManagerClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ac8d222eb11e9fe074119eb2ae6fc9f2f',1,'Tgstation.Server.Client.InstanceManagerClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#acd126a0cc8f96eace12718d63c41d2ba',1,'Tgstation.Server.Client.IUsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ab903aa7a69c620191d5d13bae2ef621a',1,'Tgstation.Server.Client.UsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#acddc3fe9d04e7c00dc9a940b86389bb8',1,'Tgstation.Server.Host.Controllers.ChatController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a2f22a8f3436e55774dee2df922590ac8',1,'Tgstation.Server.Host.Controllers.DreamMakerController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a69e19a7f501fca2dd5d707f34edb4c79',1,'Tgstation.Server.Host.Controllers.InstanceController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a9e786fda53a079ad9427ec69af71b408',1,'Tgstation.Server.Host.Controllers.InstanceUserController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#aad5f209a424e97eeb42d75c6ff37f07d',1,'Tgstation.Server.Host.Controllers.JobController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7924175e380ba48b8623838f13c2521d',1,'Tgstation.Server.Host.Controllers.UserController.GetId()']]], - ['getinstance_3221',['GetInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html#a8657fc0d88b55926cf930663d6a8789a',1,'Tgstation.Server.Host.Components.IInstanceCoreProvider.GetInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a35ea7d6144eef2f3370b31a4db62ff83',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstance()']]], - ['getinstancereference_3222',['GetInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ae9607bccaf0751fd40d3ec32ce514c9f',1,'Tgstation.Server.Host.Components.IInstanceManager.GetInstanceReference()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a5b751fa556b5f95897d3c438bdfdff09',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstanceReference()']]], - ['getircchannelkey_3223',['GetIrcChannelKey',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#acd8563e260bd596d20e0b7cfc0636e54',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], - ['getircchannelname_3224',['GetIrcChannelName',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a400776d2d51bd050b788a760c00d889a',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], - ['getircchannelsplits_3225',['GetIrcChannelSplits',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a683c05c25e16d532bcc146cbf8be9e49',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], - ['getjobids_3226',['GetJobIds',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af654e884ec3b3eded2a180961c7ccfc5',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetJobIds()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a6dc9b4005f4070fe3c0dc3b5264ded10',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetJobIds()']]], - ['getlastmodified_3227',['GetLastModified',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6b4ed943b61e68cc1f38dbb2dd3abc78',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetLastModified()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a291d4f10bc7972fbb518125e1331f634',1,'Tgstation.Server.Host.IO.IIOManager.GetLastModified()']]], - ['getlaunchresult_3228',['GetLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aaffcc2d0b1cbf61822a98916181e149c',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['getlog_3229',['GetLog',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a4729c542c5e10fc5b7aa0ff8335a455e',1,'Tgstation.Server.Client.AdministrationClient.GetLog()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a99c93db202361b69893b54d95aef275d',1,'Tgstation.Server.Client.IAdministrationClient.GetLog()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a447802145e173d3d60ad702a857d41ff',1,'Tgstation.Server.Host.Controllers.AdministrationController.GetLog()']]], - ['getlogger_3230',['GetLogger',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9f539001c8a2bbac8addd3505f61a31c',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], - ['getprocess_3231',['GetProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a5618ee521ada90bb15bf3315440898f3',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#afc62b43888624c6f6098bbddabc08b33',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcess()']]], - ['getprocessbyname_3232',['GetProcessByName',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a337ac6db6c428317a05fa7fb46e8b72a',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcessByName()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a09b2d58bfe8a6053bfc369b143211bfd',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcessByName()']]], - ['getrepositoryownername_3233',['GetRepositoryOwnerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#adec58d79f9d6c5fe1bc4e43f9f036308',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['getright_3234',['GetRight',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#ade8aeb7dd0a0e480f6f89bd5973703c7',1,'Tgstation.Server.Host.Security.AuthenticationContext.GetRight()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#af5d37fc8159a215c75c3f3688f4415ea',1,'Tgstation.Server.Host.Security.IAuthenticationContext.GetRight()']]], - ['getsecurebytes_3235',['GetSecureBytes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#aeaa749c8ecd658514c3d913950268cfc',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac6fa20935fc73a1dca313376b5b79d1a',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureBytes()']]], - ['getsecurestring_3236',['GetSecureString',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a241b23ae24a7354312245e1cb606f882',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ab49e5041cfb7333ee413c9719046ae37',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureString()']]], - ['getserializersettings_3237',['GetSerializerSettings',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aed28ea7a7fff4be99f3c65a8dcd0a47e',1,'Tgstation::Server::Client::ApiClient']]], - ['getstandardoutput_3238',['GetStandardOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a95a0b7e881a308d0704721ca594a3338',1,'Tgstation.Server.Host.System.IProcess.GetStandardOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7e284fdbf8795dc03b1080b723c3e9ad',1,'Tgstation.Server.Host.System.Process.GetStandardOutput()']]], - ['gettgsuser_3239',['GetTgsUser',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html#a99fc05da06c5081c322a9fcaeff71b5a',1,'Tgstation::Server::Host::Extensions::DatabaseCollectionExtensions']]], - ['getuseranddomainname_3240',['GetUserAndDomainName',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a1cca1b38097ffb81518592e6b967cecf',1,'Tgstation::Server::Host::Security::WindowsSystemIdentityFactory']]], - ['getwindowtext_3241',['GetWindowText',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aab504dccd83453d3af13a7e4feceb7a9',1,'Tgstation::Server::Host::NativeMethods']]], - ['getwindowthreadprocessid_3242',['GetWindowThreadProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a346862e4a517dcfe04a256ec49e7ecea',1,'Tgstation::Server::Host::NativeMethods']]], - ['githubclientfactory_3243',['GitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a72336fa397ae9b38f421d27063479af9',1,'Tgstation::Server::Host::Core::GitHubClientFactory']]], - ['gone_3244',['Gone',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30f0e4c93d7b119d4bf7aadefc1e5b8f',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['grantpermissions_3245',['GrantPermissions',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ac07cba61d66cd0a7ceeb846be2e76885',1,'Tgstation.Server.Client.IInstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad3adb6fbb920b5ab031e54adadbbd869',1,'Tgstation.Server.Client.InstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a360b9539cb9eef92ba62ee6d78e7b161',1,'Tgstation.Server.Host.Controllers.InstanceController.GrantPermissions()']]] + ['generalconfiguration_3273',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a0d5ca385e9de5c07753ed5ff5ad84b52',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['generatecommands_3274',['GenerateCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a6d69dde344df916a244626be56bc1b78',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.GenerateCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command_factory.html#a3f5fdca17c71257d34528f45f61ed469',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommandFactory.GenerateCommands()']]], + ['generatecredentialshandler_3275',['GenerateCredentialsHandler',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_credentials_provider.html#a30e3427729e4b3a67bbd3068be3213b4',1,'Tgstation.Server.Host.Components.Repository.ICredentialsProvider.GenerateCredentialsHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a8690f8be311b5092a11782a2c54b3728',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.GenerateCredentialsHandler()']]], + ['generatepushoptions_3276',['GeneratePushOptions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ae497427222edeac86fbaea36d2dac220',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['getactivecontroller_3277',['GetActiveController',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a81f31795e687423e39ed6a9e6dd82454',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.GetActiveController()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a634f53946305b875c65c04dfd1719830',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.GetActiveController()']]], + ['getadminuser_3278',['GetAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a1eed27ad5d706f6f3f4c691704205f67',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['getallchildhandles_3279',['GetAllChildHandles',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a7b0c5446ce7d67f409cd743e74f32183',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['getasyncenumerator_3280',['GetAsyncEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a6212ee32986277efe11bff2d46009ca7',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['getcombinedoutput_3281',['GetCombinedOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a143445ea75400e7a5eafcdfefcb277bb',1,'Tgstation.Server.Host.System.IProcess.GetCombinedOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ac0865b3b4306e3fde82f9ba2bb91340b',1,'Tgstation.Server.Host.System.Process.GetCombinedOutput()']]], + ['getcompilejob_3282',['GetCompileJob',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#aac86150cb373a42b2e6b373a464977ec',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetCompileJob()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a7b5cc5d3b3d5860cec8c9e0b84e5ec83',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetCompileJob()']]], + ['getconfigureaction_3c_20tdatabasecontext_20_3e_3283',['GetConfigureAction< TDatabaseContext >',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aad405596b71424eee16791f412dbd42e',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['getcurrent_3284',['GetCurrent',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity_factory.html#a6052301d3f6ed6eb477f74a081e2187e',1,'Tgstation.Server.Host.Security.ISystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity_factory.html#af2bc1f5b4e9cd8531f44111b8eae71fa',1,'Tgstation.Server.Host.Security.PosixSystemIdentityFactory.GetCurrent()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#aad49a7d5b5c5f6e796587da47e29215e',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.GetCurrent()']]], + ['getcurrentprocess_3285',['GetCurrentProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a81eeee7944e490c141d2e7b66f651369',1,'Tgstation.Server.Host.System.IProcessExecutor.GetCurrentProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04581cbc596b3a53ef3e17752ca3cfb',1,'Tgstation.Server.Host.System.ProcessExecutor.GetCurrentProcess()']]], + ['getdirectories_3286',['GetDirectories',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#acae0255ab165ae1421ece5b1d5fbdf29',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a4813de766ae0c63cf3ba34e4a40626ca',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectories()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a254a4bab3839ca09cdeade65387523d7',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetDirectories()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a65612d712154495899633c1195579b08',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetDirectories()']]], + ['getdirectoryname_3287',['GetDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a993c9bef376d9b28f47e97d8bdf21d04',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetDirectoryName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a691970cc91e5576b06ed9ce14e51d9b8',1,'Tgstation.Server.Host.IO.IIOManager.GetDirectoryName()']]], + ['getdotnetpath_3288',['GetDotnetPath',['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a8d0f1fffc5a866c3d542d2e1c106fbb4',1,'Tgstation::Server::Host::Watchdog::Watchdog']]], + ['getenumerator_3289',['GetEnumerator',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a22760f9ae163fd85e535b867454d718b',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9b882344750b9a126e181724dee145cb',1,'Tgstation.Server.Host.Database.DatabaseCollection.GetEnumerator()']]], + ['geterroroutput_3290',['GetErrorOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a6d681111b5ff6f12506dacf82b9f77f9',1,'Tgstation.Server.Host.System.IProcess.GetErrorOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a6326465402724922cf73994bb5e931e8',1,'Tgstation.Server.Host.System.Process.GetErrorOutput()']]], + ['getexecutingusername_3291',['GetExecutingUsername',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a1981fd196af57d3f4ee8385ecbc50870',1,'Tgstation.Server.Host.System.IProcess.GetExecutingUsername()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_features.html#af76f476ae07e3e2d8c060d970897dfe0',1,'Tgstation.Server.Host.System.IProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a710e33bec7224c7ee6363af5fb5d8681',1,'Tgstation.Server.Host.System.PosixProcessFeatures.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a8af1df99f5ed8cf15494e230243890e5',1,'Tgstation.Server.Host.System.Process.GetExecutingUsername()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_process_features.html#a986ecee40f7bffce7e4db8d1c36c3b72',1,'Tgstation.Server.Host.System.WindowsProcessFeatures.GetExecutingUsername()']]], + ['getfilename_3292',['GetFileName',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#adf2a105e1c455565c3c15de9078f1282',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a0d6d5a54db205d2d1d45a927d57f5182',1,'Tgstation.Server.Host.IO.IIOManager.GetFileName()']]], + ['getfilenamewithoutextension_3293',['GetFileNameWithoutExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5e595bab061d2fe0b1f6cb0454a44a12',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFileNameWithoutExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ab6635afaf199a1396a743f3b46eac786',1,'Tgstation.Server.Host.IO.IIOManager.GetFileNameWithoutExtension()']]], + ['getfiles_3294',['GetFiles',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a29ee8cd097023d261cab484b6732cdb6',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#aca74c5436163f98c2780e8aa1468d098',1,'Tgstation.Server.Host.IO.IIOManager.GetFiles()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#ad8368416aaa9561f5a55f8705639060e',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.GetFiles()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#a9a2b8e249e8a8f9786158e30b52471da',1,'Tgstation.Server.Host.IO.SynchronousIOManager.GetFiles()']]], + ['getfileswithextension_3295',['GetFilesWithExtension',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6a40b596effc389caef80b800b74359c',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetFilesWithExtension()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad4ce6628b1a44e825ae36b75e6b176c2',1,'Tgstation.Server.Host.IO.IIOManager.GetFilesWithExtension()']]], + ['getfulllogdirectory_3296',['GetFullLogDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a6e9e186a1456017f692358f96bdab2c3',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['getgithubclient_3297',['GetGitHubClient',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a35af4d06cfa01eea597d3e29e74b0e21',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['getid_3298',['GetId',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#aafc459bdd85faa34ca004f760699355d',1,'Tgstation.Server.Client.Components.ChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#af3ce02a1214ddb80ef5021683fa1c778',1,'Tgstation.Server.Client.Components.IChatBotsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#ab3a233f8693053d156993065bd4705cb',1,'Tgstation.Server.Client.Components.IInstanceUserClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a7fad6a1f5465b9bb5971787c5d782bd8',1,'Tgstation.Server.Client.Components.IJobsClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab231f97fcf3c7ac3c920bae0530c96a0',1,'Tgstation.Server.Client.Components.InstanceUserClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a1a7399807a0abd4dfaed05c1c0d3adff',1,'Tgstation.Server.Client.Components.JobsClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ae1c05f75c697ddba9bf488cf899749fb',1,'Tgstation.Server.Client.IInstanceManagerClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ac8d222eb11e9fe074119eb2ae6fc9f2f',1,'Tgstation.Server.Client.InstanceManagerClient.GetId()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#acd126a0cc8f96eace12718d63c41d2ba',1,'Tgstation.Server.Client.IUsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ab903aa7a69c620191d5d13bae2ef621a',1,'Tgstation.Server.Client.UsersClient.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#acddc3fe9d04e7c00dc9a940b86389bb8',1,'Tgstation.Server.Host.Controllers.ChatController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#a2f22a8f3436e55774dee2df922590ac8',1,'Tgstation.Server.Host.Controllers.DreamMakerController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a69e19a7f501fca2dd5d707f34edb4c79',1,'Tgstation.Server.Host.Controllers.InstanceController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a9e786fda53a079ad9427ec69af71b408',1,'Tgstation.Server.Host.Controllers.InstanceUserController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#aad5f209a424e97eeb42d75c6ff37f07d',1,'Tgstation.Server.Host.Controllers.JobController.GetId()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a7924175e380ba48b8623838f13c2521d',1,'Tgstation.Server.Host.Controllers.UserController.GetId()']]], + ['getinstance_3299',['GetInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core_provider.html#a8657fc0d88b55926cf930663d6a8789a',1,'Tgstation.Server.Host.Components.IInstanceCoreProvider.GetInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a35ea7d6144eef2f3370b31a4db62ff83',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstance()']]], + ['getinstancereference_3300',['GetInstanceReference',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ae9607bccaf0751fd40d3ec32ce514c9f',1,'Tgstation.Server.Host.Components.IInstanceManager.GetInstanceReference()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a5b751fa556b5f95897d3c438bdfdff09',1,'Tgstation.Server.Host.Components.InstanceManager.GetInstanceReference()']]], + ['getircchannelkey_3301',['GetIrcChannelKey',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#acd8563e260bd596d20e0b7cfc0636e54',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], + ['getircchannelname_3302',['GetIrcChannelName',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a400776d2d51bd050b788a760c00d889a',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], + ['getircchannelsplits_3303',['GetIrcChannelSplits',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_chat_channel_extensions.html#a683c05c25e16d532bcc146cbf8be9e49',1,'Tgstation::Server::Host::Extensions::ChatChannelExtensions']]], + ['getjobids_3304',['GetJobIds',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#af654e884ec3b3eded2a180961c7ccfc5',1,'Tgstation.Server.Client.Components.DreamMakerClient.GetJobIds()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_dream_maker_client.html#a6dc9b4005f4070fe3c0dc3b5264ded10',1,'Tgstation.Server.Client.Components.IDreamMakerClient.GetJobIds()']]], + ['getlastmodified_3305',['GetLastModified',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a6b4ed943b61e68cc1f38dbb2dd3abc78',1,'Tgstation.Server.Host.IO.DefaultIOManager.GetLastModified()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a291d4f10bc7972fbb518125e1331f634',1,'Tgstation.Server.Host.IO.IIOManager.GetLastModified()']]], + ['getlaunchresult_3306',['GetLaunchResult',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ad52f86b450b23dc51fdc42359545d2d0',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['getlog_3307',['GetLog',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#a4729c542c5e10fc5b7aa0ff8335a455e',1,'Tgstation.Server.Client.AdministrationClient.GetLog()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a99c93db202361b69893b54d95aef275d',1,'Tgstation.Server.Client.IAdministrationClient.GetLog()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a447802145e173d3d60ad702a857d41ff',1,'Tgstation.Server.Host.Controllers.AdministrationController.GetLog()']]], + ['getlogger_3308',['GetLogger',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_application_builder_extensions.html#a9f539001c8a2bbac8addd3505f61a31c',1,'Tgstation::Server::Host::Extensions::ApplicationBuilderExtensions']]], + ['getoriginsha_3309',['GetOriginSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa8ad08a49a66bd994cd45543007c1d0d',1,'Tgstation.Server.Host.Components.Repository.IRepository.GetOriginSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aa05848d9be6f9b0aff6e1106a102ca18',1,'Tgstation.Server.Host.Components.Repository.Repository.GetOriginSha()']]], + ['getprocess_3310',['GetProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a5618ee521ada90bb15bf3315440898f3',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#afc62b43888624c6f6098bbddabc08b33',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcess()']]], + ['getprocessbyname_3311',['GetProcessByName',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#a337ac6db6c428317a05fa7fb46e8b72a',1,'Tgstation.Server.Host.System.IProcessExecutor.GetProcessByName()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a09b2d58bfe8a6053bfc369b143211bfd',1,'Tgstation.Server.Host.System.ProcessExecutor.GetProcessByName()']]], + ['getrepositoryownername_3312',['GetRepositoryOwnerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#adec58d79f9d6c5fe1bc4e43f9f036308',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['getright_3313',['GetRight',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#ade8aeb7dd0a0e480f6f89bd5973703c7',1,'Tgstation.Server.Host.Security.AuthenticationContext.GetRight()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#af5d37fc8159a215c75c3f3688f4415ea',1,'Tgstation.Server.Host.Security.IAuthenticationContext.GetRight()']]], + ['getsecurebytes_3314',['GetSecureBytes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#aeaa749c8ecd658514c3d913950268cfc',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureBytes()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ac6fa20935fc73a1dca313376b5b79d1a',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureBytes()']]], + ['getsecurestring_3315',['GetSecureString',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a241b23ae24a7354312245e1cb606f882',1,'Tgstation.Server.Host.Security.CryptographySuite.GetSecureString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_cryptography_suite.html#ab49e5041cfb7333ee413c9719046ae37',1,'Tgstation.Server.Host.Security.ICryptographySuite.GetSecureString()']]], + ['getserializersettings_3316',['GetSerializerSettings',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#aed28ea7a7fff4be99f3c65a8dcd0a47e',1,'Tgstation::Server::Client::ApiClient']]], + ['getstandardoutput_3317',['GetStandardOutput',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a95a0b7e881a308d0704721ca594a3338',1,'Tgstation.Server.Host.System.IProcess.GetStandardOutput()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7e284fdbf8795dc03b1080b723c3e9ad',1,'Tgstation.Server.Host.System.Process.GetStandardOutput()']]], + ['gettgsuser_3318',['GetTgsUser',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_database_collection_extensions.html#a99fc05da06c5081c322a9fcaeff71b5a',1,'Tgstation::Server::Host::Extensions::DatabaseCollectionExtensions']]], + ['getuseranddomainname_3319',['GetUserAndDomainName',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a1cca1b38097ffb81518592e6b967cecf',1,'Tgstation::Server::Host::Security::WindowsSystemIdentityFactory']]], + ['getwindowtext_3320',['GetWindowText',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#aab504dccd83453d3af13a7e4feceb7a9',1,'Tgstation::Server::Host::NativeMethods']]], + ['getwindowthreadprocessid_3321',['GetWindowThreadProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a346862e4a517dcfe04a256ec49e7ecea',1,'Tgstation::Server::Host::NativeMethods']]], + ['githubclientfactory_3322',['GitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a72336fa397ae9b38f421d27063479af9',1,'Tgstation::Server::Host::Core::GitHubClientFactory']]], + ['githubdeploymentmanager_3323',['GitHubDeploymentManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#afd08c06fb5e077c5243d02fe32c983ed',1,'Tgstation::Server::Host::Components::Deployment::GitHubDeploymentManager']]], + ['gone_3324',['Gone',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30f0e4c93d7b119d4bf7aadefc1e5b8f',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['grantpermissions_3325',['GrantPermissions',['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#ac07cba61d66cd0a7ceeb846be2e76885',1,'Tgstation.Server.Client.IInstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad3adb6fbb920b5ab031e54adadbbd869',1,'Tgstation.Server.Client.InstanceManagerClient.GrantPermissions()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a360b9539cb9eef92ba62ee6d78e7b161',1,'Tgstation.Server.Host.Controllers.InstanceController.GrantPermissions()']]] ]; diff --git a/search/functions_7.html b/search/functions_7.html index d7ad9dd8ac..1ee07a2bb3 100644 --- a/search/functions_7.html +++ b/search/functions_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_7.js b/search/functions_7.js index 29f6fc16e6..9cd21a4efd 100644 --- a/search/functions_7.js +++ b/search/functions_7.js @@ -1,19 +1,19 @@ var searchData= [ - ['handlebadresponse_3246',['HandleBadResponse',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7b81831316898d1d92a5103d3ecf145b',1,'Tgstation::Server::Client::ApiClient']]], - ['handlechatcommand_3247',['HandleChatCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html#a0a3d290a61fd94176c66692b35035eb2',1,'Tgstation.Server.Host.Components.Chat.ICustomCommandHandler.HandleChatCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a59a2116696ef8c2e84761a4f25d8d957',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleChatCommand()']]], - ['handleevent_3248',['HandleEvent',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a574b2b2de6422a7e43d448fa66f9a0e3',1,'Tgstation.Server.Host.Components.Events.EventConsumer.HandleEvent()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html#ac217567aa6bd7e43c8cfd976eee05aac',1,'Tgstation.Server.Host.Components.Events.IEventConsumer.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a36ececa58c0e6f8781147e44872076c6',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1b043f3ab25e84bc675dd5455cbf3f52',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleEvent()']]], - ['handleheartbeat_3249',['HandleHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a32ebad8014be63eb29e7a894cdbfcaf1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['handlemessage_3250',['HandleMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a942b5d525b0855ff6c8b59e0d5f6e7eb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['handlemonitorwakeup_3251',['HandleMonitorWakeup',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a056db8ac9f376f053c671df0e7371ed4',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleMonitorWakeup()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ab9f2e91c85cfad158762e6cb78c40805',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleMonitorWakeup()']]], - ['handlenewdmbavailable_3252',['HandleNewDmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ad6789a31cac393a9677e9680154384ac',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNewDmbAvailable()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a8e8934ab54a29d00c8a6b6b39bd29cb1',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNewDmbAvailable()']]], - ['handlenormalreboot_3253',['HandleNormalReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a4086daae4bfcb0d754531c5fa72a3082',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNormalReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#ae9061f3b017884041eb1cebb55b09187',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNormalReboot()']]], - ['handlerestart_3254',['HandleRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abfc2c178a071f0a8450c0aaa82af9426',1,'Tgstation.Server.Host.Components.Chat.ChatManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a2fd05864a3a2b706516784e14afaecc6',1,'Tgstation.Server.Host.Components.InstanceManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad78e8addece7234fb29cffe96a18442e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleRestart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html#ad7bcde59a7297d1ef3770943af92a93d',1,'Tgstation.Server.Host.Core.IRestartHandler.HandleRestart()']]], - ['handlewrite_3255',['HandleWrite',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html#a977c03596e21a07e06d7bc3735c6884f',1,'Tgstation.Server.Host.IO.IPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a43d2add7500e5047fd259d1291ada0bc',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html#a94fe62fd0f170cca8a95674408a1ede4',1,'Tgstation.Server.Host.IO.WindowsPostWriteHandler.HandleWrite()']]], - ['harddisconnect_3256',['HardDisconnect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ae40d9c01f43f39853f2bf8f15499579d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['headersexception_3257',['HeadersException',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#aea4ff497551fee28100932b2bec4553a',1,'Tgstation.Server.Api.HeadersException.HeadersException(HeaderTypes missingOrMalformedHeaders, string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a7fff1509be86f8b7bad2d574ab3be8c6',1,'Tgstation.Server.Api.HeadersException.HeadersException()'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a59ab85e3c04d1811211dd6b5363f8b18',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a87b0e65abdc9cfacf7b80d28cfaa160f',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message, Exception innerException)']]], - ['headersissue_3258',['HeadersIssue',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a4c0455f507601bb0044375f6237c97b7',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['home_3259',['Home',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a03d7bf4a2c99507c1c69d1b76eee96c8',1,'Tgstation::Server::Host::Controllers::HomeController']]], - ['homecontroller_3260',['HomeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a2ef2c0df0b940206d51e74f0748098da',1,'Tgstation::Server::Host::Controllers::HomeController']]], - ['httpclient_3261',['HttpClient',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#ae30abd8d943980aeb8c192df877b7df8',1,'Tgstation::Server::Client::HttpClient']]] + ['handlebadresponse_3326',['HandleBadResponse',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a7b81831316898d1d92a5103d3ecf145b',1,'Tgstation::Server::Client::ApiClient']]], + ['handlechatcommand_3327',['HandleChatCommand',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_custom_command_handler.html#a0a3d290a61fd94176c66692b35035eb2',1,'Tgstation.Server.Host.Components.Chat.ICustomCommandHandler.HandleChatCommand()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a59a2116696ef8c2e84761a4f25d8d957',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleChatCommand()']]], + ['handleevent_3328',['HandleEvent',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a574b2b2de6422a7e43d448fa66f9a0e3',1,'Tgstation.Server.Host.Components.Events.EventConsumer.HandleEvent()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_i_event_consumer.html#ac217567aa6bd7e43c8cfd976eee05aac',1,'Tgstation.Server.Host.Components.Events.IEventConsumer.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a36ececa58c0e6f8781147e44872076c6',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.HandleEvent()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1b043f3ab25e84bc675dd5455cbf3f52',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleEvent()']]], + ['handleheartbeat_3329',['HandleHeartbeat',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a32ebad8014be63eb29e7a894cdbfcaf1',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['handlemessage_3330',['HandleMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a942b5d525b0855ff6c8b59e0d5f6e7eb',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['handlemonitorwakeup_3331',['HandleMonitorWakeup',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a056db8ac9f376f053c671df0e7371ed4',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleMonitorWakeup()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ab9f2e91c85cfad158762e6cb78c40805',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleMonitorWakeup()']]], + ['handlenewdmbavailable_3332',['HandleNewDmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ad6789a31cac393a9677e9680154384ac',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNewDmbAvailable()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a8e8934ab54a29d00c8a6b6b39bd29cb1',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNewDmbAvailable()']]], + ['handlenormalreboot_3333',['HandleNormalReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#af8567833e063aa202e48b7f655892b1d',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.HandleNormalReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a99e293efee828060ee1075ac1096cf9e',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.HandleNormalReboot()']]], + ['handlerestart_3334',['HandleRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abfc2c178a071f0a8450c0aaa82af9426',1,'Tgstation.Server.Host.Components.Chat.ChatManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a2fd05864a3a2b706516784e14afaecc6',1,'Tgstation.Server.Host.Components.InstanceManager.HandleRestart()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#ad78e8addece7234fb29cffe96a18442e',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.HandleRestart()'],['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_restart_handler.html#ad7bcde59a7297d1ef3770943af92a93d',1,'Tgstation.Server.Host.Core.IRestartHandler.HandleRestart()']]], + ['handlewrite_3335',['HandleWrite',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_post_write_handler.html#a977c03596e21a07e06d7bc3735c6884f',1,'Tgstation.Server.Host.IO.IPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a43d2add7500e5047fd259d1291ada0bc',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.HandleWrite()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_windows_post_write_handler.html#a94fe62fd0f170cca8a95674408a1ede4',1,'Tgstation.Server.Host.IO.WindowsPostWriteHandler.HandleWrite()']]], + ['harddisconnect_3336',['HardDisconnect',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ae40d9c01f43f39853f2bf8f15499579d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['headersexception_3337',['HeadersException',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#aea4ff497551fee28100932b2bec4553a',1,'Tgstation.Server.Api.HeadersException.HeadersException(HeaderTypes missingOrMalformedHeaders, string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a7fff1509be86f8b7bad2d574ab3be8c6',1,'Tgstation.Server.Api.HeadersException.HeadersException()'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a59ab85e3c04d1811211dd6b5363f8b18',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message)'],['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#a87b0e65abdc9cfacf7b80d28cfaa160f',1,'Tgstation.Server.Api.HeadersException.HeadersException(string message, Exception innerException)']]], + ['headersissue_3338',['HeadersIssue',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a4c0455f507601bb0044375f6237c97b7',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['home_3339',['Home',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a03d7bf4a2c99507c1c69d1b76eee96c8',1,'Tgstation::Server::Host::Controllers::HomeController']]], + ['homecontroller_3340',['HomeController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a2ef2c0df0b940206d51e74f0748098da',1,'Tgstation::Server::Host::Controllers::HomeController']]], + ['httpclient_3341',['HttpClient',['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#ae30abd8d943980aeb8c192df877b7df8',1,'Tgstation::Server::Client::HttpClient']]] ]; diff --git a/search/functions_8.html b/search/functions_8.html index 8600cab528..bd4bf6f815 100644 --- a/search/functions_8.html +++ b/search/functions_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_8.js b/search/functions_8.js index 52752eabf7..bb97f63fb6 100644 --- a/search/functions_8.js +++ b/search/functions_8.js @@ -1,35 +1,37 @@ var searchData= [ - ['identitycache_3262',['IdentityCache',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#aa3cdd5649c32a1249a2398343e82f343',1,'Tgstation::Server::Host::Security::IdentityCache']]], - ['identitycacheobject_3263',['IdentityCacheObject',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a77e5495fa90b8eed2f2d86c6fb711da8',1,'Tgstation::Server::Host::Security::IdentityCacheObject']]], - ['infinitetask_3264',['InfiniteTask',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a81dec7122d90677b97a3b1f2c84440cf',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], - ['initcontrollers_3265',['InitControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a33718a8a97983fa9fb12c0d27bec8732',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a848a86aa5ceb25bdab6d4957494ef166',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a4b0a1532e11c7f7a5695123bac28c0ab',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InitControllers()']]], - ['initialize_3266',['Initialize',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a453f07e4addb58e08b4ce0ddfb84e357',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Initialize()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a62bc67dd82ccf210c92c01966640cb64',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Initialize()']]], - ['initiallink_3267',['InitialLink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a4f3509ee8b0e7e47f95c9fba8cce33e3',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitialLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a95894cd21ba5de89171ff97a53b7130c',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.InitialLink()']]], - ['injectclaimsintocontext_3268',['InjectClaimsIntoContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a68b33948ac77f08ab2dc17209ce78314',1,'Tgstation.Server.Host.Security.ClaimsInjector.InjectClaimsIntoContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html#ac15d0e829afdb2e3523f6ea38879759e',1,'Tgstation.Server.Host.Security.IClaimsInjector.InjectClaimsIntoContext()']]], - ['installbyond_3269',['InstallByond',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aba649f661759b2da61f51f112d060f85',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.InstallByond()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a8fec89a87bef1153e103e4b3349fb27b',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a91ccfa2ffcfce658cf045b37de2aa153',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a791ef513301c98f21808049b43f6db36',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.InstallByond()']]], - ['installedversions_3270',['InstalledVersions',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a58ad28bf73680ade13cd1bf1ebece987',1,'Tgstation.Server.Client.Components.ByondClient.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a1538f8488e7866c4986afe7d3b7ef1a0',1,'Tgstation.Server.Client.Components.IByondClient.InstalledVersions()']]], - ['installversion_3271',['InstallVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a4bddb77bd7ead9f87e24380a35b4e7e0',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['instance_3272',['Instance',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4ec856fefa4de5eba884c0392cece9b9',1,'Tgstation.Server.Host.Components.Instance.Instance()']]], - ['instanceadminuser_3273',['InstanceAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a5af7adb80dadd03c8e37f196357aa861',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['instanceclient_3274',['InstanceClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af44767648e0b31f744ea09f0864c70ca',1,'Tgstation::Server::Client::Components::InstanceClient']]], - ['instancecontainer_3275',['InstanceContainer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#af82fc6acfe4860979ca9c7bc4e188537',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['instancecontroller_3276',['InstanceController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aae605f4084115d20fb47da5370708e53',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['instancefactory_3277',['InstanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad114c9e0305d14f78502d60bcfbdedc',1,'Tgstation::Server::Host::Components::InstanceFactory']]], - ['instancemanager_3278',['InstanceManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a1ea0b9c26cf8246544575d8705adaeb5',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['instancemanagerclient_3279',['InstanceManagerClient',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a2d6043c1548bc86551fe56f12a78d4cb',1,'Tgstation::Server::Client::InstanceManagerClient']]], - ['instancerenamed_3280',['InstanceRenamed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a83fd03b9f768637cd654e3aca814d1ee',1,'Tgstation.Server.Host.Components.Instance.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ac6481d23a77a9c099df0e8d62024c245',1,'Tgstation.Server.Host.Components.InstanceWrapper.InstanceRenamed()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html#a69fed1472e47f53392237645d5d65d7a',1,'Tgstation.Server.Host.Components.IRenameNotifyee.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a903d2a63951a7425699c6936160826d7',1,'Tgstation.Server.Host.Components.Session.SessionController.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#aea63863a921d33b97558500dab1b74e3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a3ca371ec92c273cd6b3ab2f6931f8a65',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InstanceRenamed()']]], - ['instancerequiredcontroller_3281',['InstanceRequiredController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a8b5ef7433a5d9f43de5a927211c56d15',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], - ['instanceuser_3282',['InstanceUser',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)']]], - ['instanceuserclient_3283',['InstanceUserClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a2ae6151c326432db1eaba0373f73733f',1,'Tgstation::Server::Client::Components::InstanceUserClient']]], - ['instanceusercontroller_3284',['InstanceUserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#ab4cec86ff2546bffbf8c34409e70db18',1,'Tgstation::Server::Host::Controllers::InstanceUserController']]], - ['instancewrapper_3285',['InstanceWrapper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a3e7066925de75bb14f70fc25799b1ae8',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], - ['insufficientpermissionsexception_3286',['InsufficientPermissionsException',['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a9b84ac4233e3147d263c8cbe7d15f81f',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a03f411a80e2a3bd6c8f789737459f475',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a611c12ed0eb292ab571c23fac254c1de',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message, Exception innerException)']]], - ['invoke_3287',['Invoke',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aff1db476b01426242e3e7bbceab29269',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a25ab08ad3ea95e7a9f36331508835415',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Invoke()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aec41b4a7dc4cfad84b6af984ecc358b3',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ae7ff41e55394f44dc9961e8e1fd48e82',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#aa2acf1a5c23b69b03518dff1249a8d7f',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#ab92179ae88df722d697ebc27d9b70d7d',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a53052185d1d9a53ecb098443b47a033d',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Invoke()']]], - ['ircconnectionstringbuilder_3288',['IrcConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#aaca6717795e0914dd265e40bdeb9e045',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7334c0cb968cb00c1bbe1c5fd3a05e33',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder(string connectionString)']]], - ['ircprovider_3289',['IrcProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ac70109905b392e48e33911b5267e800c',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['isadministrator_3290',['IsAdministrator',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5c942ce276ce92ca31ecbe9c88f2e982',1,'Tgstation::Server::Host::Service::Program']]], - ['isdirectory_3291',['IsDirectory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a6b94d0c1144161066ce9707231026fe3',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.IsDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ac1b1a366625c83d9e7cc57acabca1d98',1,'Tgstation.Server.Host.IO.SynchronousIOManager.IsDirectory()']]], - ['isinstanceright_3292',['IsInstanceRight',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a40d32838ff902da852c54215bd8e89fb',1,'Tgstation::Server::Api::Rights::RightsHelper']]], - ['issha_3293',['IsSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ac03c80ad5ffb1ee381dd882fa7a01c3c',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2d7497e82967ff9a18368a100c58bf1',1,'Tgstation.Server.Host.Components.Repository.Repository.IsSha()']]] + ['identitycache_3342',['IdentityCache',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#aa3cdd5649c32a1249a2398343e82f343',1,'Tgstation::Server::Host::Security::IdentityCache']]], + ['identitycacheobject_3343',['IdentityCacheObject',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a77e5495fa90b8eed2f2d86c6fb711da8',1,'Tgstation::Server::Host::Security::IdentityCacheObject']]], + ['infinitetask_3344',['InfiniteTask',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_task_extensions.html#a81dec7122d90677b97a3b1f2c84440cf',1,'Tgstation::Server::Host::Extensions::TaskExtensions']]], + ['initcontrollers_3345',['InitControllers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a33718a8a97983fa9fb12c0d27bec8732',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a848a86aa5ceb25bdab6d4957494ef166',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitControllers()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a4b0a1532e11c7f7a5695123bac28c0ab',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InitControllers()']]], + ['initialconnection_3346',['InitialConnection',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a422e8e55e6988c994b23eaaf16cf0498',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['initialize_3347',['Initialize',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a453f07e4addb58e08b4ce0ddfb84e357',1,'Tgstation.Server.Host.Database.DatabaseSeeder.Initialize()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_seeder.html#a62bc67dd82ccf210c92c01966640cb64',1,'Tgstation.Server.Host.Database.IDatabaseSeeder.Initialize()']]], + ['initiallink_3348',['InitialLink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a4f3509ee8b0e7e47f95c9fba8cce33e3',1,'Tgstation.Server.Host.Components.Watchdog.PosixWatchdog.InitialLink()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a95894cd21ba5de89171ff97a53b7130c',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.InitialLink()']]], + ['injectclaimsintocontext_3349',['InjectClaimsIntoContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a68b33948ac77f08ab2dc17209ce78314',1,'Tgstation.Server.Host.Security.ClaimsInjector.InjectClaimsIntoContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_claims_injector.html#ac15d0e829afdb2e3523f6ea38879759e',1,'Tgstation.Server.Host.Security.IClaimsInjector.InjectClaimsIntoContext()']]], + ['installbyond_3350',['InstallByond',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#aba649f661759b2da61f51f112d060f85',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.InstallByond()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a8fec89a87bef1153e103e4b3349fb27b',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a91ccfa2ffcfce658cf045b37de2aa153',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.InstallByond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a89436c16bb220487bf376cc456ee753e',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.InstallByond()']]], + ['installdirectx_3351',['InstallDirectX',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ace687a0a8ab8b2c11dfa48715dc83c87',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['installedversions_3352',['InstalledVersions',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a58ad28bf73680ade13cd1bf1ebece987',1,'Tgstation.Server.Client.Components.ByondClient.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_byond_client.html#a1538f8488e7866c4986afe7d3b7ef1a0',1,'Tgstation.Server.Client.Components.IByondClient.InstalledVersions()']]], + ['installversion_3353',['InstallVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a4bddb77bd7ead9f87e24380a35b4e7e0',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['instance_3354',['Instance',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#ad77819a87cb51a027c4b9b460b382ccd',1,'Tgstation.Server.Client.InstanceManagerClient.Instance(Routes.InstanceManager, instance ?? throw new ArgumentNullException(nameof(instance)), cancellationToken)'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4ec856fefa4de5eba884c0392cece9b9',1,'Tgstation.Server.Host.Components.Instance.Instance()']]], + ['instanceadminuser_3355',['InstanceAdminUser',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a5af7adb80dadd03c8e37f196357aa861',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['instanceclient_3356',['InstanceClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af44767648e0b31f744ea09f0864c70ca',1,'Tgstation::Server::Client::Components::InstanceClient']]], + ['instancecontainer_3357',['InstanceContainer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#af82fc6acfe4860979ca9c7bc4e188537',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['instancecontroller_3358',['InstanceController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aae605f4084115d20fb47da5370708e53',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['instancefactory_3359',['InstanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aad114c9e0305d14f78502d60bcfbdedc',1,'Tgstation::Server::Host::Components::InstanceFactory']]], + ['instancemanager_3360',['InstanceManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a1ea0b9c26cf8246544575d8705adaeb5',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['instancemanagerclient_3361',['InstanceManagerClient',['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a2d6043c1548bc86551fe56f12a78d4cb',1,'Tgstation::Server::Client::InstanceManagerClient']]], + ['instancerenamed_3362',['InstanceRenamed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a83fd03b9f768637cd654e3aca814d1ee',1,'Tgstation.Server.Host.Components.Instance.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ac6481d23a77a9c099df0e8d62024c245',1,'Tgstation.Server.Host.Components.InstanceWrapper.InstanceRenamed()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_rename_notifyee.html#a69fed1472e47f53392237645d5d65d7a',1,'Tgstation.Server.Host.Components.IRenameNotifyee.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a903d2a63951a7425699c6936160826d7',1,'Tgstation.Server.Host.Components.Session.SessionController.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#aea63863a921d33b97558500dab1b74e3',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.InstanceRenamed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a3ca371ec92c273cd6b3ab2f6931f8a65',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.InstanceRenamed()']]], + ['instancerequiredcontroller_3363',['InstanceRequiredController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a8b5ef7433a5d9f43de5a927211c56d15',1,'Tgstation::Server::Host::Controllers::InstanceRequiredController']]], + ['instanceuser_3364',['InstanceUser',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#ab42261638618edd8ca94398807f74812',1,'Tgstation.Server.Client.Components.InstanceUserClient.InstanceUser(Routes.InstanceUser, instanceUser ?? throw new ArgumentNullException(nameof(instanceUser)), instance.Id, cancellationToken)']]], + ['instanceuserclient_3365',['InstanceUserClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a2ae6151c326432db1eaba0373f73733f',1,'Tgstation::Server::Client::Components::InstanceUserClient']]], + ['instanceusercontroller_3366',['InstanceUserController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#ab4cec86ff2546bffbf8c34409e70db18',1,'Tgstation::Server::Host::Controllers::InstanceUserController']]], + ['instancewrapper_3367',['InstanceWrapper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a3e7066925de75bb14f70fc25799b1ae8',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], + ['insufficientpermissionsexception_3368',['InsufficientPermissionsException',['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a9b84ac4233e3147d263c8cbe7d15f81f',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a03f411a80e2a3bd6c8f789737459f475',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_insufficient_permissions_exception.html#a611c12ed0eb292ab571c23fac254c1de',1,'Tgstation.Server.Client.InsufficientPermissionsException.InsufficientPermissionsException(string message, Exception innerException)']]], + ['invoke_3369',['Invoke',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aff1db476b01426242e3e7bbceab29269',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a25ab08ad3ea95e7a9f36331508835415',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Invoke()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aec41b4a7dc4cfad84b6af984ecc358b3',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ae7ff41e55394f44dc9961e8e1fd48e82',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#aa2acf1a5c23b69b03518dff1249a8d7f',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#ab92179ae88df722d697ebc27d9b70d7d',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Invoke()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a53052185d1d9a53ecb098443b47a033d',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Invoke()']]], + ['ircconnectionstringbuilder_3370',['IrcConnectionStringBuilder',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#aaca6717795e0914dd265e40bdeb9e045',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7334c0cb968cb00c1bbe1c5fd3a05e33',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.IrcConnectionStringBuilder(string connectionString)']]], + ['ircprovider_3371',['IrcProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#ac70109905b392e48e33911b5267e800c',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['isadministrator_3372',['IsAdministrator',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5c942ce276ce92ca31ecbe9c88f2e982',1,'Tgstation::Server::Host::Service::Program']]], + ['isdirectory_3373',['IsDirectory',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_synchronous_i_o_manager.html#a6b94d0c1144161066ce9707231026fe3',1,'Tgstation.Server.Host.IO.ISynchronousIOManager.IsDirectory()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_synchronous_i_o_manager.html#ac1b1a366625c83d9e7cc57acabca1d98',1,'Tgstation.Server.Host.IO.SynchronousIOManager.IsDirectory()']]], + ['isinstanceright_3374',['IsInstanceRight',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a40d32838ff902da852c54215bd8e89fb',1,'Tgstation::Server::Api::Rights::RightsHelper']]], + ['issha_3375',['IsSha',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ac03c80ad5ffb1ee381dd882fa7a01c3c',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsSha()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad2d7497e82967ff9a18368a100c58bf1',1,'Tgstation.Server.Host.Components.Repository.Repository.IsSha()']]] ]; diff --git a/search/functions_9.html b/search/functions_9.html index 76e3e2ca8c..a67995931e 100644 --- a/search/functions_9.html +++ b/search/functions_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_9.js b/search/functions_9.js index edd6cb5a40..9ceb1320e4 100644 --- a/search/functions_9.js +++ b/search/functions_9.js @@ -1,10 +1,10 @@ var searchData= [ - ['jobcontroller_3294',['JobController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a916f535814cbba3c0b6323ec5a3fa74d',1,'Tgstation::Server::Host::Controllers::JobController']]], - ['jobentrypoint_3295',['JobEntrypoint',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html#abe2e95d4f3351023b424d607ba514854',1,'Tgstation::Server::Host::Jobs']]], - ['jobexception_3296',['JobException',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a46d729b832783633424eca227d647698',1,'Tgstation.Server.Host.Jobs.JobException.JobException()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a7b6da48367ccdaf22ed94e1aaae7c7f4',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ab90956baed9bae34717eeee86d4d65b5',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message, Exception innerException)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ae44a780c8217e43f05104147458653f2',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#abc852516b8aa2466be3b7c2f37c40239',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode, Exception innerException)']]], - ['jobhandler_3297',['JobHandler',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a20c3e8bbcb9467b6b861f9bb05c36072',1,'Tgstation::Server::Host::Jobs::JobHandler']]], - ['jobmanager_3298',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#af824442dea2e6d9fcfda4c4d67b35c2e',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['jobprogress_3299',['JobProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#ae7faeff247c3770617a353653bf21c4c',1,'Tgstation.Server.Host.Jobs.IJobManager.JobProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a6a3b177c596c04fc167b8a56c70289af',1,'Tgstation.Server.Host.Jobs.JobManager.JobProgress()']]], - ['jobsclient_3300',['JobsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ffef36f7b69e7c76e31af3958797846',1,'Tgstation::Server::Client::Components::JobsClient']]] + ['jobcontroller_3376',['JobController',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a916f535814cbba3c0b6323ec5a3fa74d',1,'Tgstation::Server::Host::Controllers::JobController']]], + ['jobentrypoint_3377',['JobEntrypoint',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html#abe2e95d4f3351023b424d607ba514854',1,'Tgstation::Server::Host::Jobs']]], + ['jobexception_3378',['JobException',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a46d729b832783633424eca227d647698',1,'Tgstation.Server.Host.Jobs.JobException.JobException()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a7b6da48367ccdaf22ed94e1aaae7c7f4',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ab90956baed9bae34717eeee86d4d65b5',1,'Tgstation.Server.Host.Jobs.JobException.JobException(string message, Exception innerException)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#ae44a780c8217e43f05104147458653f2',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode)'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#abc852516b8aa2466be3b7c2f37c40239',1,'Tgstation.Server.Host.Jobs.JobException.JobException(ErrorCode errorCode, Exception innerException)']]], + ['jobhandler_3379',['JobHandler',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a20c3e8bbcb9467b6b861f9bb05c36072',1,'Tgstation::Server::Host::Jobs::JobHandler']]], + ['jobmanager_3380',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#af824442dea2e6d9fcfda4c4d67b35c2e',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['jobprogress_3381',['JobProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_i_job_manager.html#ae7faeff247c3770617a353653bf21c4c',1,'Tgstation.Server.Host.Jobs.IJobManager.JobProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a6a3b177c596c04fc167b8a56c70289af',1,'Tgstation.Server.Host.Jobs.JobManager.JobProgress()']]], + ['jobsclient_3382',['JobsClient',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ffef36f7b69e7c76e31af3958797846',1,'Tgstation::Server::Client::Components::JobsClient']]] ]; diff --git a/search/functions_a.html b/search/functions_a.html index 81836b95a1..df9ec09b73 100644 --- a/search/functions_a.html +++ b/search/functions_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_a.js b/search/functions_a.js index 2f2f8e3d6b..788b27fd58 100644 --- a/search/functions_a.js +++ b/search/functions_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['keepalive_3301',['KeepAlive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a9ce388dd865b9a5748e165a394d71682',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.KeepAlive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a01b014f3713b09cdbc9093bc1bbc0164',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a862bd6a1a165d202a6078a955d0f4a4d',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f2e4158c705ff6e500959c0d68cb89c',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.KeepAlive()']]] + ['keepalive_3383',['KeepAlive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a9ce388dd865b9a5748e165a394d71682',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.KeepAlive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a01b014f3713b09cdbc9093bc1bbc0164',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a862bd6a1a165d202a6078a955d0f4a4d',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.KeepAlive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f2e4158c705ff6e500959c0d68cb89c',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.KeepAlive()']]] ]; diff --git a/search/functions_b.html b/search/functions_b.html index 8c270d25f7..7f364a616c 100644 --- a/search/functions_b.html +++ b/search/functions_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_b.js b/search/functions_b.js index 3166fd23fd..e630a8b1ba 100644 --- a/search/functions_b.js +++ b/search/functions_b.js @@ -1,24 +1,24 @@ var searchData= [ - ['latestcompilejob_3302',['LatestCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6fe38a0d817315fc1bd52ffd47b9d3d5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LatestCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html#a12c574e4b8010e0005b77dd242c055e7',1,'Tgstation.Server.Host.Components.Deployment.ILatestCompileJobProvider.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4b1084d8d2850d408abae881013a47d9',1,'Tgstation.Server.Host.Components.Instance.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#abd32a6968afebbba4f51fe36826fd2f2',1,'Tgstation.Server.Host.Components.InstanceWrapper.LatestCompileJob()']]], - ['launch_3303',['Launch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afa6b3f10617f13ae7af79317594020e3',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Launch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af619caa031c183aa1aa5adbcf11a3434',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Launch()']]], - ['launchnew_3304',['LaunchNew',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#a668f15e64f55fafcf7bc5ce9933edf48',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.LaunchNew()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a2e3fbaee5882bbf0cae1b195808aa2d8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew()']]], - ['launchnolock_3305',['LaunchNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5d1f2571cdce3431ab477a9c9c3e6f4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['launchprocess_3306',['LaunchProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#ac496c8c47a22086a1cbb882c1c0d391c',1,'Tgstation.Server.Host.System.IProcessExecutor.LaunchProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a584a9d2372706363eb65754fa18f5ed3',1,'Tgstation.Server.Host.System.ProcessExecutor.LaunchProcess()']]], - ['libgit2repositoryfactory_3307',['LibGit2RepositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a98d05c01964113e38a0662bc3f45854b',1,'Tgstation::Server::Host::Components::Repository::LibGit2RepositoryFactory']]], - ['list_3308',['List',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2e101ca44e6cd38eb8feb5e92083a58b',1,'Tgstation.Server.Client.Components.ChatBotsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a9abb058e8e7dc5fb6449db904e3ba593',1,'Tgstation.Server.Client.Components.ConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ad482caafbf4b09fcd950b2121c384803',1,'Tgstation.Server.Client.Components.IChatBotsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a20e28735258c505105437c094634d3d3',1,'Tgstation.Server.Client.Components.IConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aa67a2d298305192f32b1e9567aeb9b96',1,'Tgstation.Server.Client.Components.IInstanceUserClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a093a80fc04aa333ba794b1912bcfc418',1,'Tgstation.Server.Client.Components.IJobsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a3854e076413652c6e243bba0404b4caf',1,'Tgstation.Server.Client.Components.InstanceUserClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ebf0782934ea0387aaac2a8b1314090',1,'Tgstation.Server.Client.Components.JobsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a4d9ba68cfba405ad7a75f7a704cd9949',1,'Tgstation.Server.Client.IInstanceManagerClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a90e8afdfd1ba96a1891ca1e6cefdd5e1',1,'Tgstation.Server.Client.InstanceManagerClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aee6bf0424f2533c0b5fdd9a14c530c83',1,'Tgstation.Server.Client.IUsersClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ae560ae12df2a21d293055557095cf173',1,'Tgstation.Server.Client.UsersClient.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a628eacbc3ea0bbec83ceb8f89ae8006a',1,'Tgstation.Server.Host.Controllers.ByondController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1db346728a09c30c7cf2501c33038490',1,'Tgstation.Server.Host.Controllers.ChatController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a1fe2069cd7d9960cf7eb5b7f11518b2e',1,'Tgstation.Server.Host.Controllers.ConfigurationController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ab23313465dd631de252786d53039ba92',1,'Tgstation.Server.Host.Controllers.DreamMakerController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa1974818becc34b9aa12a67f272016d2',1,'Tgstation.Server.Host.Controllers.InstanceController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a342e61ebf421b11ef4efbba8f497bea5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#adaf5db7d78be52afff530601c4468203',1,'Tgstation.Server.Host.Controllers.JobController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a353236ca8ecf842a8458111667be8f22',1,'Tgstation.Server.Host.Controllers.UserController.List()']]], - ['listactive_3309',['ListActive',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#ad0e3189ae3f28e20982cf4b853013725',1,'Tgstation.Server.Client.Components.IJobsClient.ListActive()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a6de35b6d2f313009107e2bb2e2cc4ac7',1,'Tgstation.Server.Client.Components.JobsClient.ListActive()']]], - ['listdirectory_3310',['ListDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a345e802c3d53374b244c935d2ae0047b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ListDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a92a08839e2a1abad8ab26431f27ae8c6',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.ListDirectory()']]], - ['listlogs_3311',['ListLogs',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aae9ea74b1fd163a771a6a563fb02ccaa',1,'Tgstation.Server.Client.AdministrationClient.ListLogs()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a87d1decb897faad52ff2fee928672473',1,'Tgstation.Server.Client.IAdministrationClient.ListLogs()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ad4b7ee25dc7ec160617061a6839ca2b7',1,'Tgstation.Server.Host.Controllers.AdministrationController.ListLogs()']]], - ['listroute_3312',['ListRoute',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a21a829d350fad918024f30fc9330a8e2',1,'Tgstation::Server::Api::Routes']]], - ['load_3313',['Load',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#a1893d3e0b81183484ed4d762fa8b8337',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Load()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a7dc6adc59691130ff12e19193e4f54dd',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Load()']]], - ['loadcachedidentity_3314',['LoadCachedIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a2697ebf18fec9213032f48fb5f351397',1,'Tgstation.Server.Host.Security.IdentityCache.LoadCachedIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#afc655c9c2d6af6086bcda5b6c54e1c41',1,'Tgstation.Server.Host.Security.IIdentityCache.LoadCachedIdentity()']]], - ['loadcompilejob_3315',['LoadCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa48032d06fd0ad559ab3b6a02e6bf2f7',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LoadCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html#a78892eb61b9c1875b0d2be83abfe481a',1,'Tgstation.Server.Host.Components.Deployment.ICompileJobSink.LoadCompileJob()']]], - ['loadrepository_3316',['LoadRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#aca54bc5a72d05e25cc361728e80b6f1c',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.LoadRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#afcab0cdc52ae45ecd0dfba5c7630e303',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.LoadRepository()']]], - ['loadrevisioninformation_3317',['LoadRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#aa50a2c5f9429a3b52acd47e157f93e47',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], - ['lock_3318',['Lock',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a01e4f4e2d775bd2bf0910a1f5c2f24ef',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], - ['locknextdmb_3319',['LockNextDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa5ae13811ef0862a54741653dc058783',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LockNextDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a565a84900113c480ae29535fa22ae175',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.LockNextDmb()']]], - ['logonuser_3320',['LogonUser',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a1dfa561b475b805169687e321251038c',1,'Tgstation::Server::Host::NativeMethods']]], - ['logrequest_3321',['LogRequest',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a865404ae66021a7a6d95c0688e51f51c',1,'Tgstation::Server::Client::IRequestLogger']]], - ['logresponse_3322',['LogResponse',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a685925403fc438eb5d3688ce8aca08b7',1,'Tgstation::Server::Client::IRequestLogger']]] + ['latestcompilejob_3384',['LatestCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6fe38a0d817315fc1bd52ffd47b9d3d5',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LatestCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_latest_compile_job_provider.html#a12c574e4b8010e0005b77dd242c055e7',1,'Tgstation.Server.Host.Components.Deployment.ILatestCompileJobProvider.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4b1084d8d2850d408abae881013a47d9',1,'Tgstation.Server.Host.Components.Instance.LatestCompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#abd32a6968afebbba4f51fe36826fd2f2',1,'Tgstation.Server.Host.Components.InstanceWrapper.LatestCompileJob()']]], + ['launch_3385',['Launch',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#afa6b3f10617f13ae7af79317594020e3',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Launch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af619caa031c183aa1aa5adbcf11a3434',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Launch()']]], + ['launchnew_3386',['LaunchNew',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller_factory.html#a668f15e64f55fafcf7bc5ce9933edf48',1,'Tgstation.Server.Host.Components.Session.ISessionControllerFactory.LaunchNew()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a2e3fbaee5882bbf0cae1b195808aa2d8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.LaunchNew()']]], + ['launchnolock_3387',['LaunchNoLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5d1f2571cdce3431ab477a9c9c3e6f4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['launchprocess_3388',['LaunchProcess',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_executor.html#ac496c8c47a22086a1cbb882c1c0d391c',1,'Tgstation.Server.Host.System.IProcessExecutor.LaunchProcess()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a584a9d2372706363eb65754fa18f5ed3',1,'Tgstation.Server.Host.System.ProcessExecutor.LaunchProcess()']]], + ['libgit2repositoryfactory_3389',['LibGit2RepositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a98d05c01964113e38a0662bc3f45854b',1,'Tgstation::Server::Host::Components::Repository::LibGit2RepositoryFactory']]], + ['list_3390',['List',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a2e101ca44e6cd38eb8feb5e92083a58b',1,'Tgstation.Server.Client.Components.ChatBotsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a9abb058e8e7dc5fb6449db904e3ba593',1,'Tgstation.Server.Client.Components.ConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_chat_bots_client.html#ad482caafbf4b09fcd950b2121c384803',1,'Tgstation.Server.Client.Components.IChatBotsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_configuration_client.html#a20e28735258c505105437c094634d3d3',1,'Tgstation.Server.Client.Components.IConfigurationClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_user_client.html#aa67a2d298305192f32b1e9567aeb9b96',1,'Tgstation.Server.Client.Components.IInstanceUserClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#a093a80fc04aa333ba794b1912bcfc418',1,'Tgstation.Server.Client.Components.IJobsClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#a3854e076413652c6e243bba0404b4caf',1,'Tgstation.Server.Client.Components.InstanceUserClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a9ebf0782934ea0387aaac2a8b1314090',1,'Tgstation.Server.Client.Components.JobsClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_instance_manager_client.html#a4d9ba68cfba405ad7a75f7a704cd9949',1,'Tgstation.Server.Client.IInstanceManagerClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a90e8afdfd1ba96a1891ca1e6cefdd5e1',1,'Tgstation.Server.Client.InstanceManagerClient.List()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_users_client.html#aee6bf0424f2533c0b5fdd9a14c530c83',1,'Tgstation.Server.Client.IUsersClient.List()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#ae560ae12df2a21d293055557095cf173',1,'Tgstation.Server.Client.UsersClient.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a628eacbc3ea0bbec83ceb8f89ae8006a',1,'Tgstation.Server.Host.Controllers.ByondController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_chat_controller.html#a1db346728a09c30c7cf2501c33038490',1,'Tgstation.Server.Host.Controllers.ChatController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a1fe2069cd7d9960cf7eb5b7f11518b2e',1,'Tgstation.Server.Host.Controllers.ConfigurationController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ab23313465dd631de252786d53039ba92',1,'Tgstation.Server.Host.Controllers.DreamMakerController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa1974818becc34b9aa12a67f272016d2',1,'Tgstation.Server.Host.Controllers.InstanceController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_user_controller.html#a342e61ebf421b11ef4efbba8f497bea5',1,'Tgstation.Server.Host.Controllers.InstanceUserController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#adaf5db7d78be52afff530601c4468203',1,'Tgstation.Server.Host.Controllers.JobController.List()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a353236ca8ecf842a8458111667be8f22',1,'Tgstation.Server.Host.Controllers.UserController.List()']]], + ['listactive_3391',['ListActive',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_jobs_client.html#ad0e3189ae3f28e20982cf4b853013725',1,'Tgstation.Server.Client.Components.IJobsClient.ListActive()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#a6de35b6d2f313009107e2bb2e2cc4ac7',1,'Tgstation.Server.Client.Components.JobsClient.ListActive()']]], + ['listdirectory_3392',['ListDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a345e802c3d53374b244c935d2ae0047b',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ListDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_i_configuration.html#a92a08839e2a1abad8ab26431f27ae8c6',1,'Tgstation.Server.Host.Components.StaticFiles.IConfiguration.ListDirectory()']]], + ['listlogs_3393',['ListLogs',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aae9ea74b1fd163a771a6a563fb02ccaa',1,'Tgstation.Server.Client.AdministrationClient.ListLogs()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_administration_client.html#a87d1decb897faad52ff2fee928672473',1,'Tgstation.Server.Client.IAdministrationClient.ListLogs()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ad4b7ee25dc7ec160617061a6839ca2b7',1,'Tgstation.Server.Host.Controllers.AdministrationController.ListLogs()']]], + ['listroute_3394',['ListRoute',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a21a829d350fad918024f30fc9330a8e2',1,'Tgstation::Server::Api::Routes']]], + ['load_3395',['Load',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_persistor.html#a1893d3e0b81183484ed4d762fa8b8337',1,'Tgstation.Server.Host.Components.Session.ISessionPersistor.Load()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a7dc6adc59691130ff12e19193e4f54dd',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.Load()']]], + ['loadcachedidentity_3396',['LoadCachedIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a2697ebf18fec9213032f48fb5f351397',1,'Tgstation.Server.Host.Security.IdentityCache.LoadCachedIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_identity_cache.html#afc655c9c2d6af6086bcda5b6c54e1c41',1,'Tgstation.Server.Host.Security.IIdentityCache.LoadCachedIdentity()']]], + ['loadcompilejob_3397',['LoadCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa48032d06fd0ad559ab3b6a02e6bf2f7',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LoadCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_compile_job_sink.html#a78892eb61b9c1875b0d2be83abfe481a',1,'Tgstation.Server.Host.Components.Deployment.ICompileJobSink.LoadCompileJob()']]], + ['loadrepository_3398',['LoadRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#aca54bc5a72d05e25cc361728e80b6f1c',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.LoadRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#afcab0cdc52ae45ecd0dfba5c7630e303',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.LoadRepository()']]], + ['loadrevisioninformation_3399',['LoadRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#aa50a2c5f9429a3b52acd47e157f93e47',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], + ['lock_3400',['Lock',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#a01e4f4e2d775bd2bf0910a1f5c2f24ef',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], + ['locknextdmb_3401',['LockNextDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#aa5ae13811ef0862a54741653dc058783',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.LockNextDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#a565a84900113c480ae29535fa22ae175',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.LockNextDmb()']]], + ['logonuser_3402',['LogonUser',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a1dfa561b475b805169687e321251038c',1,'Tgstation::Server::Host::NativeMethods']]], + ['logrequest_3403',['LogRequest',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a865404ae66021a7a6d95c0688e51f51c',1,'Tgstation::Server::Client::IRequestLogger']]], + ['logresponse_3404',['LogResponse',['../interface_tgstation_1_1_server_1_1_client_1_1_i_request_logger.html#a685925403fc438eb5d3688ce8aca08b7',1,'Tgstation::Server::Client::IRequestLogger']]] ]; diff --git a/search/functions_c.html b/search/functions_c.html index af1234d021..2dda530a6e 100644 --- a/search/functions_c.html +++ b/search/functions_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_c.js b/search/functions_c.js index 07f2887c7e..630f9d8e26 100644 --- a/search/functions_c.js +++ b/search/functions_c.js @@ -1,18 +1,19 @@ var searchData= [ - ['main_3323',['Main',['../class_tgstation_1_1_server_1_1_host_1_1_program.html#ad9df0f26f38c75cf0c376910caef770c',1,'Tgstation.Server.Host.Program.Main()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a626a9a4670edb87ce05328762d46cf8f',1,'Tgstation.Server.Host.Service.Program.Main()']]], - ['makeactive_3324',['MakeActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#aad43d92c91213a21064a18f0006a310b',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['mapchannels_3325',['MapChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a8f3c3fbf096a7118ad96f94838852028',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.MapChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acb8970c1062c37761b832ea9aa4f3254',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a11c9e7a1c9b6ec1fdeb711f1ab519713',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac08fc8e6866dc5659c16a28840674cdc',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.MapChannels()']]], - ['mergeorigin_3326',['MergeOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a2911d39fd36e857c0d77503fc5c41a94',1,'Tgstation.Server.Host.Components.Repository.IRepository.MergeOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aa2437784b303f5c523a6638d717919eb',1,'Tgstation.Server.Host.Components.Repository.Repository.MergeOrigin()']]], - ['methodnotsupportedexception_3327',['MethodNotSupportedException',['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a6f42485beb2334c310038cc39e0a8f5c',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a37543ec8aabe8b8fa96a15243d02e318',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a5b0a4306e368279a8b18f50a7ad6bb63',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message, Exception innerException)']]], - ['migrate_3328',['Migrate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a56bbcd54599c04c0d8c6977fd6908804',1,'Tgstation.Server.Host.Database.DatabaseContext.Migrate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac03f819c07cb242b5257f5c158235b06',1,'Tgstation.Server.Host.Database.IDatabaseContext.Migrate()']]], - ['minidumpwritedump_3329',['MiniDumpWriteDump',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a61d55043e027524245f877070f168e45',1,'Tgstation::Server::Host::NativeMethods']]], - ['modifydme_3330',['ModifyDme',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1f48709bfdc0a2d5f675a2a2862755aa',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['monitorlifetimes_3331',['MonitorLifetimes',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#adfec26f530228b80d384b86ee979ef2f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['monitormessages_3332',['MonitorMessages',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a530e8ef5a58711a9c6744021df74afb2',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['monitorrestart_3333',['MonitorRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24fd29d12e91f659010d483228be1225',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['movedirectory_3334',['MoveDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5c7c3fb8d450153922c11e37ea118f62',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad8dc6ae8e69047b801a7344b17d0cc37',1,'Tgstation.Server.Host.IO.IIOManager.MoveDirectory()']]], - ['movefile_3335',['MoveFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a2ecf7ea4ad7cadd294a1a4882e56a812',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a2dff052035f4d3d0c689d0e89d8deecd',1,'Tgstation.Server.Host.IO.IIOManager.MoveFile()']]], - ['moveinstance_3336',['MoveInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a49689525bbd1c48b33d8e5902d6129f5',1,'Tgstation.Server.Host.Components.IInstanceManager.MoveInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a232e9720186876671fb9709f433a507b',1,'Tgstation.Server.Host.Components.InstanceManager.MoveInstance()']]], - ['mysqldatabasecontext_3337',['MySqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#aba92933ea065139f2f91518346dbd9c0',1,'Tgstation::Server::Host::Database::MySqlDatabaseContext']]] + ['main_3405',['Main',['../class_tgstation_1_1_server_1_1_host_1_1_program.html#ad9df0f26f38c75cf0c376910caef770c',1,'Tgstation.Server.Host.Program.Main()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a626a9a4670edb87ce05328762d46cf8f',1,'Tgstation.Server.Host.Service.Program.Main()']]], + ['makeactive_3406',['MakeActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#aad43d92c91213a21064a18f0006a310b',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['mapchannels_3407',['MapChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a8f3c3fbf096a7118ad96f94838852028',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.MapChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acb8970c1062c37761b832ea9aa4f3254',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a11c9e7a1c9b6ec1fdeb711f1ab519713',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.MapChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac08fc8e6866dc5659c16a28840674cdc',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.MapChannels()']]], + ['markinactive_3408',['MarkInactive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a0b24dc2fd63d512f421c33034f19d797',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.MarkInactive()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_git_hub_deployment_manager.html#a1be750d6c4665373d98645a890db78fb',1,'Tgstation.Server.Host.Components.Deployment.IGitHubDeploymentManager.MarkInactive()']]], + ['mergeorigin_3409',['MergeOrigin',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a2911d39fd36e857c0d77503fc5c41a94',1,'Tgstation.Server.Host.Components.Repository.IRepository.MergeOrigin()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aa2437784b303f5c523a6638d717919eb',1,'Tgstation.Server.Host.Components.Repository.Repository.MergeOrigin()']]], + ['methodnotsupportedexception_3410',['MethodNotSupportedException',['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a6f42485beb2334c310038cc39e0a8f5c',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(ErrorMessage? errorMessage, HttpResponseMessage responseMessage)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a37543ec8aabe8b8fa96a15243d02e318',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message)'],['../class_tgstation_1_1_server_1_1_client_1_1_method_not_supported_exception.html#a5b0a4306e368279a8b18f50a7ad6bb63',1,'Tgstation.Server.Client.MethodNotSupportedException.MethodNotSupportedException(string message, Exception innerException)']]], + ['migrate_3411',['Migrate',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a56bbcd54599c04c0d8c6977fd6908804',1,'Tgstation.Server.Host.Database.DatabaseContext.Migrate()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ac03f819c07cb242b5257f5c158235b06',1,'Tgstation.Server.Host.Database.IDatabaseContext.Migrate()']]], + ['minidumpwritedump_3412',['MiniDumpWriteDump',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a61d55043e027524245f877070f168e45',1,'Tgstation::Server::Host::NativeMethods']]], + ['modifydme_3413',['ModifyDme',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1f48709bfdc0a2d5f675a2a2862755aa',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['monitorlifetimes_3414',['MonitorLifetimes',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#adfec26f530228b80d384b86ee979ef2f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['monitormessages_3415',['MonitorMessages',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a530e8ef5a58711a9c6744021df74afb2',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['monitorrestart_3416',['MonitorRestart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24fd29d12e91f659010d483228be1225',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['movedirectory_3417',['MoveDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a5c7c3fb8d450153922c11e37ea118f62',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveDirectory()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#ad8dc6ae8e69047b801a7344b17d0cc37',1,'Tgstation.Server.Host.IO.IIOManager.MoveDirectory()']]], + ['movefile_3418',['MoveFile',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a2ecf7ea4ad7cadd294a1a4882e56a812',1,'Tgstation.Server.Host.IO.DefaultIOManager.MoveFile()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#a2dff052035f4d3d0c689d0e89d8deecd',1,'Tgstation.Server.Host.IO.IIOManager.MoveFile()']]], + ['moveinstance_3419',['MoveInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a49689525bbd1c48b33d8e5902d6129f5',1,'Tgstation.Server.Host.Components.IInstanceManager.MoveInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a232e9720186876671fb9709f433a507b',1,'Tgstation.Server.Host.Components.InstanceManager.MoveInstance()']]], + ['mysqldatabasecontext_3420',['MySqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#aba92933ea065139f2f91518346dbd9c0',1,'Tgstation::Server::Host::Database::MySqlDatabaseContext']]] ]; diff --git a/search/functions_d.html b/search/functions_d.html index 71165945c9..3771045d30 100644 --- a/search/functions_d.html +++ b/search/functions_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_d.js b/search/functions_d.js index 8e1f8f47b5..57d6e5c2cc 100644 --- a/search/functions_d.js +++ b/search/functions_d.js @@ -1,9 +1,9 @@ var searchData= [ - ['nextmessage_3338',['NextMessage',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ab6cd020395b652aa9d79c00497b739fb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.NextMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a962a3510e617d6754d8e21a237d4b933',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.NextMessage()']]], - ['nonblockinglisten_3339',['NonBlockingListen',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#af74b65e6c05dba2490bb2fb62bdb7f40',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['normalizeanddelete_3340',['NormalizeAndDelete',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab0629dee77100aa23cc5f7934efccdb7',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['normalizementions_3341',['NormalizeMentions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3cf5b9ba9079d6c9f582f61b5894f7c1',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], - ['normalizepath_3342',['NormalizePath',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8b8a858eef2c16d29e1aff3603f91cce',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['notfound_3343',['NotFound',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30874703840788ecc629d91fc7e15a5f',1,'Tgstation::Server::Host::Controllers::ApiController']]] + ['nextmessage_3421',['NextMessage',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#ab6cd020395b652aa9d79c00497b739fb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.NextMessage()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a962a3510e617d6754d8e21a237d4b933',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.NextMessage()']]], + ['nonblockinglisten_3422',['NonBlockingListen',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#af74b65e6c05dba2490bb2fb62bdb7f40',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['normalizeanddelete_3423',['NormalizeAndDelete',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ab0629dee77100aa23cc5f7934efccdb7',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['normalizementions_3424',['NormalizeMentions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a3cf5b9ba9079d6c9f582f61b5894f7c1',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], + ['normalizepath_3425',['NormalizePath',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a8b8a858eef2c16d29e1aff3603f91cce',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['notfound_3426',['NotFound',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a30874703840788ecc629d91fc7e15a5f',1,'Tgstation::Server::Host::Controllers::ApiController']]] ]; diff --git a/search/functions_e.html b/search/functions_e.html index 705e3de169..e354b3c831 100644 --- a/search/functions_e.html +++ b/search/functions_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_e.js b/search/functions_e.js index 3be458c16b..2935a5bdce 100644 --- a/search/functions_e.js +++ b/search/functions_e.js @@ -1,13 +1,13 @@ var searchData= [ - ['offlineinstance_3344',['OfflineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ad749e8ae302cb4f361be8e6641d8504f',1,'Tgstation.Server.Host.Components.IInstanceManager.OfflineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a77615fe1970391e6ebe643dc3033156f',1,'Tgstation.Server.Host.Components.InstanceManager.OfflineInstance()']]], - ['onactionexecutionasync_3345',['OnActionExecutionAsync',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae6314cf236db98c1e453639df84e8242',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['onexecuteasync_3346',['OnExecuteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a86d24d735c64eb7c67a935b809927dd4',1,'Tgstation::Server::Host::Service::Program']]], - ['onlineinstance_3347',['OnlineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#af016d9fc2c80b6b2849540f2cd1ddfda',1,'Tgstation.Server.Host.Components.IInstanceManager.OnlineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a00b4178d67ebc7ac4b0e3fe87484df15',1,'Tgstation.Server.Host.Components.InstanceManager.OnlineInstance()']]], - ['onmodelcreating_3348',['OnModelCreating',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a72af635ad6da50cf2f063acdef4a6347',1,'Tgstation.Server.Host.Database.DatabaseContext.OnModelCreating()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#ae56eb4773fc916d56607ccea5c02a354',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.OnModelCreating()']]], - ['onstart_3349',['OnStart',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a40bef17d85eb30f2cbad7ed81ef9c774',1,'Tgstation::Server::Host::Service::ServerService']]], - ['onstop_3350',['OnStop',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a6e54a00e5d8fc3f0629277f2bb7274ba',1,'Tgstation::Server::Host::Service::ServerService']]], - ['openapienumvarnamesextension_3351',['OpenApiEnumVarNamesExtension',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a325781de83b912f4783aa6d4077765fb',1,'Tgstation::Server::Host::Core::OpenApiEnumVarNamesExtension']]], - ['openthread_3352',['OpenThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a8680bb0a60dc39bc6652442a2fa9cdb4',1,'Tgstation::Server::Host::NativeMethods']]], - ['openwritestream_3353',['OpenWriteStream',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a888245bfe6d20d98807cec9257289a03',1,'Tgstation::Server::Host::IO::DefaultIOManager']]] + ['offlineinstance_3427',['OfflineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#ad749e8ae302cb4f361be8e6641d8504f',1,'Tgstation.Server.Host.Components.IInstanceManager.OfflineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a77615fe1970391e6ebe643dc3033156f',1,'Tgstation.Server.Host.Components.InstanceManager.OfflineInstance()']]], + ['onactionexecutionasync_3428',['OnActionExecutionAsync',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae6314cf236db98c1e453639df84e8242',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['onexecuteasync_3429',['OnExecuteAsync',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a86d24d735c64eb7c67a935b809927dd4',1,'Tgstation::Server::Host::Service::Program']]], + ['onlineinstance_3430',['OnlineInstance',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#af016d9fc2c80b6b2849540f2cd1ddfda',1,'Tgstation.Server.Host.Components.IInstanceManager.OnlineInstance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a00b4178d67ebc7ac4b0e3fe87484df15',1,'Tgstation.Server.Host.Components.InstanceManager.OnlineInstance()']]], + ['onmodelcreating_3431',['OnModelCreating',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a72af635ad6da50cf2f063acdef4a6347',1,'Tgstation.Server.Host.Database.DatabaseContext.OnModelCreating()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#ae56eb4773fc916d56607ccea5c02a354',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.OnModelCreating()']]], + ['onstart_3432',['OnStart',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a40bef17d85eb30f2cbad7ed81ef9c774',1,'Tgstation::Server::Host::Service::ServerService']]], + ['onstop_3433',['OnStop',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a6e54a00e5d8fc3f0629277f2bb7274ba',1,'Tgstation::Server::Host::Service::ServerService']]], + ['openapienumvarnamesextension_3434',['OpenApiEnumVarNamesExtension',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a325781de83b912f4783aa6d4077765fb',1,'Tgstation::Server::Host::Core::OpenApiEnumVarNamesExtension']]], + ['openthread_3435',['OpenThread',['../class_tgstation_1_1_server_1_1_host_1_1_native_methods.html#a8680bb0a60dc39bc6652442a2fa9cdb4',1,'Tgstation::Server::Host::NativeMethods']]], + ['openwritestream_3436',['OpenWriteStream',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a888245bfe6d20d98807cec9257289a03',1,'Tgstation::Server::Host::IO::DefaultIOManager']]] ]; diff --git a/search/functions_f.html b/search/functions_f.html index 7de862ca3a..b393fd1f26 100644 --- a/search/functions_f.html +++ b/search/functions_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/functions_f.js b/search/functions_f.js index a110df83f0..499b22ba3f 100644 --- a/search/functions_f.js +++ b/search/functions_f.js @@ -1,32 +1,32 @@ var searchData= [ - ['patch_3354',['Patch',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a74b6a4ca1f94c325e9fbc29296f9d674',1,'Tgstation.Server.Client.ApiClient.Patch()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae5ddeabc517efcf180f7286ead8158f5',1,'Tgstation.Server.Client.IApiClient.Patch()']]], - ['patch_3c_20tresult_20_3e_3355',['Patch< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a2c706947515724ff353a3b1422815ff8',1,'Tgstation.Server.Client.ApiClient.Patch< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a28294924cb1336289469fbfa5de2f61f',1,'Tgstation.Server.Client.IApiClient.Patch< TResult >()']]], - ['pathcontainsparentaccess_3356',['PathContainsParentAccess',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#aa2dfcb05f73420f251547ae0108b3222',1,'Tgstation.Server.Host.IO.DefaultIOManager.PathContainsParentAccess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af05931d02f5f5d95b87a56c0cc60d855',1,'Tgstation.Server.Host.IO.IIOManager.PathContainsParentAccess()']]], - ['platformidentifier_3357',['PlatformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ab29c252e971636fca5893880d01f9595',1,'Tgstation::Server::Host::System::PlatformIdentifier']]], - ['populateapi_3358',['PopulateApi',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a169541f29e0361eaba0bf8ba85624f10',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], - ['portbindtest_3359',['PortBindTest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#ad09ef01b75b51e2c4509bbe1e26265a3',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['posixbyondinstaller_3360',['PosixByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5b90fdbd196609a846fb761671b7346',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['posixpostwritehandler_3361',['PosixPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a25f458ab180e8c101a465aff3b1c70d8',1,'Tgstation::Server::Host::IO::PosixPostWriteHandler']]], - ['posixprocessfeatures_3362',['PosixProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a5c76e566e66544a36a2bab1650903201',1,'Tgstation::Server::Host::System::PosixProcessFeatures']]], - ['posixwatchdog_3363',['PosixWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a3ff39a96ed66843bcb93efaf90629e82',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdog']]], - ['posixwatchdogfactory_3364',['PosixWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#a2fb5ecdeefbbd75536c60de92b128136',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdogFactory']]], - ['postdeploymentcomments_3365',['PostDeploymentComments',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a7f309d059cbae88ab6941cf4b8f8e3f6',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['postgressqldatabasecontext_3366',['PostgresSqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a095ca8d3b284f60a8d0ded862559d5e9',1,'Tgstation::Server::Host::Database::PostgresSqlDatabaseContext']]], - ['postsetupservices_3367',['PostSetupServices',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#ae51e94325327c0b9bc6b30a2f3b59d89',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], - ['prepserverforlaunch_3368',['PrepServerForLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a9d89e8d95f629745bccad09d1fe5cf72',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.PrepServerForLaunch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#abb0bc53000b1d8c7555e765c9c30ce5d',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.PrepServerForLaunch()']]], - ['pressanykeyasync_3369',['PressAnyKeyAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad10bdc2971cb4068b3fe0d46aa7cb167',1,'Tgstation.Server.Host.IO.Console.PressAnyKeyAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ad674c458bbe343698fb0da3494bf3e37',1,'Tgstation.Server.Host.IO.IConsole.PressAnyKeyAsync()']]], - ['process_3370',['Process',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a1dd8fca5d57be939d8d04d4723788639',1,'Tgstation.Server.Host.Controllers.BridgeController.Process()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab03872788d0872e02ce5521a113eb9a9',1,'Tgstation.Server.Host.System.Process.Process()']]], - ['processbridgerequest_3371',['ProcessBridgeRequest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abd9eb0f8c590b9983279300be002d40e',1,'Tgstation.Server.Host.Components.InstanceManager.ProcessBridgeRequest()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html#aedd0ce59a5bb9d3692f73e92715798c3',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeDispatcher.ProcessBridgeRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#addf10bdb560585e28933161df7e31fef',1,'Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeRequest()']]], - ['processexecutor_3372',['ProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a391667cca8308cb0adb27851434cb3fe',1,'Tgstation::Server::Host::System::ProcessExecutor']]], - ['processmessage_3373',['ProcessMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13d3a724fb03c4546b7af6162336809c',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['programshutdowntokensource_3374',['ProgramShutdownTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ae6e3154f8ad5a672194b2956a31a4f39',1,'Tgstation::Server::Host::System::ProgramShutdownTokenSource']]], - ['progresstask_3375',['ProgressTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#af770863bfb53db309853603081906b38',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['promptdatabasetype_3376',['PromptDatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a523da4e381dbb3c7240fe93b54a40200',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['promptforhostingport_3377',['PromptForHostingPort',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a0f4102d1095435755cb344476fdfa422',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['promptyesno_3378',['PromptYesNo',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2b5172f9969a8c21d0f5c98bf362f610',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['provider_3379',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ad53cc84796c5c7ef5d27b41367ac9ec5',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['providerfactory_3380',['ProviderFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a2311cda575e4fc3fa7b41569da67cbc3',1,'Tgstation::Server::Host::Components::Chat::Providers::ProviderFactory']]], - ['pullrequestscommand_3381',['PullRequestsCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a96ba3e78b38424740cda93576b897bf6',1,'Tgstation::Server::Host::Components::Chat::Commands::PullRequestsCommand']]], - ['pushheadtotemporarybranch_3382',['PushHeadToTemporaryBranch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a96553d378f9b7d9cfc4eb169f12bdba7',1,'Tgstation::Server::Host::Components::Repository::Repository']]] + ['patch_3437',['Patch',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a74b6a4ca1f94c325e9fbc29296f9d674',1,'Tgstation.Server.Client.ApiClient.Patch()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#ae5ddeabc517efcf180f7286ead8158f5',1,'Tgstation.Server.Client.IApiClient.Patch()']]], + ['patch_3c_20tresult_20_3e_3438',['Patch< TResult >',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a2c706947515724ff353a3b1422815ff8',1,'Tgstation.Server.Client.ApiClient.Patch< TResult >()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a28294924cb1336289469fbfa5de2f61f',1,'Tgstation.Server.Client.IApiClient.Patch< TResult >()']]], + ['pathcontainsparentaccess_3439',['PathContainsParentAccess',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#aa2dfcb05f73420f251547ae0108b3222',1,'Tgstation.Server.Host.IO.DefaultIOManager.PathContainsParentAccess()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_i_o_manager.html#af05931d02f5f5d95b87a56c0cc60d855',1,'Tgstation.Server.Host.IO.IIOManager.PathContainsParentAccess()']]], + ['platformidentifier_3440',['PlatformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ab29c252e971636fca5893880d01f9595',1,'Tgstation::Server::Host::System::PlatformIdentifier']]], + ['populateapi_3441',['PopulateApi',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a169541f29e0361eaba0bf8ba85624f10',1,'Tgstation::Server::Host::Controllers::RepositoryController']]], + ['portbindtest_3442',['PortBindTest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#ad09ef01b75b51e2c4509bbe1e26265a3',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['posixbyondinstaller_3443',['PosixByondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5b90fdbd196609a846fb761671b7346',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['posixpostwritehandler_3444',['PosixPostWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a25f458ab180e8c101a465aff3b1c70d8',1,'Tgstation::Server::Host::IO::PosixPostWriteHandler']]], + ['posixprocessfeatures_3445',['PosixProcessFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a5c76e566e66544a36a2bab1650903201',1,'Tgstation::Server::Host::System::PosixProcessFeatures']]], + ['posixwatchdog_3446',['PosixWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#abfb1902505d671187445b1dc4ffbb324',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdog']]], + ['posixwatchdogfactory_3447',['PosixWatchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog_factory.html#a2fb5ecdeefbbd75536c60de92b128136',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdogFactory']]], + ['postdeploymentcomments_3448',['PostDeploymentComments',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a6694947398e5e8ed314a7b0891aa9003',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['postgressqldatabasecontext_3449',['PostgresSqlDatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#a095ca8d3b284f60a8d0ded862559d5e9',1,'Tgstation::Server::Host::Database::PostgresSqlDatabaseContext']]], + ['postsetupservices_3450',['PostSetupServices',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#ae51e94325327c0b9bc6b30a2f3b59d89',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], + ['prepserverforlaunch_3451',['PrepServerForLaunch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a9d89e8d95f629745bccad09d1fe5cf72',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.PrepServerForLaunch()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#abb0bc53000b1d8c7555e765c9c30ce5d',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.PrepServerForLaunch()']]], + ['pressanykeyasync_3452',['PressAnyKeyAsync',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ad10bdc2971cb4068b3fe0d46aa7cb167',1,'Tgstation.Server.Host.IO.Console.PressAnyKeyAsync()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ad674c458bbe343698fb0da3494bf3e37',1,'Tgstation.Server.Host.IO.IConsole.PressAnyKeyAsync()']]], + ['process_3453',['Process',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a1dd8fca5d57be939d8d04d4723788639',1,'Tgstation.Server.Host.Controllers.BridgeController.Process()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab03872788d0872e02ce5521a113eb9a9',1,'Tgstation.Server.Host.System.Process.Process()']]], + ['processbridgerequest_3454',['ProcessBridgeRequest',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abd9eb0f8c590b9983279300be002d40e',1,'Tgstation.Server.Host.Components.InstanceManager.ProcessBridgeRequest()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_dispatcher.html#aedd0ce59a5bb9d3692f73e92715798c3',1,'Tgstation.Server.Host.Components.Interop.Bridge.IBridgeDispatcher.ProcessBridgeRequest()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#addf10bdb560585e28933161df7e31fef',1,'Tgstation.Server.Host.Components.Session.SessionController.ProcessBridgeRequest()']]], + ['processexecutor_3455',['ProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a391667cca8308cb0adb27851434cb3fe',1,'Tgstation::Server::Host::System::ProcessExecutor']]], + ['processmessage_3456',['ProcessMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13d3a724fb03c4546b7af6162336809c',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['programshutdowntokensource_3457',['ProgramShutdownTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ae6e3154f8ad5a672194b2956a31a4f39',1,'Tgstation::Server::Host::System::ProgramShutdownTokenSource']]], + ['progresstask_3458',['ProgressTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#af770863bfb53db309853603081906b38',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['promptdatabasetype_3459',['PromptDatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a523da4e381dbb3c7240fe93b54a40200',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['promptforhostingport_3460',['PromptForHostingPort',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a0f4102d1095435755cb344476fdfa422',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['promptyesno_3461',['PromptYesNo',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2b5172f9969a8c21d0f5c98bf362f610',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['provider_3462',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ad53cc84796c5c7ef5d27b41367ac9ec5',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['providerfactory_3463',['ProviderFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a2311cda575e4fc3fa7b41569da67cbc3',1,'Tgstation::Server::Host::Components::Chat::Providers::ProviderFactory']]], + ['pullrequestscommand_3464',['PullRequestsCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a96ba3e78b38424740cda93576b897bf6',1,'Tgstation::Server::Host::Components::Chat::Commands::PullRequestsCommand']]], + ['pushheadtotemporarybranch_3465',['PushHeadToTemporaryBranch',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a96553d378f9b7d9cfc4eb169f12bdba7',1,'Tgstation::Server::Host::Components::Repository::Repository']]] ]; diff --git a/search/mag_sel.png b/search/mag_sel.png deleted file mode 100644 index 39c0ed52a2..0000000000 Binary files a/search/mag_sel.png and /dev/null differ diff --git a/search/mag_sel.svg b/search/mag_sel.svg new file mode 100644 index 0000000000..03626f64a0 --- /dev/null +++ b/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/search/namespaces_0.html b/search/namespaces_0.html index f0de5a9b83..09b5b53ca7 100644 --- a/search/namespaces_0.html +++ b/search/namespaces_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/namespaces_0.js b/search/namespaces_0.js index 4b1712e64f..815fcec5be 100644 --- a/search/namespaces_0.js +++ b/search/namespaces_0.js @@ -1,40 +1,40 @@ var searchData= [ - ['api_2493',['Api',['../namespace_tgstation_1_1_server_1_1_api.html',1,'Tgstation::Server']]], - ['bridge_2494',['Bridge',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['byond_2495',['Byond',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond.html',1,'Tgstation::Server::Host::Components']]], - ['chat_2496',['Chat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat.html',1,'Tgstation::Server::Host::Components']]], - ['client_2497',['Client',['../namespace_tgstation_1_1_server_1_1_client.html',1,'Tgstation::Server']]], - ['commands_2498',['Commands',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['components_2499',['Components',['../namespace_tgstation_1_1_server_1_1_client_1_1_components.html',1,'Tgstation.Server.Client.Components'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components.html',1,'Tgstation.Server.Host.Components']]], - ['configuration_2500',['Configuration',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html',1,'Tgstation::Server::Host']]], - ['console_2501',['Console',['../namespace_tgstation_1_1_server_1_1_host_1_1_console.html',1,'Tgstation::Server::Host']]], - ['controllers_2502',['Controllers',['../namespace_tgstation_1_1_server_1_1_host_1_1_controllers.html',1,'Tgstation::Server::Host']]], - ['converters_2503',['Converters',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['core_2504',['Core',['../namespace_tgstation_1_1_server_1_1_host_1_1_core.html',1,'Tgstation::Server::Host']]], - ['database_2505',['Database',['../namespace_tgstation_1_1_server_1_1_host_1_1_database.html',1,'Tgstation::Server::Host']]], - ['deployment_2506',['Deployment',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment.html',1,'Tgstation::Server::Host::Components']]], - ['design_2507',['Design',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_design.html',1,'Tgstation::Server::Host::Database']]], - ['events_2508',['Events',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html',1,'Tgstation::Server::Host::Components']]], - ['extensions_2509',['Extensions',['../namespace_tgstation_1_1_server_1_1_host_1_1_extensions.html',1,'Tgstation::Server::Host']]], - ['host_2510',['Host',['../namespace_tgstation_1_1_server_1_1_host.html',1,'Tgstation::Server']]], - ['internal_2511',['Internal',['../namespace_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal.html',1,'Tgstation::Server::Api::Models']]], - ['interop_2512',['Interop',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop.html',1,'Tgstation::Server::Host::Components']]], - ['io_2513',['IO',['../namespace_tgstation_1_1_server_1_1_host_1_1_i_o.html',1,'Tgstation::Server::Host']]], - ['jobs_2514',['Jobs',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html',1,'Tgstation::Server::Host']]], - ['migrations_2515',['Migrations',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations.html',1,'Tgstation::Server::Host::Database']]], - ['models_2516',['Models',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html',1,'Tgstation.Server.Api.Models'],['../namespace_tgstation_1_1_server_1_1_host_1_1_models.html',1,'Tgstation.Server.Host.Models']]], - ['providers_2517',['Providers',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers.html',1,'Tgstation::Server::Host::Components::Chat']]], - ['repository_2518',['Repository',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository.html',1,'Tgstation::Server::Host::Components']]], - ['rights_2519',['Rights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html',1,'Tgstation::Server::Api']]], - ['security_2520',['Security',['../namespace_tgstation_1_1_server_1_1_host_1_1_security.html',1,'Tgstation::Server::Host']]], - ['server_2521',['Server',['../namespace_tgstation_1_1_server.html',1,'Tgstation']]], - ['service_2522',['Service',['../namespace_tgstation_1_1_server_1_1_host_1_1_service.html',1,'Tgstation::Server::Host']]], - ['session_2523',['Session',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html',1,'Tgstation::Server::Host::Components']]], - ['setup_2524',['Setup',['../namespace_tgstation_1_1_server_1_1_host_1_1_setup.html',1,'Tgstation::Server::Host']]], - ['staticfiles_2525',['StaticFiles',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files.html',1,'Tgstation::Server::Host::Components']]], - ['system_2526',['System',['../namespace_tgstation_1_1_server_1_1_host_1_1_system.html',1,'Tgstation::Server::Host']]], - ['tgstation_2527',['Tgstation',['../namespace_tgstation.html',1,'']]], - ['topic_2528',['Topic',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html',1,'Tgstation::Server::Host::Components::Interop']]], - ['watchdog_2529',['Watchdog',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog'],['../namespace_tgstation_1_1_server_1_1_host_1_1_watchdog.html',1,'Tgstation.Server.Host.Watchdog']]] + ['api_2554',['Api',['../namespace_tgstation_1_1_server_1_1_api.html',1,'Tgstation::Server']]], + ['bridge_2555',['Bridge',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['byond_2556',['Byond',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond.html',1,'Tgstation::Server::Host::Components']]], + ['chat_2557',['Chat',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat.html',1,'Tgstation::Server::Host::Components']]], + ['client_2558',['Client',['../namespace_tgstation_1_1_server_1_1_client.html',1,'Tgstation::Server']]], + ['commands_2559',['Commands',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['components_2560',['Components',['../namespace_tgstation_1_1_server_1_1_client_1_1_components.html',1,'Tgstation.Server.Client.Components'],['../namespace_tgstation_1_1_server_1_1_host_1_1_components.html',1,'Tgstation.Server.Host.Components']]], + ['configuration_2561',['Configuration',['../namespace_tgstation_1_1_server_1_1_host_1_1_configuration.html',1,'Tgstation::Server::Host']]], + ['console_2562',['Console',['../namespace_tgstation_1_1_server_1_1_host_1_1_console.html',1,'Tgstation::Server::Host']]], + ['controllers_2563',['Controllers',['../namespace_tgstation_1_1_server_1_1_host_1_1_controllers.html',1,'Tgstation::Server::Host']]], + ['converters_2564',['Converters',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_converters.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['core_2565',['Core',['../namespace_tgstation_1_1_server_1_1_host_1_1_core.html',1,'Tgstation::Server::Host']]], + ['database_2566',['Database',['../namespace_tgstation_1_1_server_1_1_host_1_1_database.html',1,'Tgstation::Server::Host']]], + ['deployment_2567',['Deployment',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment.html',1,'Tgstation::Server::Host::Components']]], + ['design_2568',['Design',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_design.html',1,'Tgstation::Server::Host::Database']]], + ['events_2569',['Events',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_events.html',1,'Tgstation::Server::Host::Components']]], + ['extensions_2570',['Extensions',['../namespace_tgstation_1_1_server_1_1_host_1_1_extensions.html',1,'Tgstation::Server::Host']]], + ['host_2571',['Host',['../namespace_tgstation_1_1_server_1_1_host.html',1,'Tgstation::Server']]], + ['internal_2572',['Internal',['../namespace_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal.html',1,'Tgstation::Server::Api::Models']]], + ['interop_2573',['Interop',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop.html',1,'Tgstation::Server::Host::Components']]], + ['io_2574',['IO',['../namespace_tgstation_1_1_server_1_1_host_1_1_i_o.html',1,'Tgstation::Server::Host']]], + ['jobs_2575',['Jobs',['../namespace_tgstation_1_1_server_1_1_host_1_1_jobs.html',1,'Tgstation::Server::Host']]], + ['migrations_2576',['Migrations',['../namespace_tgstation_1_1_server_1_1_host_1_1_database_1_1_migrations.html',1,'Tgstation::Server::Host::Database']]], + ['models_2577',['Models',['../namespace_tgstation_1_1_server_1_1_api_1_1_models.html',1,'Tgstation.Server.Api.Models'],['../namespace_tgstation_1_1_server_1_1_host_1_1_models.html',1,'Tgstation.Server.Host.Models']]], + ['providers_2578',['Providers',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers.html',1,'Tgstation::Server::Host::Components::Chat']]], + ['repository_2579',['Repository',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository.html',1,'Tgstation::Server::Host::Components']]], + ['rights_2580',['Rights',['../namespace_tgstation_1_1_server_1_1_api_1_1_rights.html',1,'Tgstation::Server::Api']]], + ['security_2581',['Security',['../namespace_tgstation_1_1_server_1_1_host_1_1_security.html',1,'Tgstation::Server::Host']]], + ['server_2582',['Server',['../namespace_tgstation_1_1_server.html',1,'Tgstation']]], + ['service_2583',['Service',['../namespace_tgstation_1_1_server_1_1_host_1_1_service.html',1,'Tgstation::Server::Host']]], + ['session_2584',['Session',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_session.html',1,'Tgstation::Server::Host::Components']]], + ['setup_2585',['Setup',['../namespace_tgstation_1_1_server_1_1_host_1_1_setup.html',1,'Tgstation::Server::Host']]], + ['staticfiles_2586',['StaticFiles',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files.html',1,'Tgstation::Server::Host::Components']]], + ['system_2587',['System',['../namespace_tgstation_1_1_server_1_1_host_1_1_system.html',1,'Tgstation::Server::Host']]], + ['tgstation_2588',['Tgstation',['../namespace_tgstation.html',1,'']]], + ['topic_2589',['Topic',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic.html',1,'Tgstation::Server::Host::Components::Interop']]], + ['watchdog_2590',['Watchdog',['../namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog.html',1,'Tgstation.Server.Host.Components.Watchdog'],['../namespace_tgstation_1_1_server_1_1_host_1_1_watchdog.html',1,'Tgstation.Server.Host.Watchdog']]] ]; diff --git a/search/pages_0.html b/search/pages_0.html index ca7755f405..e344c15cfe 100644 --- a/search/pages_0.html +++ b/search/pages_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/pages_0.js b/search/pages_0.js index dba2b2e45e..9b5e2522d6 100644 --- a/search/pages_0.js +++ b/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['api_4551',['API',['../api.html',1,'']]] + ['api_4664',['API',['../api.html',1,'']]] ]; diff --git a/search/pages_1.html b/search/pages_1.html index 4e469b4ad8..7916e0227b 100644 --- a/search/pages_1.html +++ b/search/pages_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/pages_1.js b/search/pages_1.js index 42a3f79021..4861c484cf 100644 --- a/search/pages_1.js +++ b/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['features_4552',['Features',['../features.html',1,'']]] + ['features_4665',['Features',['../features.html',1,'']]] ]; diff --git a/search/pages_2.html b/search/pages_2.html index 702915305e..399c36a594 100644 --- a/search/pages_2.html +++ b/search/pages_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/pages_2.js b/search/pages_2.js index 17353d8642..dda4182d03 100644 --- a/search/pages_2.js +++ b/search/pages_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['server_20architecture_4553',['Server Architecture',['../architecture.html',1,'']]], - ['security_20policy_4554',['Security Policy',['../md__s_e_c_u_r_i_t_y.html',1,'']]] + ['server_20architecture_4666',['Server Architecture',['../architecture.html',1,'']]], + ['security_20policy_4667',['Security Policy',['../md__s_e_c_u_r_i_t_y.html',1,'']]] ]; diff --git a/search/pages_3.html b/search/pages_3.html index fce1ba40c0..e1249c72da 100644 --- a/search/pages_3.html +++ b/search/pages_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/pages_3.js b/search/pages_3.js index 8c0feaf537..389256a889 100644 --- a/search/pages_3.js +++ b/search/pages_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['tgstation_2dserver_20v4_3a_4555',['tgstation-server v4:',['../index.html',1,'']]] + ['tgstation_2dserver_20v4_3a_4668',['tgstation-server v4:',['../index.html',1,'']]] ]; diff --git a/search/properties_0.html b/search/properties_0.html index 929bbcd5fa..08cdef1980 100644 --- a/search/properties_0.html +++ b/search/properties_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_0.js b/search/properties_0.js index a4960dea37..a715780872 100644 --- a/search/properties_0.js +++ b/search/properties_0.js @@ -1,40 +1,41 @@ var searchData= [ - ['accessdenied_4219',['AccessDenied',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#acb78a02b4881844e9412384563d9d78d',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], - ['accessidentifier_4220',['AccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html#af84241c8eda4d8f7deddb9c5b7eb79a5',1,'Tgstation::Server::Host::Components::Interop::DMApiParameters']]], - ['accesstoken_4221',['AccessToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acc5868ef8bebd88a8caa34c4f8f1fd86',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['accessuser_4222',['AccessUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a99781fa636aa32efab9dea036e49de4e',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['active_4223',['Active',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a16dba99b6423de5f247062c36178defe',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Active()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a98b88ea1bc4bcf37c41a2f4c966afaa0',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Active()']]], - ['activecompilejob_4224',['ActiveCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a1ceac031ef985adfd469c07b5fef7c6b',1,'Tgstation.Server.Api.Models.DreamDaemon.ActiveCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a23f9971c8bc84a87cfaf08744eaaee0d',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveCompileJob()']]], - ['activejob_4225',['ActiveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#aa3c333554a7d7b7f731723afcf2160a3',1,'Tgstation::Server::Api::Models::Repository']]], - ['activelaunchparameters_4226',['ActiveLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a19270c2054e4431802fdf5a59f9b3518',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a9affc2eeae2903d1bdb0fa81a6550fc4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveLaunchParameters()']]], - ['activeparametersupdated_4227',['ActiveParametersUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#afee401fd5e0d23482b77498b6ec23a03',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['activeswappable_4228',['ActiveSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a0864d506e58d2f6a0f5f3e4d912e572a',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['activetestmerges_4229',['ActiveTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#ad87669f877669c68429d4c0b7826adf2',1,'Tgstation.Server.Api.Models.RevisionInformation.ActiveTestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#af99d05ba09723bd09ef54434a3384daf',1,'Tgstation.Server.Host.Models.RevisionInformation.ActiveTestMerges()']]], - ['activeversion_4230',['ActiveVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3e62e619b7e50c3b9c990952d7a426be',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#a4bbf7c36cfdbbbdc5a87813d0d6959f6',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ActiveVersion()']]], - ['additionaldata_4231',['AdditionalData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a6ebff98cc7118725387663fd3b85cde3',1,'Tgstation::Server::Api::Models::ErrorMessage']]], - ['additionalserverdata_4232',['AdditionalServerData',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a15ba2ccaacd995deb459ac67b1ebd787',1,'Tgstation::Server::Client::ApiException']]], - ['address_4233',['Address',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a802f4bc116fb4c464dd60cf8b054b974',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], - ['administration_4234',['Administration',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a170097fe653238823c6a3c5a07c4ec94',1,'Tgstation.Server.Client.IServerClient.Administration()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#af81da913067b74f5e8098c6106fda1af',1,'Tgstation.Server.Client.ServerClient.Administration()']]], - ['administrationrights_4235',['AdministrationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ad28e489fcb8df51b4ba2f5cdf5dd5d22',1,'Tgstation::Server::Api::Models::Internal::User']]], - ['adminonly_4236',['AdminOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a32556e6bc56cad31d993e4be70e7ca60',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.AdminOnly()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#a0872d9ed0ba21f3decc6d5303001fc8e',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.AdminOnly()']]], - ['allowanyorigin_4237',['AllowAnyOrigin',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a5c0b28cdbd801a02bce701901a060818',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], - ['allowedorigins_4238',['AllowedOrigins',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#afe978b9a640bef63953d313e3a483092',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], - ['allowwebclient_4239',['AllowWebClient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5f96244396a57f351043723b254803bc',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['alphaisactive_4240',['AlphaIsActive',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#abbbd1824bcf972a1eb312c12780fc0bc',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.AlphaIsActive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39f77bb87d63b1a1a50aac89ad909f29',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AlphaIsActive()']]], - ['apiheaders_4241',['ApiHeaders',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a1934074118a6f4f9044b9da630c91a8e',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['apiport_4242',['ApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#abc34147a4a8a95c6578124b69c284a0b',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['apivalidateonly_4243',['ApiValidateOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#aab2ba8e8c26c816abd9149e21c0d8e0c',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['apivalidationport_4244',['ApiValidationPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a4b421130ab4c6b6836f8dfbf4f8df02e',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['apivalidationsecuritylevel_4245',['ApiValidationSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#abfa04639a2bfa207aef060ca84a732da',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['apivalidationstatus_4246',['ApiValidationStatus',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ab1fea6de9af52a5bc2457c53c6880dd2',1,'Tgstation.Server.Host.Components.Session.ISessionController.ApiValidationStatus()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a51d3dc3c09b2e42349df709de106bcdd',1,'Tgstation.Server.Host.Components.Session.SessionController.ApiValidationStatus()']]], - ['apiversion_4247',['ApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4769bf50b06d55b116a34cd1ffa04809',1,'Tgstation.Server.Api.ApiHeaders.ApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a7b5e0bbe634b1c4eccc4b1acd08723f0',1,'Tgstation.Server.Api.Models.ServerInformation.ApiVersion()']]], - ['asyncdelayer_4248',['AsyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abbdc59de3b3556a08bd111264527f369',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AsyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a6cba03dd228358338743984da7c2da6a',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.AsyncDelayer()']]], - ['authenticationcontext_4249',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#af37f0d0021bc861bea5444108a4de87d',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['author_4250',['Author',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a649bf71827e0aeed08a49c3baada64ca',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], - ['autostart_4251',['AutoStart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html#ad042a8ceccbcbed55dfabbdebd45b162',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonSettings']]], - ['autoupdateinterval_4252',['AutoUpdateInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#aebe907c68112eae3f1ac2dfdf384ec5b',1,'Tgstation::Server::Api::Models::Instance']]], - ['autoupdateskeeptestmerges_4253',['AutoUpdatesKeepTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad376f28c643709a12b1a95196f4fe38f',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['autoupdatessynchronize_4254',['AutoUpdatesSynchronize',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a771f7bdc30a0f666c1eaba7210dfb690',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['available_4255',['Available',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ab35fa75560527910780645de7dc54ca8',1,'Tgstation::Server::Host::IO::IConsole']]] + ['accessdenied_4320',['AccessDenied',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#acb78a02b4881844e9412384563d9d78d',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], + ['accessidentifier_4321',['AccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_parameters.html#af84241c8eda4d8f7deddb9c5b7eb79a5',1,'Tgstation::Server::Host::Components::Interop::DMApiParameters']]], + ['accesstoken_4322',['AccessToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acc5868ef8bebd88a8caa34c4f8f1fd86',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['accessuser_4323',['AccessUser',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a99781fa636aa32efab9dea036e49de4e',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['active_4324',['Active',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a16dba99b6423de5f247062c36178defe',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Active()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a98b88ea1bc4bcf37c41a2f4c966afaa0',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Active()']]], + ['activecompilejob_4325',['ActiveCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a1ceac031ef985adfd469c07b5fef7c6b',1,'Tgstation.Server.Api.Models.DreamDaemon.ActiveCompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a23f9971c8bc84a87cfaf08744eaaee0d',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveCompileJob()']]], + ['activejob_4326',['ActiveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#aa3c333554a7d7b7f731723afcf2160a3',1,'Tgstation::Server::Api::Models::Repository']]], + ['activelaunchparameters_4327',['ActiveLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a19270c2054e4431802fdf5a59f9b3518',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.ActiveLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a9affc2eeae2903d1bdb0fa81a6550fc4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.ActiveLaunchParameters()']]], + ['activeparametersupdated_4328',['ActiveParametersUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#afee401fd5e0d23482b77498b6ec23a03',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['activeswappable_4329',['ActiveSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a0864d506e58d2f6a0f5f3e4d912e572a',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['activetestmerges_4330',['ActiveTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#ad87669f877669c68429d4c0b7826adf2',1,'Tgstation.Server.Api.Models.RevisionInformation.ActiveTestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#af99d05ba09723bd09ef54434a3384daf',1,'Tgstation.Server.Host.Models.RevisionInformation.ActiveTestMerges()']]], + ['activeversion_4331',['ActiveVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3e62e619b7e50c3b9c990952d7a426be',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ActiveVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#a4bbf7c36cfdbbbdc5a87813d0d6959f6',1,'Tgstation.Server.Host.Components.Byond.IByondManager.ActiveVersion()']]], + ['additionaldata_4332',['AdditionalData',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a6ebff98cc7118725387663fd3b85cde3',1,'Tgstation::Server::Api::Models::ErrorMessage']]], + ['additionalserverdata_4333',['AdditionalServerData',['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a15ba2ccaacd995deb459ac67b1ebd787',1,'Tgstation::Server::Client::ApiException']]], + ['address_4334',['Address',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a802f4bc116fb4c464dd60cf8b054b974',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], + ['administration_4335',['Administration',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a170097fe653238823c6a3c5a07c4ec94',1,'Tgstation.Server.Client.IServerClient.Administration()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#af81da913067b74f5e8098c6106fda1af',1,'Tgstation.Server.Client.ServerClient.Administration()']]], + ['administrationrights_4336',['AdministrationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ad28e489fcb8df51b4ba2f5cdf5dd5d22',1,'Tgstation::Server::Api::Models::Internal::User']]], + ['adminonly_4337',['AdminOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a32556e6bc56cad31d993e4be70e7ca60',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.AdminOnly()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#a0872d9ed0ba21f3decc6d5303001fc8e',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.AdminOnly()']]], + ['allowanyorigin_4338',['AllowAnyOrigin',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a5c0b28cdbd801a02bce701901a060818',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], + ['allowedorigins_4339',['AllowedOrigins',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#afe978b9a640bef63953d313e3a483092',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], + ['allowwebclient_4340',['AllowWebClient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5f96244396a57f351043723b254803bc',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['alphaisactive_4341',['AlphaIsActive',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#abbbd1824bcf972a1eb312c12780fc0bc',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.AlphaIsActive()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a39f77bb87d63b1a1a50aac89ad909f29',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AlphaIsActive()']]], + ['apiheaders_4342',['ApiHeaders',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a1934074118a6f4f9044b9da630c91a8e',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['apiport_4343',['ApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#abc34147a4a8a95c6578124b69c284a0b',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['apivalidateonly_4344',['ApiValidateOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#aab2ba8e8c26c816abd9149e21c0d8e0c',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['apivalidationport_4345',['ApiValidationPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a4b421130ab4c6b6836f8dfbf4f8df02e',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['apivalidationsecuritylevel_4346',['ApiValidationSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#abfa04639a2bfa207aef060ca84a732da',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['apivalidationstatus_4347',['ApiValidationStatus',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#ab1fea6de9af52a5bc2457c53c6880dd2',1,'Tgstation.Server.Host.Components.Session.ISessionController.ApiValidationStatus()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a51d3dc3c09b2e42349df709de106bcdd',1,'Tgstation.Server.Host.Components.Session.SessionController.ApiValidationStatus()']]], + ['apiversion_4348',['ApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a4769bf50b06d55b116a34cd1ffa04809',1,'Tgstation.Server.Api.ApiHeaders.ApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a7b5e0bbe634b1c4eccc4b1acd08723f0',1,'Tgstation.Server.Api.Models.ServerInformation.ApiVersion()']]], + ['assemblyname_4349',['AssemblyName',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a243bb96f99b715968e25fca18cb9f682',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.AssemblyName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a681c879b4ff73db055cd6fd39cb590b7',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.AssemblyName()']]], + ['asyncdelayer_4350',['AsyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abbdc59de3b3556a08bd111264527f369',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.AsyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a6cba03dd228358338743984da7c2da6a',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.AsyncDelayer()']]], + ['authenticationcontext_4351',['AuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#af37f0d0021bc861bea5444108a4de87d',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['author_4352',['Author',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a649bf71827e0aeed08a49c3baada64ca',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], + ['autostart_4353',['AutoStart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_settings.html#ad042a8ceccbcbed55dfabbdebd45b162',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonSettings']]], + ['autoupdateinterval_4354',['AutoUpdateInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#aebe907c68112eae3f1ac2dfdf384ec5b',1,'Tgstation::Server::Api::Models::Instance']]], + ['autoupdateskeeptestmerges_4355',['AutoUpdatesKeepTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad376f28c643709a12b1a95196f4fe38f',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['autoupdatessynchronize_4356',['AutoUpdatesSynchronize',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a771f7bdc30a0f666c1eaba7210dfb690',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['available_4357',['Available',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#ab35fa75560527910780645de7dc54ca8',1,'Tgstation::Server::Host::IO::IConsole']]] ]; diff --git a/search/properties_1.html b/search/properties_1.html index 840e61497c..ea87060531 100644 --- a/search/properties_1.html +++ b/search/properties_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_1.js b/search/properties_1.js index 9e86ced61e..22a7dcbb87 100644 --- a/search/properties_1.js +++ b/search/properties_1.js @@ -1,14 +1,14 @@ var searchData= [ - ['bearer_4256',['Bearer',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#ad59ea2958458544411779b6984a38c9d',1,'Tgstation::Server::Api::Models::Token']]], - ['bodyatmerge_4257',['BodyAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a33c8f25ffa5c322c80a7ae386326b455',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], - ['botmention_4258',['BotMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#af40c0ea392de9986a4705d403674f61c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.BotMention()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a781f872cb8143fe3ff92f3cc8d0d5abb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.BotMention()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a3a3ca6a84bbd0adac5990f8d07601f49',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.BotMention()']]], - ['bottoken_4259',['BotToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#aacc9fd03094f08522afc8a0d786547ee',1,'Tgstation::Server::Api::Models::DiscordConnectionStringBuilder']]], - ['byond_4260',['Byond',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a9232f67ce6e82fce57740789d0202357',1,'Tgstation.Server.Client.Components.IInstanceClient.Byond()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a473bf90090e8d3c2b5d4e6689b5ea31f',1,'Tgstation.Server.Client.Components.InstanceClient.Byond()']]], - ['byondmanager_4261',['ByondManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a3832bd0f18684496b66f0cd34d43d824',1,'Tgstation.Server.Host.Components.IInstanceCore.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#adcf63127cc4d66507994449215611ba4',1,'Tgstation.Server.Host.Components.Instance.ByondManager()']]], - ['byondrevisionsurltemplate_4262',['ByondRevisionsURLTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#ae6df80713a787a051cb8bab9cf937846',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], - ['byondrights_4263',['ByondRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#af3250017587c5794a9b2501e97d8896d',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['byondtopicresponse_4264',['ByondTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#ab200cd25c11993c625666ed171c36f4e',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], - ['byondtopictimeout_4265',['ByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a51431792c5538add1bdad55e499a4971',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['byondversion_4266',['ByondVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a5bc228d8d109d5098f1a490b3a4ba20e',1,'Tgstation.Server.Api.Models.CompileJob.ByondVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a009667890d52e30a93a5cd8f15b89904',1,'Tgstation.Server.Host.Models.CompileJob.ByondVersion()']]] + ['bearer_4358',['Bearer',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#ad59ea2958458544411779b6984a38c9d',1,'Tgstation::Server::Api::Models::Token']]], + ['bodyatmerge_4359',['BodyAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a33c8f25ffa5c322c80a7ae386326b455',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], + ['botmention_4360',['BotMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#af40c0ea392de9986a4705d403674f61c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.BotMention()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a781f872cb8143fe3ff92f3cc8d0d5abb',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.BotMention()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a3a3ca6a84bbd0adac5990f8d07601f49',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.BotMention()']]], + ['bottoken_4361',['BotToken',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#aacc9fd03094f08522afc8a0d786547ee',1,'Tgstation::Server::Api::Models::DiscordConnectionStringBuilder']]], + ['byond_4362',['Byond',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a9232f67ce6e82fce57740789d0202357',1,'Tgstation.Server.Client.Components.IInstanceClient.Byond()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a473bf90090e8d3c2b5d4e6689b5ea31f',1,'Tgstation.Server.Client.Components.InstanceClient.Byond()']]], + ['byondmanager_4363',['ByondManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a3832bd0f18684496b66f0cd34d43d824',1,'Tgstation.Server.Host.Components.IInstanceCore.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#adcf63127cc4d66507994449215611ba4',1,'Tgstation.Server.Host.Components.Instance.ByondManager()']]], + ['byondrevisionsurltemplate_4364',['ByondRevisionsURLTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#ae6df80713a787a051cb8bab9cf937846',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], + ['byondrights_4365',['ByondRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#af3250017587c5794a9b2501e97d8896d',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['byondtopicresponse_4366',['ByondTopicResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#ab200cd25c11993c625666ed171c36f4e',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], + ['byondtopictimeout_4367',['ByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a51431792c5538add1bdad55e499a4971',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['byondversion_4368',['ByondVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a5bc228d8d109d5098f1a490b3a4ba20e',1,'Tgstation.Server.Api.Models.CompileJob.ByondVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a009667890d52e30a93a5cd8f15b89904',1,'Tgstation.Server.Host.Models.CompileJob.ByondVersion()']]] ]; diff --git a/search/properties_10.html b/search/properties_10.html index 795ce0bedd..cd0f9cbbf6 100644 --- a/search/properties_10.html +++ b/search/properties_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_10.js b/search/properties_10.js index 3947c90883..57375010fc 100644 --- a/search/properties_10.js +++ b/search/properties_10.js @@ -1,27 +1,27 @@ var searchData= [ - ['scriptfileextension_4490',['ScriptFileExtension',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#a1d6690377df88fa0c142d72a949be17f',1,'Tgstation.Server.Host.System.IPlatformIdentifier.ScriptFileExtension()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ad297b56dc4222debfe147d786e7c3c78',1,'Tgstation.Server.Host.System.PlatformIdentifier.ScriptFileExtension()']]], - ['scriptname_4491',['ScriptName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a83d0ae0bc9554f29df970eaa741561dc',1,'Tgstation::Server::Host::Components::Events::EventScriptAttribute']]], - ['securitylevel_4492',['SecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aab2ca846e0aade7de3cfcea099f40fa4',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.SecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a95bc8bd7c56ff9866795ec3823847c9c',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.SecurityLevel()']]], - ['server_4493',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a8055d121e620784216311342fa30f715',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], - ['serverapiversion_4494',['ServerApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a9308db77bea5178c7fe198cc61348afe',1,'Tgstation.Server.Api.Models.ErrorMessage.ServerApiVersion()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a281531bad45554e8e35c02bd7c43ee38',1,'Tgstation.Server.Client.ApiException.ServerApiVersion()']]], - ['servercontrol_4495',['ServerControl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a83607d97387c92ed33c6640f0cd4ee1a',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], - ['serverport_4496',['ServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a34f2ed18e36028c8a913c4c542fc9dba',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['serverversion_4497',['ServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a58c14ed1399e171958dfe450be84c3cf',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.ServerVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a37d2a2cb232af1fcc3a5ea4139a052e9',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ServerVersion()']]], - ['sessioncontrollerfactory_4498',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24eb5f0e32cd79487cd9bd80d5257abb',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['setupwizardmode_4499',['SetupWizardMode',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#ace6cef6156eebad4a760e3d9f58dcb7e',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['showtestmergecommitters_4500',['ShowTestMergeCommitters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad0559033aa2ab7b93c9e63e3b31d2ddd',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['softrestart_4501',['SoftRestart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a24b03adbbc3a308d6a6ce6edc9846e17',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['softshutdown_4502',['SoftShutdown',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8388db2f41c2eed9f9783260f7a69bbe',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['stagedcompilejob_4503',['StagedCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8a8a50c1744b2264c242676b4ce3914d',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['startedat_4504',['StartedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a0988d9930cae8f698a17c20d3e8cec9a',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['startedby_4505',['StartedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#abb86696a2a25cf3259c16603745de887',1,'Tgstation.Server.Api.Models.Job.StartedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aeb64c30e0787225682030adf2d2af036',1,'Tgstation.Server.Host.Models.Job.StartedBy()']]], - ['startup_4506',['Startup',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a31134a65d5338a2ba017ff3f0b276776',1,'Tgstation.Server.Host.System.IProcess.Startup()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab4a4559a320a7a43607d3a705d86a9e8',1,'Tgstation.Server.Host.System.Process.Startup()']]], - ['startuptime_4507',['StartupTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a3a760923a1f56b674537f908b0f74c1b',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], - ['startuptimeout_4508',['StartupTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aa3ac63088b89bf67dd5fdbe67970b03d',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['status_4509',['Status',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a374f3676c32da4421a9bbb9bdbb74bcd',1,'Tgstation.Server.Api.Models.DreamDaemon.Status()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a81f00a3e7109a861886d14e6233d8b43',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Status()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5fa8be05b0c448ea097a70e5d8708ffb',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Status()']]], - ['stoppedat_4510',['StoppedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a2b6b6dbe1243f140d9fb04767ea16c61',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['symlinkfactory_4511',['SymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a3fcbf9a187ea2b1d389a2543b841ccef',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdogFactory']]], - ['systemidentifier_4512',['SystemIdentifier',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#af54beced1148cb5e7e8f114469fd577a',1,'Tgstation::Server::Api::Models::Internal::User']]], - ['systemidentity_4513',['SystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a05ce72960f78e0a11148f44292f3fb7b',1,'Tgstation.Server.Host.Security.AuthenticationContext.SystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a01b4dc318a62fa3b321593418eb1247e',1,'Tgstation.Server.Host.Security.IAuthenticationContext.SystemIdentity()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a86a823a9e7ee94f2497bfae86c1efeed',1,'Tgstation.Server.Host.Security.IdentityCacheObject.SystemIdentity()']]] + ['scriptfileextension_4600',['ScriptFileExtension',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#a1d6690377df88fa0c142d72a949be17f',1,'Tgstation.Server.Host.System.IPlatformIdentifier.ScriptFileExtension()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#ad297b56dc4222debfe147d786e7c3c78',1,'Tgstation.Server.Host.System.PlatformIdentifier.ScriptFileExtension()']]], + ['scriptname_4601',['ScriptName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_script_attribute.html#a83d0ae0bc9554f29df970eaa741561dc',1,'Tgstation::Server::Host::Components::Events::EventScriptAttribute']]], + ['securitylevel_4602',['SecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aab2ca846e0aade7de3cfcea099f40fa4',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.SecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a95bc8bd7c56ff9866795ec3823847c9c',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.SecurityLevel()']]], + ['server_4603',['Server',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a8055d121e620784216311342fa30f715',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], + ['serverapiversion_4604',['ServerApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a9308db77bea5178c7fe198cc61348afe',1,'Tgstation.Server.Api.Models.ErrorMessage.ServerApiVersion()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a281531bad45554e8e35c02bd7c43ee38',1,'Tgstation.Server.Client.ApiException.ServerApiVersion()']]], + ['servercontrol_4605',['ServerControl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a83607d97387c92ed33c6640f0cd4ee1a',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], + ['serverport_4606',['ServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a34f2ed18e36028c8a913c4c542fc9dba',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['serverversion_4607',['ServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a58c14ed1399e171958dfe450be84c3cf',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.ServerVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a37d2a2cb232af1fcc3a5ea4139a052e9',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ServerVersion()']]], + ['sessioncontrollerfactory_4608',['SessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a24eb5f0e32cd79487cd9bd80d5257abb',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['setupwizardmode_4609',['SetupWizardMode',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#ace6cef6156eebad4a760e3d9f58dcb7e',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['showtestmergecommitters_4610',['ShowTestMergeCommitters',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad0559033aa2ab7b93c9e63e3b31d2ddd',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['softrestart_4611',['SoftRestart',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a24b03adbbc3a308d6a6ce6edc9846e17',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['softshutdown_4612',['SoftShutdown',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8388db2f41c2eed9f9783260f7a69bbe',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['stagedcompilejob_4613',['StagedCompileJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a8a8a50c1744b2264c242676b4ce3914d',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['startedat_4614',['StartedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a0988d9930cae8f698a17c20d3e8cec9a',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['startedby_4615',['StartedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#abb86696a2a25cf3259c16603745de887',1,'Tgstation.Server.Api.Models.Job.StartedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#aeb64c30e0787225682030adf2d2af036',1,'Tgstation.Server.Host.Models.Job.StartedBy()']]], + ['startup_4616',['Startup',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a31134a65d5338a2ba017ff3f0b276776',1,'Tgstation.Server.Host.System.IProcess.Startup()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab4a4559a320a7a43607d3a705d86a9e8',1,'Tgstation.Server.Host.System.Process.Startup()']]], + ['startuptime_4617',['StartupTime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a3a760923a1f56b674537f908b0f74c1b',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], + ['startuptimeout_4618',['StartupTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#aa3ac63088b89bf67dd5fdbe67970b03d',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['status_4619',['Status',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a374f3676c32da4421a9bbb9bdbb74bcd',1,'Tgstation.Server.Api.Models.DreamDaemon.Status()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a81f00a3e7109a861886d14e6233d8b43',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.Status()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5fa8be05b0c448ea097a70e5d8708ffb',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Status()']]], + ['stoppedat_4620',['StoppedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a2b6b6dbe1243f140d9fb04767ea16c61',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['symlinkfactory_4621',['SymlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog_factory.html#a3fcbf9a187ea2b1d389a2543b841ccef',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdogFactory']]], + ['systemidentifier_4622',['SystemIdentifier',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#af54beced1148cb5e7e8f114469fd577a',1,'Tgstation::Server::Api::Models::Internal::User']]], + ['systemidentity_4623',['SystemIdentity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a05ce72960f78e0a11148f44292f3fb7b',1,'Tgstation.Server.Host.Security.AuthenticationContext.SystemIdentity()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a01b4dc318a62fa3b321593418eb1247e',1,'Tgstation.Server.Host.Security.IAuthenticationContext.SystemIdentity()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a86a823a9e7ee94f2497bfae86c1efeed',1,'Tgstation.Server.Host.Security.IdentityCacheObject.SystemIdentity()']]] ]; diff --git a/search/properties_11.html b/search/properties_11.html index a9d37502d3..37d5a0a4ed 100644 --- a/search/properties_11.html +++ b/search/properties_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_11.js b/search/properties_11.js index f7d1c056c4..fe482c5d61 100644 --- a/search/properties_11.js +++ b/search/properties_11.js @@ -1,19 +1,22 @@ var searchData= [ - ['tag_4514',['Tag',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a6f98f41dd7b9a010bf03927f72b986f9',1,'Tgstation.Server.Api.Models.ChatChannel.Tag()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ad04f3c37655b30075bcba04db915a184',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Tag()']]], - ['tailincludeline_4515',['TailIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac479bad6bd50784c761ee4ea93ab12e7',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['terminationwasrequested_4516',['TerminationWasRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a9eae9a3173b2dc4dae3d2bfa67196d5b',1,'Tgstation.Server.Host.Components.Session.ISessionController.TerminationWasRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a253ee7e74591b02552eb4337c1b7fc5e',1,'Tgstation.Server.Host.Components.Session.SessionController.TerminationWasRequested()']]], - ['testmerge_4517',['TestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a76c0f83e9fc28eeefb8ed97592cd368b',1,'Tgstation::Server::Host::Models::RevInfoTestMerge']]], - ['testmerges_4518',['TestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a09eb9fa66db042c102ecc2b37da200b8',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab299cd000e56e4d1bb7f33b2223f97db',1,'Tgstation.Server.Host.Database.DatabaseContext.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6f140bbda8ac722038e19f1ecaf7b1cf',1,'Tgstation.Server.Host.Models.User.TestMerges()']]], - ['text_4519',['Text',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ace3d5601299f5b5a17ffa0b6aa81b28a',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], - ['timemerged_4520',['TimeMerged',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a2c485aa14b6c4e84abc06d965572fe97',1,'Tgstation::Server::Host::Components::Interop::Bridge::TestMergeInformation']]], - ['timeout_4521',['Timeout',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a015e61f9e9728ad9b47c175445ea67a1',1,'Tgstation.Server.Client.ApiClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a1c5eb3e376e012d3ca08caf71b009a22',1,'Tgstation.Server.Client.HttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a92b092701f159c344a3c78be34161ecf',1,'Tgstation.Server.Client.IApiClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#ad27a406c0398b4824889a0020ee291aa',1,'Tgstation.Server.Client.IHttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa1c1488dd8438023b24c87a32e09d5fe',1,'Tgstation.Server.Client.IServerClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7d3be56a549f9aedb631bb3824dd5790',1,'Tgstation.Server.Client.ServerClient.Timeout()']]], - ['titleatmerge_4522',['TitleAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a11bb79f0060477eb3fd084a09fbc0f04',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], - ['token_4523',['Token',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a48b5fae887842cd76920ef76944583a2',1,'Tgstation.Server.Api.ApiHeaders.Token()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#ab3363ffdb533616bd2b6688559f9def1',1,'Tgstation.Server.Client.IServerClient.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9c54c9b21bfad615f275484dafc6decc',1,'Tgstation.Server.Client.ServerClient.Token()']]], - ['topicrequesttimeout_4524',['TopicRequestTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5e172ad3abdcc1f6a0f24cdf08646d0a',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.TopicRequestTimeout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0e7e39db3290479256688fc7dae2e52d',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.TopicRequestTimeout()']]], - ['totaldmeoverwrite_4525',['TotalDmeOverwrite',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac81394b6c071d9779ab94c8151281723',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['trace_4526',['Trace',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5d7201b8cfa09c341ec68d81297aabad',1,'Tgstation::Server::Host::Service::Program']]], - ['trackedrepositoryurl_4527',['TrackedRepositoryUrl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a6c0253a0153c42989e6ab3279c01ede4',1,'Tgstation::Server::Api::Models::Administration']]], - ['tracking_4528',['Tracking',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a422e7c7f5d5ac88a75693311521b5d6a',1,'Tgstation::Server::Host::Components::Repository::IRepository']]], - ['type_4529',['Type',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#a2ebef1e76d3b23776c1480979bc42af9',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]] + ['tag_4624',['Tag',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a6f98f41dd7b9a010bf03927f72b986f9',1,'Tgstation.Server.Api.Models.ChatChannel.Tag()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ad04f3c37655b30075bcba04db915a184',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Tag()']]], + ['tailincludeline_4625',['TailIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac479bad6bd50784c761ee4ea93ab12e7',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['terminationwasrequested_4626',['TerminationWasRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a9eae9a3173b2dc4dae3d2bfa67196d5b',1,'Tgstation.Server.Host.Components.Session.ISessionController.TerminationWasRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a253ee7e74591b02552eb4337c1b7fc5e',1,'Tgstation.Server.Host.Components.Session.SessionController.TerminationWasRequested()']]], + ['testmerge_4627',['TestMerge',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a76c0f83e9fc28eeefb8ed97592cd368b',1,'Tgstation::Server::Host::Models::RevInfoTestMerge']]], + ['testmerges_4628',['TestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a09eb9fa66db042c102ecc2b37da200b8',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab299cd000e56e4d1bb7f33b2223f97db',1,'Tgstation.Server.Host.Database.DatabaseContext.TestMerges()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6f140bbda8ac722038e19f1ecaf7b1cf',1,'Tgstation.Server.Host.Models.User.TestMerges()']]], + ['text_4629',['Text',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ace3d5601299f5b5a17ffa0b6aa81b28a',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], + ['timemerged_4630',['TimeMerged',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a2c485aa14b6c4e84abc06d965572fe97',1,'Tgstation::Server::Host::Components::Interop::Bridge::TestMergeInformation']]], + ['timeout_4631',['Timeout',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a015e61f9e9728ad9b47c175445ea67a1',1,'Tgstation.Server.Client.ApiClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#a1c5eb3e376e012d3ca08caf71b009a22',1,'Tgstation.Server.Client.HttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a92b092701f159c344a3c78be34161ecf',1,'Tgstation.Server.Client.IApiClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_http_client.html#ad27a406c0398b4824889a0020ee291aa',1,'Tgstation.Server.Client.IHttpClient.Timeout()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#aa1c1488dd8438023b24c87a32e09d5fe',1,'Tgstation.Server.Client.IServerClient.Timeout()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7d3be56a549f9aedb631bb3824dd5790',1,'Tgstation.Server.Client.ServerClient.Timeout()']]], + ['titleatmerge_4632',['TitleAtMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a11bb79f0060477eb3fd084a09fbc0f04',1,'Tgstation::Server::Api::Models::Internal::TestMergeBase']]], + ['token_4633',['Token',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a48b5fae887842cd76920ef76944583a2',1,'Tgstation.Server.Api.ApiHeaders.Token()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#ab3363ffdb533616bd2b6688559f9def1',1,'Tgstation.Server.Client.IServerClient.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9c54c9b21bfad615f275484dafc6decc',1,'Tgstation.Server.Client.ServerClient.Token()']]], + ['tokenclockskewminutes_4634',['TokenClockSkewMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a5d8659fa382c1c18188b3d869fb17b1f',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['tokenexpiryminutes_4635',['TokenExpiryMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#aee22270ec4a1917739c2f99d9a5a6efd',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['tokensigningkeybytecount_4636',['TokenSigningKeyByteCount',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a24760533fd28fd555b428d626ab46f9a',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['topicrequesttimeout_4637',['TopicRequestTimeout',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a5e172ad3abdcc1f6a0f24cdf08646d0a',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.TopicRequestTimeout()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0e7e39db3290479256688fc7dae2e52d',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.TopicRequestTimeout()']]], + ['totaldmeoverwrite_4638',['TotalDmeOverwrite',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#ac81394b6c071d9779ab94c8151281723',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['trace_4639',['Trace',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a5d7201b8cfa09c341ec68d81297aabad',1,'Tgstation::Server::Host::Service::Program']]], + ['trackedrepositoryurl_4640',['TrackedRepositoryUrl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a6c0253a0153c42989e6ab3279c01ede4',1,'Tgstation::Server::Api::Models::Administration']]], + ['tracking_4641',['Tracking',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a422e7c7f5d5ac88a75693311521b5d6a',1,'Tgstation::Server::Host::Components::Repository::IRepository']]], + ['type_4642',['Type',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#acd1f470810912fd0d755545b4e15dc64',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]] ]; diff --git a/search/properties_12.html b/search/properties_12.html index 258148f1c6..48b86ccd38 100644 --- a/search/properties_12.html +++ b/search/properties_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_12.js b/search/properties_12.js index 5e13307d78..8212595008 100644 --- a/search/properties_12.js +++ b/search/properties_12.js @@ -1,15 +1,15 @@ var searchData= [ - ['uid_4530',['Uid',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html#a8106232a30bec19e62172fb31e568924',1,'Tgstation.Server.Host.Components.IInstanceReference.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a448db4112dfdf325225e5927d3e4f648',1,'Tgstation.Server.Host.Components.InstanceWrapper.Uid()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a21339e0b4c3d045ba30c6ac6ea15aa4f',1,'Tgstation.Server.Host.Security.ISystemIdentity.Uid()']]], - ['uninstall_4531',['Uninstall',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a6868da29a3857b56bba33e5d7c623b68',1,'Tgstation::Server::Host::Service::Program']]], - ['updatefromorigin_4532',['UpdateFromOrigin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ac917f08ca0b2f81b49544a1b7b9d3757',1,'Tgstation::Server::Api::Models::Repository']]], - ['updatepackageassetname_4533',['UpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f5697f355392923d10aa77a8e94dc91',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['url_4534',['Url',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a13979c77e1d657fe44ddc266d833515d',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.Url()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a33675bc7469cf1e0dd8f1a21dbaa71a2',1,'Tgstation.Server.Client.ApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0efbf73e1dfbee520ceafa593ee2ec51',1,'Tgstation.Server.Client.IApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a2c34434ebb4af540cbd3ec67fc116396',1,'Tgstation.Server.Client.IServerClient.Url()']]], - ['usebasicwatchdog_4535',['UseBasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a243d2eb586c4560648de8e670bad907c',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['user_4536',['User',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a92a51d88c16a6182343cb66e36f3bf89',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a4bc35ef53e296ec237216b3d0312f5da',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a0846ac9679599a99923987863edb0d5c',1,'Tgstation.Server.Host.Security.AuthenticationContext.User()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#ae2e7c0c04d2797b9a24a9776277ec77b',1,'Tgstation.Server.Host.Security.IAuthenticationContext.User()']]], - ['userid_4537',['UserId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ab931666b8099bf3f765545912f07246c',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['userlimit_4538',['UserLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a74a84ae6531a78ce51038f22e081bd04',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['username_4539',['Username',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3f35c621d1a28887fb4bc2885e2c893c',1,'Tgstation.Server.Api.ApiHeaders.Username()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#abdae9176f2609703ff36c43d7af97ac1',1,'Tgstation.Server.Host.Security.ISystemIdentity.Username()']]], - ['users_4540',['Users',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#acbd79ed6748d8aac0bd0500c01b419ac',1,'Tgstation.Server.Client.Components.IInstanceClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a01eeaccf183e928f6f50ebb60abdad',1,'Tgstation.Server.Client.Components.InstanceClient.Users()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a9c807f862e80f400477c6783910276ee',1,'Tgstation.Server.Client.IServerClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a6794b452542c1ee7c38c573e67e6aa83',1,'Tgstation.Server.Client.ServerClient.Users()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad1c33807b7a75d05d0004e024416e17f',1,'Tgstation.Server.Host.Database.DatabaseContext.Users()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9b6cb85c0616ae3076d4837f50a34d95',1,'Tgstation.Server.Host.Database.IDatabaseContext.Users()']]], - ['usessl_4541',['UseSsl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a8965e74ecabbb3c26693d2a1885dabc3',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]] + ['uid_4643',['Uid',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_reference.html#a8106232a30bec19e62172fb31e568924',1,'Tgstation.Server.Host.Components.IInstanceReference.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a448db4112dfdf325225e5927d3e4f648',1,'Tgstation.Server.Host.Components.InstanceWrapper.Uid()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a21339e0b4c3d045ba30c6ac6ea15aa4f',1,'Tgstation.Server.Host.Security.ISystemIdentity.Uid()']]], + ['uninstall_4644',['Uninstall',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a6868da29a3857b56bba33e5d7c623b68',1,'Tgstation::Server::Host::Service::Program']]], + ['updatefromorigin_4645',['UpdateFromOrigin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ac917f08ca0b2f81b49544a1b7b9d3757',1,'Tgstation::Server::Api::Models::Repository']]], + ['updatepackageassetname_4646',['UpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f5697f355392923d10aa77a8e94dc91',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['url_4647',['Url',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge_base.html#a13979c77e1d657fe44ddc266d833515d',1,'Tgstation.Server.Api.Models.Internal.TestMergeBase.Url()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a33675bc7469cf1e0dd8f1a21dbaa71a2',1,'Tgstation.Server.Client.ApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#a0efbf73e1dfbee520ceafa593ee2ec51',1,'Tgstation.Server.Client.IApiClient.Url()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a2c34434ebb4af540cbd3ec67fc116396',1,'Tgstation.Server.Client.IServerClient.Url()']]], + ['usebasicwatchdog_4648',['UseBasicWatchdog',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a243d2eb586c4560648de8e670bad907c',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['user_4649',['User',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a92a51d88c16a6182343cb66e36f3bf89',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a4bc35ef53e296ec237216b3d0312f5da',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.User()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a0846ac9679599a99923987863edb0d5c',1,'Tgstation.Server.Host.Security.AuthenticationContext.User()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#ae2e7c0c04d2797b9a24a9776277ec77b',1,'Tgstation.Server.Host.Security.IAuthenticationContext.User()']]], + ['userid_4650',['UserId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ab931666b8099bf3f765545912f07246c',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['userlimit_4651',['UserLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a74a84ae6531a78ce51038f22e081bd04',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['username_4652',['Username',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3f35c621d1a28887fb4bc2885e2c893c',1,'Tgstation.Server.Api.ApiHeaders.Username()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#abdae9176f2609703ff36c43d7af97ac1',1,'Tgstation.Server.Host.Security.ISystemIdentity.Username()']]], + ['users_4653',['Users',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#acbd79ed6748d8aac0bd0500c01b419ac',1,'Tgstation.Server.Client.Components.IInstanceClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a01eeaccf183e928f6f50ebb60abdad',1,'Tgstation.Server.Client.Components.InstanceClient.Users()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a9c807f862e80f400477c6783910276ee',1,'Tgstation.Server.Client.IServerClient.Users()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a6794b452542c1ee7c38c573e67e6aa83',1,'Tgstation.Server.Client.ServerClient.Users()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad1c33807b7a75d05d0004e024416e17f',1,'Tgstation.Server.Host.Database.DatabaseContext.Users()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9b6cb85c0616ae3076d4837f50a34d95',1,'Tgstation.Server.Host.Database.IDatabaseContext.Users()']]], + ['usessl_4654',['UseSsl',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a8965e74ecabbb3c26693d2a1885dabc3',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]] ]; diff --git a/search/properties_13.html b/search/properties_13.html index c3d59374ad..2bde76cafa 100644 --- a/search/properties_13.html +++ b/search/properties_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_13.js b/search/properties_13.js index 5cf193cda1..8d78b482eb 100644 --- a/search/properties_13.js +++ b/search/properties_13.js @@ -1,9 +1,9 @@ var searchData= [ - ['valid_4542',['Valid',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#a9b8292cc2ffeb79aa55013c6d8a617d7',1,'Tgstation::Server::Api::Models::Internal::ChatConnectionStringBuilder']]], - ['validationparameters_4543',['ValidationParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a46e66985719064cffa8b569830a3712f',1,'Tgstation.Server.Host.Security.ITokenFactory.ValidationParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a1fe6c5c282b5db5a2a61a5417e634ed8',1,'Tgstation.Server.Host.Security.TokenFactory.ValidationParameters()']]], - ['validinstancepaths_4544',['ValidInstancePaths',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a1bc0807183f8654ff304e1f78d73b205',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['version_4545',['Version',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a5e83da474fffc2a2919cda933e09ce85',1,'Tgstation.Server.Api.Models.Byond.Version()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a6b4a0c3f0398cef893f307ff01c1e639',1,'Tgstation.Server.Api.Models.ServerInformation.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ac7e7961155c2d7c0e08be2d7320e45da',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aaef823795dc654725e448b487fefd9ac',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a338f454c7f08e0eb077a60888b268b14',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac1d47d91bd3883e453b23c120d1f0ec9',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a600df9ffd79d4f94f59dfefccbcec099',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Version()']]], - ['versionprefix_4546',['VersionPrefix',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#ab2a2be82555afbf6ffb5b7ae3d90b7f0',1,'Tgstation::Server::Host::System::IAssemblyInformationProvider']]], - ['versionstring_4547',['VersionString',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac9a43553319585f54b7a6b69d862250c',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.VersionString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#abd6db0f6e1ea9273baeacaa66ae81fa3',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.VersionString()']]] + ['valid_4655',['Valid',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_connection_string_builder.html#a9b8292cc2ffeb79aa55013c6d8a617d7',1,'Tgstation::Server::Api::Models::Internal::ChatConnectionStringBuilder']]], + ['validationparameters_4656',['ValidationParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_token_factory.html#a46e66985719064cffa8b569830a3712f',1,'Tgstation.Server.Host.Security.ITokenFactory.ValidationParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a1fe6c5c282b5db5a2a61a5417e634ed8',1,'Tgstation.Server.Host.Security.TokenFactory.ValidationParameters()']]], + ['validinstancepaths_4657',['ValidInstancePaths',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a1bc0807183f8654ff304e1f78d73b205',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['version_4658',['Version',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a5e83da474fffc2a2919cda933e09ce85',1,'Tgstation.Server.Api.Models.Byond.Version()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#a6b4a0c3f0398cef893f307ff01c1e639',1,'Tgstation.Server.Api.Models.ServerInformation.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ac7e7961155c2d7c0e08be2d7320e45da',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#aaef823795dc654725e448b487fefd9ac',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a338f454c7f08e0eb077a60888b268b14',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac1d47d91bd3883e453b23c120d1f0ec9',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Version()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a600df9ffd79d4f94f59dfefccbcec099',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Version()']]], + ['versionprefix_4659',['VersionPrefix',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#ab2a2be82555afbf6ffb5b7ae3d90b7f0',1,'Tgstation::Server::Host::System::IAssemblyInformationProvider']]], + ['versionstring_4660',['VersionString',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#ac9a43553319585f54b7a6b69d862250c',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.VersionString()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#abd6db0f6e1ea9273baeacaa66ae81fa3',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.VersionString()']]] ]; diff --git a/search/properties_14.html b/search/properties_14.html index e50ce54f80..d7cb0bf4cd 100644 --- a/search/properties_14.html +++ b/search/properties_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_14.js b/search/properties_14.js index 78b6b78651..03747d5210 100644 --- a/search/properties_14.js +++ b/search/properties_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['watchdog_4548',['Watchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a71590b8427369b3eb57af54643068448',1,'Tgstation.Server.Host.Components.IInstanceCore.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a902e9a3917553cae8ec372948e98d6ec',1,'Tgstation.Server.Host.Components.Instance.Watchdog()']]], - ['watchdogpresent_4549',['WatchdogPresent',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a1c9a042a42da1e39316d2f1b45b28765',1,'Tgstation::Server::Host::Core::IServerControl']]], - ['windowshost_4550',['WindowsHost',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#abf3f89fee1f079cadd4208f337444fec',1,'Tgstation::Server::Api::Models::Administration']]] + ['watchdog_4661',['Watchdog',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a71590b8427369b3eb57af54643068448',1,'Tgstation.Server.Host.Components.IInstanceCore.Watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a902e9a3917553cae8ec372948e98d6ec',1,'Tgstation.Server.Host.Components.Instance.Watchdog()']]], + ['watchdogpresent_4662',['WatchdogPresent',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_control.html#a1c9a042a42da1e39316d2f1b45b28765',1,'Tgstation::Server::Host::Core::IServerControl']]], + ['windowshost_4663',['WindowsHost',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#abf3f89fee1f079cadd4208f337444fec',1,'Tgstation::Server::Api::Models::Administration']]] ]; diff --git a/search/properties_2.html b/search/properties_2.html index 1d0bf0ceb3..14e41f8e3c 100644 --- a/search/properties_2.html +++ b/search/properties_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_2.js b/search/properties_2.js index 1df9683637..71ddbeb83b 100644 --- a/search/properties_2.js +++ b/search/properties_2.js @@ -1,56 +1,59 @@ var searchData= [ - ['cancelkeypress_4267',['CancelKeyPress',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a850a82073bea75fd1c0011f92aa91191',1,'Tgstation::Server::Host::IO::IConsole']]], - ['cancelled_4268',['Cancelled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab68caae8a7e5bd3bfd7764cab7b8773d',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['cancelledby_4269',['CancelledBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a8bba62b605a9b135cc02a76edab12d8a',1,'Tgstation.Server.Api.Models.Job.CancelledBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#a11070d5a55b77aa91f23403d17c4d224',1,'Tgstation.Server.Host.Models.Job.CancelledBy()']]], - ['cancelright_4270',['CancelRight',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#af210e7bef88bdc5ca203c8f0931c520a',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['cancelrightstype_4271',['CancelRightsType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a796c6a9e900858ec0084648e9b375609',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['cancreatesymlinks_4272',['CanCreateSymlinks',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a372abf6465e892a3fee94c1aa32aaf3f',1,'Tgstation::Server::Host::Security::ISystemIdentity']]], - ['canonicalname_4273',['CanonicalName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6882aa0e73af174efc9a7d843888a242',1,'Tgstation::Server::Host::Models::User']]], - ['channel_4274',['Channel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a38d8a714d5e64f7ec0864400c47af3d9',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.Channel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae40aff12bbf1b190b66a8f8f274dbdba',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Channel()']]], - ['channelids_4275',['ChannelIds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ae0f13f64bd97247dd98165a6a4b7e4af',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], - ['channellimit_4276',['ChannelLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8dbeaca6b993adef66fa1e1a01530f4b',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['channels_4277',['Channels',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a7ca486417cb39a2dd44af4c3b9ca9caf',1,'Tgstation.Server.Api.Models.ChatBot.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#af0d278930e8e0b2779444e406bbfdbb6',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Channels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a7f7c9a94446c1b5e1afc9156705b6777',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#a280793bb9606d15ac3291b491db28fa2',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a3f9609cc720dfdb4c40ae553c658982a',1,'Tgstation.Server.Host.Models.ChatBot.Channels()']]], - ['chat_4278',['Chat',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a002488e85cb75fc56937cabff464be4c',1,'Tgstation.Server.Host.Components.IInstanceCore.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a33d0e17d96ba16ead347ff8fb1bf6b45',1,'Tgstation.Server.Host.Components.Instance.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec24ff5e3b22b40e62f4a2443eb8cec9',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Chat()']]], - ['chatbot_4279',['ChatBot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#af4c3c897c6aadc96dfbb08ff893dc602',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['chatbotlimit_4280',['ChatBotLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#ae07e119a1bd8ddbcf2641a8f7b734c2b',1,'Tgstation::Server::Api::Models::Instance']]], - ['chatbotrights_4281',['ChatBotRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a940fa0780621d08d50f1e961bb79a87b',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['chatbots_4282',['ChatBots',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#aca06567ce5a36c7e6b2ac09d5e6d9a38',1,'Tgstation.Server.Client.Components.IInstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a8b8ccd6c8cb8f046bc1c94e4220df1c8',1,'Tgstation.Server.Client.Components.InstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad4cf2228c8dae3c2641251070fee76af',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatBots()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab21b0ca8cd1ea61dd71a2b3fd8879e6e',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatBots()']]], - ['chatchannels_4283',['ChatChannels',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a78702d5654098ab15997e27830ee3700',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a1b4b0a39df2b5009142fbced4a3b431d',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatChannels()']]], - ['chatcommand_4284',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae601a706f441dab0b1b606652e6bf479',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['chatmessage_4285',['ChatMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a5c439c5d7dcadaa0c3dddaca1b07046e',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeParameters']]], - ['chatresponses_4286',['ChatResponses',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a18c82501c779543e0aea47992f683bd3',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], - ['chatsettings_4287',['ChatSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a082ce7e1f98a393dc31eed005abc5002',1,'Tgstation.Server.Host.Models.ChatChannel.ChatSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#aeca6d03d53690be83a3efc3634b702fe',1,'Tgstation.Server.Host.Models.Instance.ChatSettings()']]], - ['chatsettingsid_4288',['ChatSettingsId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#aa81eda97809d3993ebf0d34f77fc0c1b',1,'Tgstation::Server::Host::Models::ChatChannel']]], - ['chatupdate_4289',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ab3602746a6cf5978f869fbbd3ec35021',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['checkoutsha_4290',['CheckoutSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#af2aad262f13b94c7aa30deee98862384',1,'Tgstation::Server::Api::Models::Repository']]], - ['cloneinprogress_4291',['CloneInProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a3e57f020cf906b3c04f3fc81084a98d3',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneInProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#adb8787a8636ea92edd721e4e1eb7c97c',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneInProgress()']]], - ['closeportonreboot_4292',['ClosePortOnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#abe1552b921cee4e80af4f59b6862a8c8',1,'Tgstation.Server.Host.Components.Session.ISessionController.ClosePortOnReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a8a5265d0101bec2eb37f2f65fb4a6ef9',1,'Tgstation.Server.Host.Components.Session.SessionController.ClosePortOnReboot()']]], - ['commandresponsemessage_4293',['CommandResponseMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a5e4edc24d276cd6f04ac5f9ca341854e',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], - ['commandtype_4294',['CommandType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a1d4ee9b9e14b762f89c37089f5e95adc',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CommandType()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a4ff929e0039bac0fc761fdc518fb3cd2',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.CommandType()']]], - ['comment_4295',['Comment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a556ffae15694a68aa1c78f851407eb5b',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], - ['commitsha_4296',['CommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#ac93d5aef3a8222c5b5ceed6df8e7b309',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], - ['committeremail_4297',['CommitterEmail',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ae28a981004bc61c95a4cdd2668d0d3e9',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['committername_4298',['CommitterName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad6554d43c365ca4df2122315420cb456',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['compilejob_4299',['CompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a7b45683d68a5cdfe0f19c7524d6b8863',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#aa70dea09833e84fe4b5fead42a9067a6',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#ae2b375dacb3108f70f05d66a4b659dbc',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a8db55041002deed3d1abfbc1d16db7eb',1,'Tgstation.Server.Host.Components.Session.ISessionController.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a02ee6eb05943c4bbfed4aca64692fa80',1,'Tgstation.Server.Host.Models.ReattachInformation.CompileJob()']]], - ['compilejobid_4300',['CompileJobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#af8d154d1976539dbca0a4dc0bc597366',1,'Tgstation::Server::Host::Models::ReattachInformation']]], - ['compilejobs_4301',['CompileJobs',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#afa502454260e6df15dbdaf7ef487f897',1,'Tgstation.Server.Api.Models.RevisionInformation.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa72d8f36af92d91080acf1af4d971420',1,'Tgstation.Server.Host.Database.DatabaseContext.CompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9f93949abe42bddbbf9134946c7f5be5',1,'Tgstation.Server.Host.Database.IDatabaseContext.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ad4106b5ca8b17dc7ff82ceb681a94b2c',1,'Tgstation.Server.Host.Models.RevisionInformation.CompileJobs()']]], - ['configuration_4302',['Configuration',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a16626c6a13892319d3f24e0c57dd9394',1,'Tgstation.Server.Client.Components.IInstanceClient.Configuration()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a32339ec5eab6e79b673bed2aca4dbceb',1,'Tgstation.Server.Client.Components.InstanceClient.Configuration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#af59817cc9aa5a4ca776200c7c0b9206c',1,'Tgstation.Server.Host.Components.IInstanceCore.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a49c2073606768819b91a401c21fe3555',1,'Tgstation.Server.Host.Components.Instance.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#abecd5329f7937e822959734f3c5272d1',1,'Tgstation.Server.Host.Setup.SetupApplication.Configuration()']]], - ['configurationrights_4303',['ConfigurationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ae62017841e15071fb5d7652fc60d159a',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['configurationtype_4304',['ConfigurationType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6183efad1d4344d06e59ea8bc2072a19',1,'Tgstation::Server::Api::Models::Instance']]], - ['configure_4305',['Configure',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#aaba3eb445c2c2c0f8a11d150096b7457',1,'Tgstation::Server::Host::Service::Program']]], - ['configversion_4306',['ConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a5625c8cc148d7d33019735915d440ec7',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['connected_4307',['Connected',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acc07a6bfb2fbb35243aa1e147d92dd87',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afab0213888c139dbb1786d7f5c0d8680',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connected()']]], - ['connectionname_4308',['ConnectionName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a0d68ca440d98dc89941ef3c5781f2f61',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], - ['connectionstring_4309',['ConnectionString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a7875f395e72be4fada0a0ed86282156f',1,'Tgstation.Server.Api.Models.Internal.ChatBot.ConnectionString()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a53a14b4a89de73b8ea223804c4aea365',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ConnectionString()']]], - ['content_4310',['Content',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html#a5f8416b44a3708f47e438ea192b9b7ed',1,'Tgstation.Server.Api.Models.Internal.RawData.Content()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a3a4a159c1b7b4ff0a163f4bb29ea4844',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.Content()']]], - ['createdat_4311',['CreatedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ab0d92bcf1b5b9afbb0f7ab1e5952acff',1,'Tgstation::Server::Api::Models::Internal::User']]], - ['createdby_4312',['CreatedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#af535560432c40c4da118e84e810c5cf0',1,'Tgstation.Server.Api.Models.User.CreatedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8f1821d1c00f73eff7324bf8fc9c1c7e',1,'Tgstation.Server.Host.Models.User.CreatedBy()']]], - ['createdump_4313',['CreateDump',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aaa1081740725a60d8a78b5db2143f304',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['createdusers_4314',['CreatedUsers',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#af7088656a7ce8f84c103abef89a0ac52',1,'Tgstation::Server::Host::Models::User']]], - ['currentallowwebclient_4315',['CurrentAllowWebclient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a5ec4c59c00dccb5e0b87e4bf2c2d9566',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['currentauthenticationcontext_4316',['CurrentAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a37a564f1b33b53dc2af9fb751b5a7e9b',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CurrentAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6c1be0fe695cf57fa21674373868f709',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CurrentAuthenticationContext()']]], - ['currentport_4317',['CurrentPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a3740443b5c26f64b1b4f516399219040',1,'Tgstation.Server.Api.Models.DreamDaemon.CurrentPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a6dacbc68c2a5f471a5540afc3150ddc7',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CurrentPort()']]], - ['currentsecurity_4318',['CurrentSecurity',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aea8a6590efc3c90d0e57f532902a149e',1,'Tgstation::Server::Api::Models::DreamDaemon']]], - ['customcommands_4319',['CustomCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#abfda6bc1a90add9d6bff98456cf550ec',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.CustomCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a09fedbbe7a7681b0e28fe47158af766d',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a86c0726e12e80ae3c6f2b3742d3a229c',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a32fa34e507879cfa556254e8ec7f1fb9',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicResponse.CustomCommands()']]] + ['cancelkeypress_4369',['CancelKeyPress',['../interface_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_i_console.html#a850a82073bea75fd1c0011f92aa91191',1,'Tgstation::Server::Host::IO::IConsole']]], + ['cancelled_4370',['Cancelled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab68caae8a7e5bd3bfd7764cab7b8773d',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['cancelledby_4371',['CancelledBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a8bba62b605a9b135cc02a76edab12d8a',1,'Tgstation.Server.Api.Models.Job.CancelledBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#a11070d5a55b77aa91f23403d17c4d224',1,'Tgstation.Server.Host.Models.Job.CancelledBy()']]], + ['cancelright_4372',['CancelRight',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#af210e7bef88bdc5ca203c8f0931c520a',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['cancelrightstype_4373',['CancelRightsType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a796c6a9e900858ec0084648e9b375609',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['cancreatesymlinks_4374',['CanCreateSymlinks',['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_system_identity.html#a372abf6465e892a3fee94c1aa32aaf3f',1,'Tgstation::Server::Host::Security::ISystemIdentity']]], + ['canonicalname_4375',['CanonicalName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a6882aa0e73af174efc9a7d843888a242',1,'Tgstation::Server::Host::Models::User']]], + ['channel_4376',['Channel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a38d8a714d5e64f7ec0864400c47af3d9',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.Channel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae40aff12bbf1b190b66a8f8f274dbdba',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Channel()']]], + ['channelids_4377',['ChannelIds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_message.html#ae0f13f64bd97247dd98165a6a4b7e4af',1,'Tgstation::Server::Host::Components::Interop::ChatMessage']]], + ['channellimit_4378',['ChannelLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8dbeaca6b993adef66fa1e1a01530f4b',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['channels_4379',['Channels',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_bot.html#a7ca486417cb39a2dd44af4c3b9ca9caf',1,'Tgstation.Server.Api.Models.ChatBot.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#af0d278930e8e0b2779444e406bbfdbb6',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.Channels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a7f7c9a94446c1b5e1afc9156705b6777',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_chat_update.html#a280793bb9606d15ac3291b491db28fa2',1,'Tgstation.Server.Host.Components.Interop.ChatUpdate.Channels()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a3f9609cc720dfdb4c40ae553c658982a',1,'Tgstation.Server.Host.Models.ChatBot.Channels()']]], + ['chat_4380',['Chat',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a002488e85cb75fc56937cabff464be4c',1,'Tgstation.Server.Host.Components.IInstanceCore.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a33d0e17d96ba16ead347ff8fb1bf6b45',1,'Tgstation.Server.Host.Components.Instance.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aec24ff5e3b22b40e62f4a2443eb8cec9',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Chat()']]], + ['chatbot_4381',['ChatBot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#af4c3c897c6aadc96dfbb08ff893dc602',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['chatbotlimit_4382',['ChatBotLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#ae07e119a1bd8ddbcf2641a8f7b734c2b',1,'Tgstation::Server::Api::Models::Instance']]], + ['chatbotrights_4383',['ChatBotRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a940fa0780621d08d50f1e961bb79a87b',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['chatbots_4384',['ChatBots',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#aca06567ce5a36c7e6b2ac09d5e6d9a38',1,'Tgstation.Server.Client.Components.IInstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a8b8ccd6c8cb8f046bc1c94e4220df1c8',1,'Tgstation.Server.Client.Components.InstanceClient.ChatBots()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad4cf2228c8dae3c2641251070fee76af',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatBots()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab21b0ca8cd1ea61dd71a2b3fd8879e6e',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatBots()']]], + ['chatchannels_4385',['ChatChannels',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a78702d5654098ab15997e27830ee3700',1,'Tgstation.Server.Host.Database.DatabaseContext.ChatChannels()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a1b4b0a39df2b5009142fbced4a3b431d',1,'Tgstation.Server.Host.Database.IDatabaseContext.ChatChannels()']]], + ['chatcommand_4386',['ChatCommand',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ae601a706f441dab0b1b606652e6bf479',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['chatmessage_4387',['ChatMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a5c439c5d7dcadaa0c3dddaca1b07046e',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeParameters']]], + ['chatresponses_4388',['ChatResponses',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a18c82501c779543e0aea47992f683bd3',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], + ['chatsettings_4389',['ChatSettings',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a082ce7e1f98a393dc31eed005abc5002',1,'Tgstation.Server.Host.Models.ChatChannel.ChatSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#aeca6d03d53690be83a3efc3634b702fe',1,'Tgstation.Server.Host.Models.Instance.ChatSettings()']]], + ['chatsettingsid_4390',['ChatSettingsId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#aa81eda97809d3993ebf0d34f77fc0c1b',1,'Tgstation::Server::Host::Models::ChatChannel']]], + ['chatupdate_4391',['ChatUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#ab3602746a6cf5978f869fbbd3ec35021',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['checkoutsha_4392',['CheckoutSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#af2aad262f13b94c7aa30deee98862384',1,'Tgstation::Server::Api::Models::Repository']]], + ['cloneinprogress_4393',['CloneInProgress',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#a3e57f020cf906b3c04f3fc81084a98d3',1,'Tgstation.Server.Host.Components.Repository.IRepositoryManager.CloneInProgress()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#adb8787a8636ea92edd721e4e1eb7c97c',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.CloneInProgress()']]], + ['closeportonreboot_4394',['ClosePortOnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#abe1552b921cee4e80af4f59b6862a8c8',1,'Tgstation.Server.Host.Components.Session.ISessionController.ClosePortOnReboot()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a8a5265d0101bec2eb37f2f65fb4a6ef9',1,'Tgstation.Server.Host.Components.Session.SessionController.ClosePortOnReboot()']]], + ['commandresponsemessage_4395',['CommandResponseMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a5e4edc24d276cd6f04ac5f9ca341854e',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicResponse']]], + ['commandtype_4396',['CommandType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a1d4ee9b9e14b762f89c37089f5e95adc',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CommandType()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a4ff929e0039bac0fc761fdc518fb3cd2',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.CommandType()']]], + ['comment_4397',['Comment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a556ffae15694a68aa1c78f851407eb5b',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], + ['commitsha_4398',['CommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#ac93d5aef3a8222c5b5ceed6df8e7b309',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], + ['committeremail_4399',['CommitterEmail',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ae28a981004bc61c95a4cdd2668d0d3e9',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['committername_4400',['CommitterName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#ad6554d43c365ca4df2122315420cb456',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['compilejob_4401',['CompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a7b45683d68a5cdfe0f19c7524d6b8863',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#aa70dea09833e84fe4b5fead42a9067a6',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#ae2b375dacb3108f70f05d66a4b659dbc',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.CompileJob()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a8db55041002deed3d1abfbc1d16db7eb',1,'Tgstation.Server.Host.Components.Session.ISessionController.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a02ee6eb05943c4bbfed4aca64692fa80',1,'Tgstation.Server.Host.Models.ReattachInformation.CompileJob()']]], + ['compilejobid_4402',['CompileJobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#af8d154d1976539dbca0a4dc0bc597366',1,'Tgstation::Server::Host::Models::ReattachInformation']]], + ['compilejobs_4403',['CompileJobs',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#afa502454260e6df15dbdaf7ef487f897',1,'Tgstation.Server.Api.Models.RevisionInformation.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa72d8f36af92d91080acf1af4d971420',1,'Tgstation.Server.Host.Database.DatabaseContext.CompileJobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a9f93949abe42bddbbf9134946c7f5be5',1,'Tgstation.Server.Host.Database.IDatabaseContext.CompileJobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ad4106b5ca8b17dc7ff82ceb681a94b2c',1,'Tgstation.Server.Host.Models.RevisionInformation.CompileJobs()']]], + ['configuration_4404',['Configuration',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a16626c6a13892319d3f24e0c57dd9394',1,'Tgstation.Server.Client.Components.IInstanceClient.Configuration()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a32339ec5eab6e79b673bed2aca4dbceb',1,'Tgstation.Server.Client.Components.InstanceClient.Configuration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#af59817cc9aa5a4ca776200c7c0b9206c',1,'Tgstation.Server.Host.Components.IInstanceCore.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a49c2073606768819b91a401c21fe3555',1,'Tgstation.Server.Host.Components.Instance.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#abecd5329f7937e822959734f3c5272d1',1,'Tgstation.Server.Host.Setup.SetupApplication.Configuration()']]], + ['configurationrights_4405',['ConfigurationRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#ae62017841e15071fb5d7652fc60d159a',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['configurationtype_4406',['ConfigurationType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6183efad1d4344d06e59ea8bc2072a19',1,'Tgstation::Server::Api::Models::Instance']]], + ['configure_4407',['Configure',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#aaba3eb445c2c2c0f8a11d150096b7457',1,'Tgstation::Server::Host::Service::Program']]], + ['configversion_4408',['ConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a5625c8cc148d7d33019735915d440ec7',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['connected_4409',['Connected',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#acc07a6bfb2fbb35243aa1e147d92dd87',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#afab0213888c139dbb1786d7f5c0d8680',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Connected()']]], + ['connectionname_4410',['ConnectionName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a0d68ca440d98dc89941ef3c5781f2f61',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], + ['connectionstring_4411',['ConnectionString',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a7875f395e72be4fada0a0ed86282156f',1,'Tgstation.Server.Api.Models.Internal.ChatBot.ConnectionString()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a53a14b4a89de73b8ea223804c4aea365',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.ConnectionString()']]], + ['content_4412',['Content',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_raw_data.html#a5f8416b44a3708f47e438ea192b9b7ed',1,'Tgstation.Server.Api.Models.Internal.RawData.Content()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#a3a4a159c1b7b4ff0a163f4bb29ea4844',1,'Tgstation.Server.Host.Components.Chat.Providers.Message.Content()']]], + ['context_4413',['Context',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_message.html#ad53ba750f37b4026388b3ece25768290',1,'Tgstation::Server::Host::Components::Chat::Providers::Message']]], + ['createdat_4414',['CreatedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#ab0d92bcf1b5b9afbb0f7ab1e5952acff',1,'Tgstation::Server::Api::Models::Internal::User']]], + ['createdby_4415',['CreatedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#af535560432c40c4da118e84e810c5cf0',1,'Tgstation.Server.Api.Models.User.CreatedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a8f1821d1c00f73eff7324bf8fc9c1c7e',1,'Tgstation.Server.Host.Models.User.CreatedBy()']]], + ['createdump_4416',['CreateDump',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aaa1081740725a60d8a78b5db2143f304',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['createdusers_4417',['CreatedUsers',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#af7088656a7ce8f84c103abef89a0ac52',1,'Tgstation::Server::Host::Models::User']]], + ['creategithubdeployments_4418',['CreateGitHubDeployments',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a4edd45186b8f63e5c4682599e4476df5',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['currentallowwebclient_4419',['CurrentAllowWebclient',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a5ec4c59c00dccb5e0b87e4bf2c2d9566',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['currentauthenticationcontext_4420',['CurrentAuthenticationContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a37a564f1b33b53dc2af9fb751b5a7e9b',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.CurrentAuthenticationContext()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context_factory.html#a6c1be0fe695cf57fa21674373868f709',1,'Tgstation.Server.Host.Security.IAuthenticationContextFactory.CurrentAuthenticationContext()']]], + ['currentport_4421',['CurrentPort',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#a3740443b5c26f64b1b4f516399219040',1,'Tgstation.Server.Api.Models.DreamDaemon.CurrentPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a6dacbc68c2a5f471a5540afc3150ddc7',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CurrentPort()']]], + ['currentsecurity_4422',['CurrentSecurity',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_daemon.html#aea8a6590efc3c90d0e57f532902a149e',1,'Tgstation::Server::Api::Models::DreamDaemon']]], + ['customcommands_4423',['CustomCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#abfda6bc1a90add9d6bff98456cf550ec',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.CustomCommands()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_i_chat_tracking_context.html#a09fedbbe7a7681b0e28fe47158af766d',1,'Tgstation.Server.Host.Components.Chat.IChatTrackingContext.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#a86c0726e12e80ae3c6f2b3742d3a229c',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.CustomCommands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_response.html#a32fa34e507879cfa556254e8ec7f1fb9',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicResponse.CustomCommands()']]], + ['customtokensigningkeybase64_4424',['CustomTokenSigningKeyBase64',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a12d01d2e2c457d476ea7f6d2145b3218',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]] ]; diff --git a/search/properties_3.html b/search/properties_3.html index 8451a3bef1..3c5a28ac26 100644 --- a/search/properties_3.html +++ b/search/properties_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_3.js b/search/properties_3.js index 7fe4b0b64b..9ae3b2db1a 100644 --- a/search/properties_3.js +++ b/search/properties_3.js @@ -1,36 +1,37 @@ var searchData= [ - ['databaseconfiguration_4320',['DatabaseConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a9563b31eb4a36767bccf9cf0f347669c',1,'Tgstation::Server::Host::Setup::IPostSetupServices']]], - ['databasecontext_4321',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ab687e0fc0cb712708297c0c2b43ca849',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['databasetype_4322',['DatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#adab83eaad53afabdb2f7b43c23ece38a',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]], - ['debug_4323',['Debug',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a938d576ceba93bf3cb1a32ae1dcccc52',1,'Tgstation::Server::Host::Service::Program']]], - ['description_4324',['Description',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a3898828f81135947949d8f1083a71a10',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['designtime_4325',['DesignTime',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#ae179f5debc33b39375973abf2d91e99d',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.DesignTime()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a3b6658b7b9a33591ec03e0ad4c24bf09',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.DesignTime()']]], - ['directory_4326',['Directory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a7607fcc4f9d4667337c435fd2b96dc53',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f268f1281d32885a378d655e5b67df2',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#aad824931c595d0e0c5522892e9467499',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Directory()']]], - ['directoryname_4327',['DirectoryName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#af7f70d7f52963a2b3c80537734ba7967',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], - ['disable_4328',['Disable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#af1c69ac7d59ed1817d59b0022d86db15',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['discordchannelid_4329',['DiscordChannelId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a7d69363fd8b5b85e8a66d7c6d4aeb4ec',1,'Tgstation::Server::Api::Models::ChatChannel']]], - ['disposed_4330',['Disposed',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#aff3a0cd34a0dee8970516a0d06616053',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a12ea0f5bc6f3379005d924a42bd905d9',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disposed()']]], - ['dmapiavailable_4331',['DMApiAvailable',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a52229c39f084c0740bd42d0a775897bf',1,'Tgstation::Server::Host::Components::Session::ISessionController']]], - ['dmapimajorversion_4332',['DMApiMajorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ab41a3af4b8f49c1d44aeb92aac0ac4fe',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['dmapiminorversion_4333',['DMApiMinorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a02faf1cc1b9d9a9f0d38f86559b58141',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['dmapiparameters_4334',['DMApiParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html#a2898638d05a8b0550e390b89e672b81a',1,'Tgstation::Server::Host::Components::Interop::Bridge::IBridgeHandler']]], - ['dmapipatchversion_4335',['DMApiPatchVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a5328176206b0fa9a2c7bb2ccb9d5e154',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['dmapiversion_4336',['DMApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#ab960ca771b3f1b5b1caabddb6286934b',1,'Tgstation.Server.Api.Models.Internal.CompileJob.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#ab41b1b31a44ddcdcc04f2f550f0046ef',1,'Tgstation.Server.Api.Models.ServerInformation.DMApiVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#afe95d6ef4c8fc3218ceb3099342f9046',1,'Tgstation.Server.Host.Components.Session.ISessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aa7a0a4d67b027a49d086c20e3639e5fd',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a1874072c230506695dae47cd11d28e4e',1,'Tgstation.Server.Host.Models.CompileJob.DMApiVersion()']]], - ['dmb_4337',['Dmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ae9210ff3236e194682fabe36fe20620d',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], - ['dmbavailable_4338',['DmbAvailable',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#ad6c02b7f5616833f82c02af6d8fe5bec',1,'Tgstation::Server::Host::Components::Deployment::IDmbFactory']]], - ['dmbfactory_4339',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a401d41a1b1b805f553f53b35f46275ef',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['dmbname_4340',['DmbName',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a950ac6f5b0cbcb2680546968c79486a1',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a82633d2589d4ab55afdefe5be69bcd36',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.DmbName()']]], - ['dmename_4341',['DmeName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#a62c90f6d2a9a109318bb3fba05afead0',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], - ['dreamdaemon_4342',['DreamDaemon',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a3d0fe52c8e2428ab13df3f14a4c9d36e',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamDaemon()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a6e49e9e7b6d23a95f9839ab4add778',1,'Tgstation.Server.Client.Components.InstanceClient.DreamDaemon()']]], - ['dreamdaemonname_4343',['DreamDaemonName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a307f7487e7a407203c85b86bc9df4f8f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamDaemonName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad43d91cf402c0084067dee5d1b182cde',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamDaemonName()']]], - ['dreamdaemonpath_4344',['DreamDaemonPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aebbd445eb581a534e4ad8ff6b0f6c1ce',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamDaemonPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#af7c6d39dcd1075f42e8721446b5e159f',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamDaemonPath()']]], - ['dreamdaemonrights_4345',['DreamDaemonRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a8367896a1a9ff6e745d0c62b85d8fd0e',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['dreamdaemonsettings_4346',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae03574f8c27c8c179b6d1b8c6f71532e',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamDaemonSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a834db5965b255a765f7ae274e4104f36',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamDaemonSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a94cb9055338f1d52397f10aab18f554d',1,'Tgstation.Server.Host.Models.Instance.DreamDaemonSettings()']]], - ['dreammaker_4347',['DreamMaker',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a5a505ae2d713942640558e34222b444b',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af92b0694efe4453eee2ea50d9c18616e',1,'Tgstation.Server.Client.Components.InstanceClient.DreamMaker()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#acbc6bed95fa79891224fc0b1c5255071',1,'Tgstation.Server.Host.Components.IInstanceCore.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a5774569e57a7e7b15ce6dafed0904ab0',1,'Tgstation.Server.Host.Components.Instance.DreamMaker()']]], - ['dreammakername_4348',['DreamMakerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a676cee80ef384243348ee21cfc6a0f28',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamMakerName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a40f9cadd672f9e36c3a89be2df1cb4b5',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamMakerName()']]], - ['dreammakerpath_4349',['DreamMakerPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a4d5315a7648111cd6851fe47dfe859a2',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamMakerPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a45a3041c6d9e0ba81d361090549bb072',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamMakerPath()']]], - ['dreammakerrights_4350',['DreamMakerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a51bb2f3a485f142fc1b60cc1c4c53052',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['dreammakersettings_4351',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a77fbed3e1799f2e4c6edec6dc2f415bb',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamMakerSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aac927b14c117b14a4bafdf3811c2c859',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamMakerSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a09929f71b77a27fc5f609ff64cf190d6',1,'Tgstation.Server.Host.Models.Instance.DreamMakerSettings()']]], - ['dropdatabase_4352',['DropDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a30f47f73075f305073ad72ef3ff44cd4',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]] + ['databaseconfiguration_4425',['DatabaseConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a9563b31eb4a36767bccf9cf0f347669c',1,'Tgstation::Server::Host::Setup::IPostSetupServices']]], + ['databasecontext_4426',['DatabaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ab687e0fc0cb712708297c0c2b43ca849',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['databasetype_4427',['DatabaseType',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#adab83eaad53afabdb2f7b43c23ece38a',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]], + ['debug_4428',['Debug',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#a938d576ceba93bf3cb1a32ae1dcccc52',1,'Tgstation::Server::Host::Service::Program']]], + ['description_4429',['Description',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#a3898828f81135947949d8f1083a71a10',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['designtime_4430',['DesignTime',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#ae179f5debc33b39375973abf2d91e99d',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.DesignTime()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_sqlite_database_context.html#a3b6658b7b9a33591ec03e0ad4c24bf09',1,'Tgstation.Server.Host.Database.SqliteDatabaseContext.DesignTime()']]], + ['directory_4431',['Directory',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a7607fcc4f9d4667337c435fd2b96dc53',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a6f268f1281d32885a378d655e5b67df2',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#aad824931c595d0e0c5522892e9467499',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Directory()']]], + ['directoryname_4432',['DirectoryName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#af7f70d7f52963a2b3c80537734ba7967',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], + ['disable_4433',['Disable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#af1c69ac7d59ed1817d59b0022d86db15',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['discordchannelid_4434',['DiscordChannelId',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a7d69363fd8b5b85e8a66d7c6d4aeb4ec',1,'Tgstation::Server::Api::Models::ChatChannel']]], + ['disposed_4435',['Disposed',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#aff3a0cd34a0dee8970516a0d06616053',1,'Tgstation.Server.Host.Components.Chat.Providers.IProvider.Disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a12ea0f5bc6f3379005d924a42bd905d9',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Disposed()']]], + ['dmapiavailable_4436',['DMApiAvailable',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a52229c39f084c0740bd42d0a775897bf',1,'Tgstation::Server::Host::Components::Session::ISessionController']]], + ['dmapimajorversion_4437',['DMApiMajorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ab41a3af4b8f49c1d44aeb92aac0ac4fe',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['dmapiminorversion_4438',['DMApiMinorVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a02faf1cc1b9d9a9f0d38f86559b58141',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['dmapiparameters_4439',['DMApiParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_i_bridge_handler.html#a2898638d05a8b0550e390b89e672b81a',1,'Tgstation::Server::Host::Components::Interop::Bridge::IBridgeHandler']]], + ['dmapipatchversion_4440',['DMApiPatchVersion',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a5328176206b0fa9a2c7bb2ccb9d5e154',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['dmapiversion_4441',['DMApiVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#ab960ca771b3f1b5b1caabddb6286934b',1,'Tgstation.Server.Api.Models.Internal.CompileJob.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_server_information.html#ab41b1b31a44ddcdcc04f2f550f0046ef',1,'Tgstation.Server.Api.Models.ServerInformation.DMApiVersion()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#afe95d6ef4c8fc3218ceb3099342f9046',1,'Tgstation.Server.Host.Components.Session.ISessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aa7a0a4d67b027a49d086c20e3639e5fd',1,'Tgstation.Server.Host.Components.Session.SessionController.DMApiVersion()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a1874072c230506695dae47cd11d28e4e',1,'Tgstation.Server.Host.Models.CompileJob.DMApiVersion()']]], + ['dmb_4442',['Dmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ae9210ff3236e194682fabe36fe20620d',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]], + ['dmbavailable_4443',['DmbAvailable',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#ad6c02b7f5616833f82c02af6d8fe5bec',1,'Tgstation::Server::Host::Components::Deployment::IDmbFactory']]], + ['dmbfactory_4444',['DmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a401d41a1b1b805f553f53b35f46275ef',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['dmbname_4445',['DmbName',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_provider.html#a950ac6f5b0cbcb2680546968c79486a1',1,'Tgstation.Server.Host.Components.Deployment.IDmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_temporary_dmb_provider.html#a82633d2589d4ab55afdefe5be69bcd36',1,'Tgstation.Server.Host.Components.Deployment.TemporaryDmbProvider.DmbName()']]], + ['dmename_4446',['DmeName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#a62c90f6d2a9a109318bb3fba05afead0',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]], + ['dmoutputdisplay_4447',['DMOutputDisplay',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#ab200c057753396a5087484aa9d677af8',1,'Tgstation::Server::Api::Models::DiscordConnectionStringBuilder']]], + ['dreamdaemon_4448',['DreamDaemon',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a3d0fe52c8e2428ab13df3f14a4c9d36e',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamDaemon()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a2a6e49e9e7b6d23a95f9839ab4add778',1,'Tgstation.Server.Client.Components.InstanceClient.DreamDaemon()']]], + ['dreamdaemonname_4449',['DreamDaemonName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a307f7487e7a407203c85b86bc9df4f8f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamDaemonName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#ad43d91cf402c0084067dee5d1b182cde',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamDaemonName()']]], + ['dreamdaemonpath_4450',['DreamDaemonPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aebbd445eb581a534e4ad8ff6b0f6c1ce',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamDaemonPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#af7c6d39dcd1075f42e8721446b5e159f',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamDaemonPath()']]], + ['dreamdaemonrights_4451',['DreamDaemonRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a8367896a1a9ff6e745d0c62b85d8fd0e',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['dreamdaemonsettings_4452',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae03574f8c27c8c179b6d1b8c6f71532e',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamDaemonSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a834db5965b255a765f7ae274e4104f36',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamDaemonSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a94cb9055338f1d52397f10aab18f554d',1,'Tgstation.Server.Host.Models.Instance.DreamDaemonSettings()']]], + ['dreammaker_4453',['DreamMaker',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a5a505ae2d713942640558e34222b444b',1,'Tgstation.Server.Client.Components.IInstanceClient.DreamMaker()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#af92b0694efe4453eee2ea50d9c18616e',1,'Tgstation.Server.Client.Components.InstanceClient.DreamMaker()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#acbc6bed95fa79891224fc0b1c5255071',1,'Tgstation.Server.Host.Components.IInstanceCore.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a5774569e57a7e7b15ce6dafed0904ab0',1,'Tgstation.Server.Host.Components.Instance.DreamMaker()']]], + ['dreammakername_4454',['DreamMakerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a676cee80ef384243348ee21cfc6a0f28',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.DreamMakerName()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a40f9cadd672f9e36c3a89be2df1cb4b5',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.DreamMakerName()']]], + ['dreammakerpath_4455',['DreamMakerPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a4d5315a7648111cd6851fe47dfe859a2',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.DreamMakerPath()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_executable_lock.html#a45a3041c6d9e0ba81d361090549bb072',1,'Tgstation.Server.Host.Components.Byond.IByondExecutableLock.DreamMakerPath()']]], + ['dreammakerrights_4456',['DreamMakerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a51bb2f3a485f142fc1b60cc1c4c53052',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['dreammakersettings_4457',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a77fbed3e1799f2e4c6edec6dc2f415bb',1,'Tgstation.Server.Host.Database.DatabaseContext.DreamMakerSettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aac927b14c117b14a4bafdf3811c2c859',1,'Tgstation.Server.Host.Database.IDatabaseContext.DreamMakerSettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a09929f71b77a27fc5f609ff64cf190d6',1,'Tgstation.Server.Host.Models.Instance.DreamMakerSettings()']]], + ['dropdatabase_4458',['DropDatabase',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a30f47f73075f305073ad72ef3ff44cd4',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]] ]; diff --git a/search/properties_4.html b/search/properties_4.html index 6302a88bff..dbf85838d1 100644 --- a/search/properties_4.html +++ b/search/properties_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_4.js b/search/properties_4.js index e4695cf13c..50f2c472c7 100644 --- a/search/properties_4.js +++ b/search/properties_4.js @@ -1,11 +1,11 @@ var searchData= [ - ['enable_4353',['Enable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a15564859b17400f1bcc723a5fbee8121',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], - ['enabled_4354',['Enabled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a4d973efbcdc9eee5597989f2667c42b3',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Enabled()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a4a0a4bb6e68f049511123dbb5f1dc094',1,'Tgstation.Server.Api.Models.Internal.User.Enabled()']]], - ['errorcode_4355',['ErrorCode',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a7a9f529323e53df2815e3c1e7fc1d51b',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorCode()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab248f62271e87c90f007c40058c06032',1,'Tgstation.Server.Api.Models.Internal.Job.ErrorCode()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a48a3f168920dc3f7c5643f2c3cf51a41',1,'Tgstation.Server.Client.ApiException.ErrorCode()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a9eeebff62f994dcfe5159662f611056b',1,'Tgstation.Server.Host.Jobs.JobException.ErrorCode()']]], - ['errormessage_4356',['ErrorMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html#a1d831028e8763f5adea930f2b7ea0661',1,'Tgstation::Server::Host::Components::Interop::DMApiResponse']]], - ['eventnotification_4357',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a78e5accbd43c2910f2be9ee87946afa2',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['exceptiondetails_4358',['ExceptionDetails',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#afb20366fa3c290f5478e92e18cc94317',1,'Tgstation::Server::Api::Models::Internal::Job']]], - ['exitcode_4359',['ExitCode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a255d1c77cd0332b3a433415bfb01c4cd',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], - ['expiresat_4360',['ExpiresAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#a086733898b6eace9e4955bcec93f60e0',1,'Tgstation::Server::Api::Models::Token']]] + ['enable_4459',['Enable',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#a15564859b17400f1bcc723a5fbee8121',1,'Tgstation::Server::Host::Configuration::ControlPanelConfiguration']]], + ['enabled_4460',['Enabled',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a4d973efbcdc9eee5597989f2667c42b3',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Enabled()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a4a0a4bb6e68f049511123dbb5f1dc094',1,'Tgstation.Server.Api.Models.Internal.User.Enabled()']]], + ['errorcode_4461',['ErrorCode',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#a7a9f529323e53df2815e3c1e7fc1d51b',1,'Tgstation.Server.Api.Models.ErrorMessage.ErrorCode()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#ab248f62271e87c90f007c40058c06032',1,'Tgstation.Server.Api.Models.Internal.Job.ErrorCode()'],['../class_tgstation_1_1_server_1_1_client_1_1_api_exception.html#a48a3f168920dc3f7c5643f2c3cf51a41',1,'Tgstation.Server.Client.ApiException.ErrorCode()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_exception.html#a9eeebff62f994dcfe5159662f611056b',1,'Tgstation.Server.Host.Jobs.JobException.ErrorCode()']]], + ['errormessage_4462',['ErrorMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_response.html#a1d831028e8763f5adea930f2b7ea0661',1,'Tgstation::Server::Host::Components::Interop::DMApiResponse']]], + ['eventnotification_4463',['EventNotification',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a78e5accbd43c2910f2be9ee87946afa2',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['exceptiondetails_4464',['ExceptionDetails',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_job.html#afb20366fa3c290f5478e92e18cc94317',1,'Tgstation::Server::Api::Models::Internal::Job']]], + ['exitcode_4465',['ExitCode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_launch_result.html#a255d1c77cd0332b3a433415bfb01c4cd',1,'Tgstation::Server::Host::Components::Session::LaunchResult']]], + ['expiresat_4466',['ExpiresAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_token.html#a086733898b6eace9e4955bcec93f60e0',1,'Tgstation::Server::Api::Models::Token']]] ]; diff --git a/search/properties_5.html b/search/properties_5.html index ef1d28fa0f..1cf2443e4d 100644 --- a/search/properties_5.html +++ b/search/properties_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_5.js b/search/properties_5.js index 561f52c9b7..b1bfd6d843 100644 --- a/search/properties_5.js +++ b/search/properties_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['fileloggingconfiguration_4361',['FileLoggingConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a7eed5e4e0e006cb826ef2043e8f022ad',1,'Tgstation::Server::Host::Setup::IPostSetupServices']]], - ['friendlyname_4362',['FriendlyName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a8e131ca82dfe8f7a86adac27ff1f5ab8',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.FriendlyName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a73318a0ed859219085f4e1496ee5c9ee',1,'Tgstation.Server.Host.Components.Chat.ChatUser.FriendlyName()']]] + ['fileloggingconfiguration_4467',['FileLoggingConfiguration',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a7eed5e4e0e006cb826ef2043e8f022ad',1,'Tgstation::Server::Host::Setup::IPostSetupServices']]], + ['friendlyname_4468',['FriendlyName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a8e131ca82dfe8f7a86adac27ff1f5ab8',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.FriendlyName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a73318a0ed859219085f4e1496ee5c9ee',1,'Tgstation.Server.Host.Components.Chat.ChatUser.FriendlyName()']]] ]; diff --git a/search/properties_6.html b/search/properties_6.html index 377cc99e18..d4dd9f2a88 100644 --- a/search/properties_6.html +++ b/search/properties_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_6.js b/search/properties_6.js index 9f265e600d..4776887e75 100644 --- a/search/properties_6.js +++ b/search/properties_6.js @@ -1,11 +1,13 @@ var searchData= [ - ['gameiomanager_4363',['GameIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a61cde2a19bd6fc5619a5bad94a3c5f9b',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['generalconfiguration_4364',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#aa163ef7f1b2ec0e29736e7cfcfd20f03',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.GeneralConfiguration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a3a19dda55bff763cbbc27de56905ae5a',1,'Tgstation.Server.Host.Setup.IPostSetupServices.GeneralConfiguration()']]], - ['githubaccesstoken_4365',['GitHubAccessToken',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a97eae217a6ba8e75256e745f98f926b8',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['githubname_4366',['GitHubName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a9105b82687e1adb689f4f79892a27a1b',1,'Tgstation::Server::Api::Models::Repository']]], - ['githubowner_4367',['GitHubOwner',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a5bbd920211d37e14effab5b48b217613',1,'Tgstation.Server.Api.Models.Repository.GitHubOwner()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a213c2be1ecbafbd6a801f685c63d04db',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#abdb2e4318fb14b8459e3bbc37dad98ba',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubOwner()']]], - ['githubreponame_4368',['GitHubRepoName',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa18c75762768b2eade040269fc0b98c4',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad08c159873c35b8d508074a3b21b1739',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubRepoName()']]], - ['githubrepositoryid_4369',['GitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2f6c66d4e10c5fb6a758727893ea4cd0',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['gittagprefix_4370',['GitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a9dce394437a9bc79041a3467e7ad75f4',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]] + ['gameiomanager_4469',['GameIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a61cde2a19bd6fc5619a5bad94a3c5f9b',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['generalconfiguration_4470',['GeneralConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#aa163ef7f1b2ec0e29736e7cfcfd20f03',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogFactory.GeneralConfiguration()'],['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#a3a19dda55bff763cbbc27de56905ae5a',1,'Tgstation.Server.Host.Setup.IPostSetupServices.GeneralConfiguration()']]], + ['githubaccesstoken_4471',['GitHubAccessToken',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a97eae217a6ba8e75256e745f98f926b8',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['githubdeploymentid_4472',['GitHubDeploymentId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a173271b6e3470cf0666356d7f356b83c',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['githubname_4473',['GitHubName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a9105b82687e1adb689f4f79892a27a1b',1,'Tgstation::Server::Api::Models::Repository']]], + ['githubowner_4474',['GitHubOwner',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a5bbd920211d37e14effab5b48b217613',1,'Tgstation.Server.Api.Models.Repository.GitHubOwner()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a213c2be1ecbafbd6a801f685c63d04db',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubOwner()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#abdb2e4318fb14b8459e3bbc37dad98ba',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubOwner()']]], + ['githubrepoid_4475',['GitHubRepoId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['githubreponame_4476',['GitHubRepoName',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aa18c75762768b2eade040269fc0b98c4',1,'Tgstation.Server.Host.Components.Repository.IRepository.GitHubRepoName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad08c159873c35b8d508074a3b21b1739',1,'Tgstation.Server.Host.Components.Repository.Repository.GitHubRepoName()']]], + ['githubrepositoryid_4477',['GitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2f6c66d4e10c5fb6a758727893ea4cd0',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['gittagprefix_4478',['GitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a9dce394437a9bc79041a3467e7ad75f4',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]] ]; diff --git a/search/properties_7.html b/search/properties_7.html index 4ed5f4bcee..ad878bdbf1 100644 --- a/search/properties_7.html +++ b/search/properties_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_7.js b/search/properties_7.js index d3847c02f6..6985f3290d 100644 --- a/search/properties_7.js +++ b/search/properties_7.js @@ -1,9 +1,10 @@ var searchData= [ - ['head_4371',['Head',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aaf4a631e6d2aa45a1b6887152f1d13f0',1,'Tgstation::Server::Host::Components::Repository::IRepository']]], - ['headers_4372',['Headers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a521379a7cffb0980b1d879cb15afd6f0',1,'Tgstation.Server.Client.ApiClient.Headers()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#afb0feaf84640f44711b635836bf9378e',1,'Tgstation.Server.Client.IApiClient.Headers()']]], - ['headincludeline_4373',['HeadIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a83107858b3a44428da91e999cedd2a16',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], - ['heartbeatseconds_4374',['HeartbeatSeconds',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a15ea3f57d3c8d953d2b12386469c73b2',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], - ['helptext_4375',['HelpText',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a6d0540b2a6fdb2c6f48ddaba78b22bde',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.HelpText()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#ab8687d89e8f4b08d6221c1fd51ab8ca0',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.HelpText()']]], - ['httpapiport_4376',['HttpApiPort',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html#af5e86a67c2cc59e14c762532275f0a2c',1,'Tgstation::Server::Host::Core::IServerPortProvider']]] + ['head_4479',['Head',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#aaf4a631e6d2aa45a1b6887152f1d13f0',1,'Tgstation::Server::Host::Components::Repository::IRepository']]], + ['headers_4480',['Headers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a521379a7cffb0980b1d879cb15afd6f0',1,'Tgstation.Server.Client.ApiClient.Headers()'],['../interface_tgstation_1_1_server_1_1_client_1_1_i_api_client.html#afb0feaf84640f44711b635836bf9378e',1,'Tgstation.Server.Client.IApiClient.Headers()']]], + ['headincludeline_4481',['HeadIncludeLine',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_server_side_modifications.html#a83107858b3a44428da91e999cedd2a16',1,'Tgstation::Server::Host::Components::StaticFiles::ServerSideModifications']]], + ['heartbeatseconds_4482',['HeartbeatSeconds',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a15ea3f57d3c8d953d2b12386469c73b2',1,'Tgstation::Server::Api::Models::Internal::DreamDaemonLaunchParameters']]], + ['helptext_4483',['HelpText',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a6d0540b2a6fdb2c6f48ddaba78b22bde',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.HelpText()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#ab8687d89e8f4b08d6221c1fd51ab8ca0',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.HelpText()']]], + ['hostapidocumemtation_4484',['HostApiDocumemtation',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a625cc0a0bfae62030858aba27a4e677a',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['httpapiport_4485',['HttpApiPort',['../interface_tgstation_1_1_server_1_1_host_1_1_core_1_1_i_server_port_provider.html#af5e86a67c2cc59e14c762532275f0a2c',1,'Tgstation::Server::Host::Core::IServerPortProvider']]] ]; diff --git a/search/properties_8.html b/search/properties_8.html index 89e337e237..541241f49d 100644 --- a/search/properties_8.html +++ b/search/properties_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_8.js b/search/properties_8.js index 4905be6670..33bbaa7c95 100644 --- a/search/properties_8.js +++ b/search/properties_8.js @@ -1,27 +1,28 @@ var searchData= [ - ['id_4377',['Id',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html#a9546a5e0ce3494cf2c6300b80843c309',1,'Tgstation.Server.Api.Models.EntityId.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8986e2686e9d872b150f239de214d74c',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#a0dbaef6cf504176f317d9d87dd4c97a9',1,'Tgstation.Server.Api.Models.Internal.TestMerge.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#add9bcdc0f7075163a9034d5430e03d83',1,'Tgstation.Server.Api.Models.Internal.User.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#aa98bc0db3a17f868cc589ba91dc4c105',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a0ca32c590ede76054e653e07b8783a37',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a0dd252ba836263c5a825862bcda215f7',1,'Tgstation.Server.Host.Models.ChatChannel.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#a914b18d16f0501f1c78b6734779952dd',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab561a3992874722f25f3729251fd4249',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#ae7b25543ed8660f8882a9aeedadbcd23',1,'Tgstation.Server.Host.Models.InstanceUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a5c7ca615cd5ead17d8f7cb5fddc4bc2d',1,'Tgstation.Server.Host.Models.ReattachInformation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a3c1a07a5ecde1ec0e3c1a03fc096b2ff',1,'Tgstation.Server.Host.Models.RepositorySettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a1bde159279a6a9abec5d7b28930c6fe2',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a44a69b7ff8b7d1ca75e43e71694a8adf',1,'Tgstation.Server.Host.Models.RevisionInformation.Id()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a7246c39b82b59ca759497f0fbd8bc2da',1,'Tgstation.Server.Host.System.IProcess.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a241e3eafb07a2dcd61d530098799432e',1,'Tgstation.Server.Host.System.Process.Id()']]], - ['install_4378',['Install',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#ae3be244b24cbb3c9ba859f55e53715e6',1,'Tgstation::Server::Host::Service::Program']]], - ['installedversions_4379',['InstalledVersions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ac6285b8768d8b10b5e4bdeec2cb43953',1,'Tgstation.Server.Host.Components.Byond.ByondManager.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae5fc64e6504a3fd8d1cf1131d841fa14',1,'Tgstation.Server.Host.Components.Byond.IByondManager.InstalledVersions()']]], - ['installjob_4380',['InstallJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a95cc5fea2731ef04dcd1261689816194',1,'Tgstation::Server::Api::Models::Byond']]], - ['instance_4381',['Instance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1e2ffe3a3e89009efec3e4dc5b59baf6',1,'Tgstation.Server.Host.Components.InstanceContainer.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a19f89ec03ffd6f2bf5cab5214d5e6bb8',1,'Tgstation.Server.Host.Controllers.ApiController.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ae5433d8739dbd431a207684fb9b4d37d',1,'Tgstation.Server.Host.Models.ChatBot.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ac33f867ccf152b5fd3a52242e2fed5b4',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a7d310dcc01986cdbfb6bb41d1f80825d',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a84b3880b44a50b0064cd5c5a18027752',1,'Tgstation.Server.Host.Models.InstanceUser.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#acebd359c2b46a97a5ddf7c6c9c4f9eb7',1,'Tgstation.Server.Host.Models.Job.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a254c0c0373323dc5910b83a8edcfdac2',1,'Tgstation.Server.Host.Models.RepositorySettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ac8ea8a7b515a91b6bd20975fd8f1fd7a',1,'Tgstation.Server.Host.Models.RevisionInformation.Instance()']]], - ['instanceid_4382',['InstanceId',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a65e7d0ba3a39c992691f7721c62c1531',1,'Tgstation.Server.Api.ApiHeaders.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a87db1326cbb80ca4a8945be90769656b',1,'Tgstation.Server.Host.Models.ChatBot.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ae94a52d9c7e94f3a043ccce4c6731935',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a0173e07dda1034e7cd127a426d3cfa69',1,'Tgstation.Server.Host.Models.DreamMakerSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a35f8d34f833a758e290c732f40954ddd',1,'Tgstation.Server.Host.Models.InstanceUser.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a019883724ea4000a3c088d6dbd7ffaa9',1,'Tgstation.Server.Host.Models.RepositorySettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a6453d51fe22d312fadfccc0f6e9e3e89',1,'Tgstation.Server.Host.Models.RevisionInformation.InstanceId()']]], - ['instancelimit_4383',['InstanceLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a37f3b06cddaa9d460b13ed6544c3e528',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['instancemanagerrights_4384',['InstanceManagerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a816ca80f5eecd84ec46d4a365e5633e7',1,'Tgstation::Server::Api::Models::Internal::User']]], - ['instancename_4385',['InstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a98b09ab187ea429e7531931880c9a4c4',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], - ['instances_4386',['Instances',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a220af3e47b92df41d6b96bf8851c11ab',1,'Tgstation.Server.Client.IServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9eb413c086e3e6d25ec2c404611c2b31',1,'Tgstation.Server.Client.ServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a1bc257ebf1d31bfba7f665d61da5c4a2',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab5e3be8b1e0e665bc077fd26a082cbf8',1,'Tgstation.Server.Host.Database.IDatabaseContext.Instances()']]], - ['instanceuser_4387',['InstanceUser',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a5916cab82702e8c3bea39d500419c5dc',1,'Tgstation.Server.Host.Security.AuthenticationContext.InstanceUser()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a0ffbd3a91f52330582bbc56c13ba7dda',1,'Tgstation.Server.Host.Security.IAuthenticationContext.InstanceUser()']]], - ['instanceuserrights_4388',['InstanceUserRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a152009cdbb0c44ffdf1fc775dd4bd37f',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['instanceusers_4389',['InstanceUsers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a67a792509733c253bc1a9e45bdf7fb1b',1,'Tgstation.Server.Host.Database.DatabaseContext.InstanceUsers()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#abbfc1a074c77b49660d0eea6fac07265',1,'Tgstation.Server.Host.Database.IDatabaseContext.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a8aeecedc60cf6a79241b7cfbe1f313e9',1,'Tgstation.Server.Host.Models.Instance.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a5e83231130e0280d9061ee1a2b7eeabd',1,'Tgstation.Server.Host.Models.User.InstanceUsers()']]], - ['interopresponse_4390',['InteropResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#a6d3f5ad86d833a4536460b2fdb105078',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], - ['inuse_4391',['InUse',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#acfd46405a7a81980c34cc001476b51ca',1,'Tgstation::Server::Host::Components::Repository::IRepositoryManager']]], - ['iomanager_4392',['IOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a2f6df4eb114c4155bd89af1f43e9a03d',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.IOManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a48f520e11b35ecee4fb2677a4ea08824',1,'Tgstation.Server.Host.IServerFactory.IOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a00dd1ed657781fec45931a35278ac3a2',1,'Tgstation.Server.Host.ServerFactory.IOManager()']]], - ['ircchannel_4393',['IrcChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1b5abf235612bc3aef37d6ba54c8c943',1,'Tgstation::Server::Api::Models::ChatChannel']]], - ['isadminchannel_4394',['IsAdminChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1a945855589edd8cd22a68bb1ae7323e',1,'Tgstation.Server.Api.Models.ChatChannel.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a3893bc5636b686e2a656f85263e191e1',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a5e3306682c350b0cfac4507762b6d8b1',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.IsAdminChannel()']]], - ['isdirectory_4395',['IsDirectory',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a674f1c0203cb7b2cd326ead5f810b885',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], - ['isgithubrepository_4396',['IsGitHubRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a60ae733cb70d63e2ceedadca18bec940',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a58e407a627009694a99f21823c2593',1,'Tgstation.Server.Host.Components.Repository.Repository.IsGitHubRepository()']]], - ['isprivatechannel_4397',['IsPrivateChannel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ac958a992eb0e2afa5555d09538645eac',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], - ['isupdateschannel_4398',['IsUpdatesChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a9e8659b045bad05567bef7d037d372d9',1,'Tgstation.Server.Api.Models.ChatChannel.IsUpdatesChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a602d016c7a0c753aea994d6fc1d6f9db',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsUpdatesChannel()']]], - ['iswatchdogchannel_4399',['IsWatchdogChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#afb292a0bc8975fae2ca0269e77b29430',1,'Tgstation.Server.Api.Models.ChatChannel.IsWatchdogChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#aa1ded40a4ff15aa4d0e588aca23f6577',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsWatchdogChannel()']]], - ['iswindows_4400',['IsWindows',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#aa9bf3bd1082b7178f58cb1f36839550e',1,'Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#acb15bcd0271ceb5c551ee21293310d8f',1,'Tgstation.Server.Host.System.PlatformIdentifier.IsWindows()']]] + ['id_4486',['Id',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_entity_id.html#a9546a5e0ce3494cf2c6300b80843c309',1,'Tgstation.Server.Api.Models.EntityId.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a8986e2686e9d872b150f239de214d74c',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#a0dbaef6cf504176f317d9d87dd4c97a9',1,'Tgstation.Server.Api.Models.Internal.TestMerge.Id()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#add9bcdc0f7075163a9034d5430e03d83',1,'Tgstation.Server.Api.Models.Internal.User.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#aa98bc0db3a17f868cc589ba91dc4c105',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a0ca32c590ede76054e653e07b8783a37',1,'Tgstation.Server.Host.Components.Chat.ChatUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_channel.html#a0dd252ba836263c5a825862bcda215f7',1,'Tgstation.Server.Host.Models.ChatChannel.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#a914b18d16f0501f1c78b6734779952dd',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#ab561a3992874722f25f3729251fd4249',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#ae7b25543ed8660f8882a9aeedadbcd23',1,'Tgstation.Server.Host.Models.InstanceUser.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information.html#a5c7ca615cd5ead17d8f7cb5fddc4bc2d',1,'Tgstation.Server.Host.Models.ReattachInformation.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a3c1a07a5ecde1ec0e3c1a03fc096b2ff',1,'Tgstation.Server.Host.Models.RepositorySettings.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a1bde159279a6a9abec5d7b28930c6fe2',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a44a69b7ff8b7d1ca75e43e71694a8adf',1,'Tgstation.Server.Host.Models.RevisionInformation.Id()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process.html#a7246c39b82b59ca759497f0fbd8bc2da',1,'Tgstation.Server.Host.System.IProcess.Id()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a241e3eafb07a2dcd61d530098799432e',1,'Tgstation.Server.Host.System.Process.Id()']]], + ['initialconnectionjob_4487',['InitialConnectionJob',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_i_provider.html#a98843a608252fa92e550215f3097e51e',1,'Tgstation::Server::Host::Components::Chat::Providers::IProvider']]], + ['install_4488',['Install',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_program.html#ae3be244b24cbb3c9ba859f55e53715e6',1,'Tgstation::Server::Host::Service::Program']]], + ['installedversions_4489',['InstalledVersions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#ac6285b8768d8b10b5e4bdeec2cb43953',1,'Tgstation.Server.Host.Components.Byond.ByondManager.InstalledVersions()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_manager.html#ae5fc64e6504a3fd8d1cf1131d841fa14',1,'Tgstation.Server.Host.Components.Byond.IByondManager.InstalledVersions()']]], + ['installjob_4490',['InstallJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_byond.html#a95cc5fea2731ef04dcd1261689816194',1,'Tgstation::Server::Api::Models::Byond']]], + ['instance_4491',['Instance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1e2ffe3a3e89009efec3e4dc5b59baf6',1,'Tgstation.Server.Host.Components.InstanceContainer.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a19f89ec03ffd6f2bf5cab5214d5e6bb8',1,'Tgstation.Server.Host.Controllers.ApiController.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#ae5433d8739dbd431a207684fb9b4d37d',1,'Tgstation.Server.Host.Models.ChatBot.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ac33f867ccf152b5fd3a52242e2fed5b4',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a7d310dcc01986cdbfb6bb41d1f80825d',1,'Tgstation.Server.Host.Models.DreamMakerSettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a84b3880b44a50b0064cd5c5a18027752',1,'Tgstation.Server.Host.Models.InstanceUser.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html#acebd359c2b46a97a5ddf7c6c9c4f9eb7',1,'Tgstation.Server.Host.Models.Job.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a254c0c0373323dc5910b83a8edcfdac2',1,'Tgstation.Server.Host.Models.RepositorySettings.Instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#ac8ea8a7b515a91b6bd20975fd8f1fd7a',1,'Tgstation.Server.Host.Models.RevisionInformation.Instance()']]], + ['instanceid_4492',['InstanceId',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a65e7d0ba3a39c992691f7721c62c1531',1,'Tgstation.Server.Api.ApiHeaders.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a87db1326cbb80ca4a8945be90769656b',1,'Tgstation.Server.Host.Models.ChatBot.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_daemon_settings.html#ae94a52d9c7e94f3a043ccce4c6731935',1,'Tgstation.Server.Host.Models.DreamDaemonSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_dream_maker_settings.html#a0173e07dda1034e7cd127a426d3cfa69',1,'Tgstation.Server.Host.Models.DreamMakerSettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance_user.html#a35f8d34f833a758e290c732f40954ddd',1,'Tgstation.Server.Host.Models.InstanceUser.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html#a019883724ea4000a3c088d6dbd7ffaa9',1,'Tgstation.Server.Host.Models.RepositorySettings.InstanceId()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a6453d51fe22d312fadfccc0f6e9e3e89',1,'Tgstation.Server.Host.Models.RevisionInformation.InstanceId()']]], + ['instancelimit_4493',['InstanceLimit',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a37f3b06cddaa9d460b13ed6544c3e528',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['instancemanagerrights_4494',['InstanceManagerRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a816ca80f5eecd84ec46d4a365e5633e7',1,'Tgstation::Server::Api::Models::Internal::User']]], + ['instancename_4495',['InstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a98b09ab187ea429e7531931880c9a4c4',1,'Tgstation::Server::Host::Components::Interop::Bridge::RuntimeInformation']]], + ['instances_4496',['Instances',['../interface_tgstation_1_1_server_1_1_client_1_1_i_server_client.html#a220af3e47b92df41d6b96bf8851c11ab',1,'Tgstation.Server.Client.IServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a9eb413c086e3e6d25ec2c404611c2b31',1,'Tgstation.Server.Client.ServerClient.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a1bc257ebf1d31bfba7f665d61da5c4a2',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ab5e3be8b1e0e665bc077fd26a082cbf8',1,'Tgstation.Server.Host.Database.IDatabaseContext.Instances()']]], + ['instanceuser_4497',['InstanceUser',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context.html#a5916cab82702e8c3bea39d500419c5dc',1,'Tgstation.Server.Host.Security.AuthenticationContext.InstanceUser()'],['../interface_tgstation_1_1_server_1_1_host_1_1_security_1_1_i_authentication_context.html#a0ffbd3a91f52330582bbc56c13ba7dda',1,'Tgstation.Server.Host.Security.IAuthenticationContext.InstanceUser()']]], + ['instanceuserrights_4498',['InstanceUserRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a152009cdbb0c44ffdf1fc775dd4bd37f',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['instanceusers_4499',['InstanceUsers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a67a792509733c253bc1a9e45bdf7fb1b',1,'Tgstation.Server.Host.Database.DatabaseContext.InstanceUsers()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#abbfc1a074c77b49660d0eea6fac07265',1,'Tgstation.Server.Host.Database.IDatabaseContext.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a8aeecedc60cf6a79241b7cfbe1f313e9',1,'Tgstation.Server.Host.Models.Instance.InstanceUsers()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a5e83231130e0280d9061ee1a2b7eeabd',1,'Tgstation.Server.Host.Models.User.InstanceUsers()']]], + ['interopresponse_4500',['InteropResponse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_combined_topic_response.html#a6d3f5ad86d833a4536460b2fdb105078',1,'Tgstation::Server::Host::Components::Session::CombinedTopicResponse']]], + ['inuse_4501',['InUse',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_manager.html#acfd46405a7a81980c34cc001476b51ca',1,'Tgstation::Server::Host::Components::Repository::IRepositoryManager']]], + ['iomanager_4502',['IOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a2f6df4eb114c4155bd89af1f43e9a03d',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.IOManager()'],['../interface_tgstation_1_1_server_1_1_host_1_1_i_server_factory.html#a48f520e11b35ecee4fb2677a4ea08824',1,'Tgstation.Server.Host.IServerFactory.IOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a00dd1ed657781fec45931a35278ac3a2',1,'Tgstation.Server.Host.ServerFactory.IOManager()']]], + ['ircchannel_4503',['IrcChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1b5abf235612bc3aef37d6ba54c8c943',1,'Tgstation::Server::Api::Models::ChatChannel']]], + ['isadminchannel_4504',['IsAdminChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a1a945855589edd8cd22a68bb1ae7323e',1,'Tgstation.Server.Api.Models.ChatChannel.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a3893bc5636b686e2a656f85263e191e1',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsAdminChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a5e3306682c350b0cfac4507762b6d8b1',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.IsAdminChannel()']]], + ['isdirectory_4505',['IsDirectory',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a674f1c0203cb7b2cd326ead5f810b885',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], + ['isgithubrepository_4506',['IsGitHubRepository',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a60ae733cb70d63e2ceedadca18bec940',1,'Tgstation.Server.Host.Components.Repository.IRepository.IsGitHubRepository()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a58e407a627009694a99f21823c2593',1,'Tgstation.Server.Host.Components.Repository.Repository.IsGitHubRepository()']]], + ['isprivatechannel_4507',['IsPrivateChannel',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#ac958a992eb0e2afa5555d09538645eac',1,'Tgstation::Server::Host::Components::Chat::ChannelRepresentation']]], + ['isupdateschannel_4508',['IsUpdatesChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#a9e8659b045bad05567bef7d037d372d9',1,'Tgstation.Server.Api.Models.ChatChannel.IsUpdatesChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a602d016c7a0c753aea994d6fc1d6f9db',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsUpdatesChannel()']]], + ['iswatchdogchannel_4509',['IsWatchdogChannel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_chat_channel.html#afb292a0bc8975fae2ca0269e77b29430',1,'Tgstation.Server.Api.Models.ChatChannel.IsWatchdogChannel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#aa1ded40a4ff15aa4d0e588aca23f6577',1,'Tgstation.Server.Host.Components.Chat.ChannelMapping.IsWatchdogChannel()']]], + ['iswindows_4510',['IsWindows',['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_platform_identifier.html#aa9bf3bd1082b7178f58cb1f36839550e',1,'Tgstation.Server.Host.System.IPlatformIdentifier.IsWindows()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_platform_identifier.html#acb15bcd0271ceb5c551ee21293310d8f',1,'Tgstation.Server.Host.System.PlatformIdentifier.IsWindows()']]] ]; diff --git a/search/properties_9.html b/search/properties_9.html index 518c49ed44..d1543655a7 100644 --- a/search/properties_9.html +++ b/search/properties_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_9.js b/search/properties_9.js index 6c47b08fbd..20e71cab6f 100644 --- a/search/properties_9.js +++ b/search/properties_9.js @@ -1,7 +1,7 @@ var searchData= [ - ['job_4401',['Job',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a9bab271604813bf877fe1da6626fcdb5',1,'Tgstation.Server.Api.Models.CompileJob.Job()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a0676e94669f8de80f67aa20c72db5b7c',1,'Tgstation.Server.Host.Models.CompileJob.Job()']]], - ['jobid_4402',['JobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#aeb314186da6c36566c0b8e5af7441014',1,'Tgstation::Server::Host::Models::CompileJob']]], - ['jobmanager_4403',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a093a1483c198a8d4fcf22aff355145a4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], - ['jobs_4404',['Jobs',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#ae0df68e17fa23d0ed3445a2c8b2a00b4',1,'Tgstation.Server.Client.Components.IInstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a84709639847ef446f64be8be1da70c36',1,'Tgstation.Server.Client.Components.InstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0c2b56fc85825a4e3cace2b2b1eb6f30',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a4df2e27b91f34f7a25df33ab0a3b4145',1,'Tgstation.Server.Host.Database.IDatabaseContext.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a18147abe57218ded54c53a540e77230c',1,'Tgstation.Server.Host.Models.Instance.Jobs()']]] + ['job_4511',['Job',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#a9bab271604813bf877fe1da6626fcdb5',1,'Tgstation.Server.Api.Models.CompileJob.Job()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a0676e94669f8de80f67aa20c72db5b7c',1,'Tgstation.Server.Host.Models.CompileJob.Job()']]], + ['jobid_4512',['JobId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#aeb314186da6c36566c0b8e5af7441014',1,'Tgstation::Server::Host::Models::CompileJob']]], + ['jobmanager_4513',['JobManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#a093a1483c198a8d4fcf22aff355145a4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], + ['jobs_4514',['Jobs',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#ae0df68e17fa23d0ed3445a2c8b2a00b4',1,'Tgstation.Server.Client.Components.IInstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a84709639847ef446f64be8be1da70c36',1,'Tgstation.Server.Client.Components.InstanceClient.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0c2b56fc85825a4e3cace2b2b1eb6f30',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a4df2e27b91f34f7a25df33ab0a3b4145',1,'Tgstation.Server.Host.Database.IDatabaseContext.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a18147abe57218ded54c53a540e77230c',1,'Tgstation.Server.Host.Models.Instance.Jobs()']]] ]; diff --git a/search/properties_a.html b/search/properties_a.html index 3209aedddc..9da8a18363 100644 --- a/search/properties_a.html +++ b/search/properties_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_a.js b/search/properties_a.js index 670f0965b7..52084de254 100644 --- a/search/properties_a.js +++ b/search/properties_a.js @@ -1,15 +1,15 @@ var searchData= [ - ['lastlaunchparameters_4405',['LastLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#adf8f73df0fe074af3363857bc43e63a5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.LastLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6548572ef5ab9d7b6b3aae8647a0a053',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.LastLaunchParameters()']]], - ['lastmodified_4406',['LastModified',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#afafc391a2b9b0631feb27a0fbefddf12',1,'Tgstation::Server::Api::Models::LogFile']]], - ['lastpasswordupdate_4407',['LastPasswordUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#abd891143624157c8f48bd166cc88ab26',1,'Tgstation::Server::Host::Models::User']]], - ['lastreadhash_4408',['LastReadHash',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a70d7168ec1797a25a56e2d104783afc2',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], - ['latestversion_4409',['LatestVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a26197acef6ba596172d67c5e33771629',1,'Tgstation::Server::Api::Models::Administration']]], - ['launchresult_4410',['LaunchResult',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#adca786a78dbcd230b94fcde69e9fc885',1,'Tgstation.Server.Host.Components.Session.ISessionController.LaunchResult()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9df2774fefe9116cc88f3ba14c6e68fc',1,'Tgstation.Server.Host.Components.Session.SessionController.LaunchResult()']]], - ['launchsecuritylevel_4411',['LaunchSecurityLevel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#ac0fc4a4938302c73c622244e8176beef',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], - ['lifetime_4412',['Lifetime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1c788fd5a67f57bd4344d30c3bbd6d48',1,'Tgstation.Server.Host.Components.Session.SessionController.Lifetime()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a1d57ffc6a03199bba632d2c33dc139d3',1,'Tgstation.Server.Host.System.IProcessBase.Lifetime()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7c6cb2d9bb60adf415db09b3b6a45f26',1,'Tgstation.Server.Host.System.Process.Lifetime()']]], - ['local_4413',['Local',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a4df4891c6457a0c2eb6e879ec912945d',1,'Tgstation::Server::Host::Database::IDatabaseCollection']]], - ['logger_4414',['Logger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a7e847c327e2f2b6ccfde15c3c0825b2f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab24337ff80dfef1a9657f7106758a8c3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aeb085dbe37cb7208de2d0fe9026e4575',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae5655868c2b2b913046ecf61934ce119',1,'Tgstation.Server.Host.Controllers.ApiController.Logger()']]], - ['loggerfactory_4415',['LoggerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#ac70e6ed4dbb2c805b6fa57122fc82318',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], - ['loglevel_4416',['LogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a77b327379b355d7569c118e85e25a3e7',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]] + ['lastlaunchparameters_4515',['LastLaunchParameters',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#adf8f73df0fe074af3363857bc43e63a5',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.LastLaunchParameters()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a6548572ef5ab9d7b6b3aae8647a0a053',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.LastLaunchParameters()']]], + ['lastmodified_4516',['LastModified',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#afafc391a2b9b0631feb27a0fbefddf12',1,'Tgstation::Server::Api::Models::LogFile']]], + ['lastpasswordupdate_4517',['LastPasswordUpdate',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#abd891143624157c8f48bd166cc88ab26',1,'Tgstation::Server::Host::Models::User']]], + ['lastreadhash_4518',['LastReadHash',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a70d7168ec1797a25a56e2d104783afc2',1,'Tgstation::Server::Api::Models::ConfigurationFile']]], + ['latestversion_4519',['LatestVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a26197acef6ba596172d67c5e33771629',1,'Tgstation::Server::Api::Models::Administration']]], + ['launchresult_4520',['LaunchResult',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#adca786a78dbcd230b94fcde69e9fc885',1,'Tgstation.Server.Host.Components.Session.ISessionController.LaunchResult()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9df2774fefe9116cc88f3ba14c6e68fc',1,'Tgstation.Server.Host.Components.Session.SessionController.LaunchResult()']]], + ['launchsecuritylevel_4521',['LaunchSecurityLevel',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#ac0fc4a4938302c73c622244e8176beef',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], + ['lifetime_4522',['Lifetime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1c788fd5a67f57bd4344d30c3bbd6d48',1,'Tgstation.Server.Host.Components.Session.SessionController.Lifetime()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_process_base.html#a1d57ffc6a03199bba632d2c33dc139d3',1,'Tgstation.Server.Host.System.IProcessBase.Lifetime()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a7c6cb2d9bb60adf415db09b3b6a45f26',1,'Tgstation.Server.Host.System.Process.Lifetime()']]], + ['local_4523',['Local',['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_collection.html#a4df4891c6457a0c2eb6e879ec912945d',1,'Tgstation::Server::Host::Database::IDatabaseCollection']]], + ['logger_4524',['Logger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a7e847c327e2f2b6ccfde15c3c0825b2f',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ab24337ff80dfef1a9657f7106758a8c3',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a2143ec7079d0ffd42c76f61cf7b71cf6',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.Logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#ae5655868c2b2b913046ecf61934ce119',1,'Tgstation.Server.Host.Controllers.ApiController.Logger()']]], + ['loggerfactory_4525',['LoggerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_factory.html#ac70e6ed4dbb2c805b6fa57122fc82318',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogFactory']]], + ['loglevel_4526',['LogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a77b327379b355d7569c118e85e25a3e7',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]] ]; diff --git a/search/properties_b.html b/search/properties_b.html index fb781d543b..a8c695f886 100644 --- a/search/properties_b.html +++ b/search/properties_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_b.js b/search/properties_b.js index 435dfdf6e0..a8c2f864b2 100644 --- a/search/properties_b.js +++ b/search/properties_b.js @@ -1,13 +1,13 @@ var searchData= [ - ['mention_4417',['Mention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a2e61afea61b8aaee53d0ada74b214c46',1,'Tgstation::Server::Host::Components::Chat::ChatUser']]], - ['mergedat_4418',['MergedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#aa9544b21a01f937b6e1954670001234d',1,'Tgstation::Server::Api::Models::Internal::TestMerge']]], - ['mergedby_4419',['MergedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html#a2014bd31ea631609775a5ea4100d5aa6',1,'Tgstation.Server.Api.Models.TestMerge.MergedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#af1122a5c2625038f509330ed4c77bb56',1,'Tgstation.Server.Host.Models.TestMerge.MergedBy()']]], - ['message_4420',['Message',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#aa6fca7f7887f8a6bf1c7c474332f94c1',1,'Tgstation::Server::Api::Models::ErrorMessage']]], - ['metadata_4421',['Metadata',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a22f01f297f6ddfa2cfca204c8b94fd83',1,'Tgstation.Server.Client.Components.IInstanceClient.Metadata()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a0107f70cae241fd15612608e8eb93f51',1,'Tgstation.Server.Client.Components.InstanceClient.Metadata()']]], - ['microsoftloglevel_4422',['MicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a5d27b790b93c94ea77f83b3729be63df',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['minimumpasswordlength_4423',['MinimumPasswordLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a75a74ceadd0c4527bc17f18a5d747a85',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], - ['minimumsecuritylevel_4424',['MinimumSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aba859254f245bc21a8ff640ab58caf03',1,'Tgstation.Server.Api.Models.Internal.CompileJob.MinimumSecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#ac4a844b6eae5fa0b3faee17a1ae13087',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.MinimumSecurityLevel()']]], - ['missingormalformedheaders_4425',['MissingOrMalformedHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#ad6cff8dd9410c9e7f097259642101a7d',1,'Tgstation::Server::Api::HeadersException']]], - ['movejob_4426',['MoveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a31e76cb0774e6aa2f2a8f667a3c89a5c',1,'Tgstation::Server::Api::Models::Instance']]] + ['mention_4527',['Mention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#a2e61afea61b8aaee53d0ada74b214c46',1,'Tgstation::Server::Host::Components::Chat::ChatUser']]], + ['mergedat_4528',['MergedAt',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_test_merge.html#aa9544b21a01f937b6e1954670001234d',1,'Tgstation::Server::Api::Models::Internal::TestMerge']]], + ['mergedby_4529',['MergedBy',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge.html#a2014bd31ea631609775a5ea4100d5aa6',1,'Tgstation.Server.Api.Models.TestMerge.MergedBy()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#af1122a5c2625038f509330ed4c77bb56',1,'Tgstation.Server.Host.Models.TestMerge.MergedBy()']]], + ['message_4530',['Message',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_error_message.html#aa6fca7f7887f8a6bf1c7c474332f94c1',1,'Tgstation::Server::Api::Models::ErrorMessage']]], + ['metadata_4531',['Metadata',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#a22f01f297f6ddfa2cfca204c8b94fd83',1,'Tgstation.Server.Client.Components.IInstanceClient.Metadata()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a0107f70cae241fd15612608e8eb93f51',1,'Tgstation.Server.Client.Components.InstanceClient.Metadata()']]], + ['microsoftloglevel_4532',['MicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a5d27b790b93c94ea77f83b3729be63df',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['minimumpasswordlength_4533',['MinimumPasswordLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_server_information.html#a75a74ceadd0c4527bc17f18a5d747a85',1,'Tgstation::Server::Api::Models::Internal::ServerInformation']]], + ['minimumsecuritylevel_4534',['MinimumSecurityLevel',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aba859254f245bc21a8ff640ab58caf03',1,'Tgstation.Server.Api.Models.Internal.CompileJob.MinimumSecurityLevel()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_parameters.html#ac4a844b6eae5fa0b3faee17a1ae13087',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeParameters.MinimumSecurityLevel()']]], + ['missingormalformedheaders_4535',['MissingOrMalformedHeaders',['../class_tgstation_1_1_server_1_1_api_1_1_headers_exception.html#ad6cff8dd9410c9e7f097259642101a7d',1,'Tgstation::Server::Api::HeadersException']]], + ['movejob_4536',['MoveJob',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a31e76cb0774e6aa2f2a8f667a3c89a5c',1,'Tgstation::Server::Api::Models::Instance']]] ]; diff --git a/search/properties_c.html b/search/properties_c.html index d30caa1979..2e629877be 100644 --- a/search/properties_c.html +++ b/search/properties_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_c.js b/search/properties_c.js index c6a5b1115e..3cc0dbb70f 100644 --- a/search/properties_c.js +++ b/search/properties_c.js @@ -1,12 +1,12 @@ var searchData= [ - ['name_4427',['Name',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#adccb5a6eaa5665bac809ef9894188e6d',1,'Tgstation.Server.Api.Models.Instance.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a130fc5e97a0f75b63a8cc1ca994e9667',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a64d5e260db4e3f658aa042a376efd090',1,'Tgstation.Server.Api.Models.Internal.User.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#a6c4100d93cf74f1265f2912903068029',1,'Tgstation.Server.Api.Models.LogFile.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a639265f4892f69fac25fa32d7413fe75',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Name()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aa9cbbf23975efc1dde048ee43a6e1d4b',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a9b8966f662692c85d651bb27caaa0b0b',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a4277ab0385a8c8fea9065c2e4d1097dd',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Name()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a306a86b64ef5952f0e21c83ae7821100',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Name()']]], - ['newinstancename_4428',['NewInstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a96125b9afabdcb00e1fd06d5dadb3695',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['newport_4429',['NewPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a0a70914ed2c179b00d9bc5952ba4cd62',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.NewPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa5f71956124a07c95c4e85d7f423b3f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.NewPort()']]], - ['newrebootstate_4430',['NewRebootState',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a8e38bf3401407c0ccadcccc9daf293ae',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['newserverversion_4431',['NewServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a9e0422cc12040f835acbbb340d453ff7',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], - ['newtestmerges_4432',['NewTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ad4bb63897d14c742a2c52a159ec75641',1,'Tgstation::Server::Api::Models::Repository']]], - ['newversion_4433',['NewVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a9f0215ce9fd8bdd6d896f547cf6ee1f9',1,'Tgstation::Server::Api::Models::Administration']]], - ['nickname_4434',['Nickname',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#af638755232f5c716bacfb8db5a68950c',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], - ['number_4435',['Number',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a91cb81663a87f96476a47a2628ac1a86',1,'Tgstation::Server::Api::Models::TestMergeParameters']]] + ['name_4537',['Name',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#adccb5a6eaa5665bac809ef9894188e6d',1,'Tgstation.Server.Api.Models.Instance.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a130fc5e97a0f75b63a8cc1ca994e9667',1,'Tgstation.Server.Api.Models.Internal.ChatBot.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_user.html#a64d5e260db4e3f658aa042a376efd090',1,'Tgstation.Server.Api.Models.Internal.User.Name()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_log_file.html#a7501e340efb4d470bec74a85ec3890cd',1,'Tgstation.Server.Api.Models.LogFile.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a639265f4892f69fac25fa32d7413fe75',1,'Tgstation.Server.Host.Components.Chat.Commands.CustomCommand.Name()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_i_command.html#aa9cbbf23975efc1dde048ee43a6e1d4b',1,'Tgstation.Server.Host.Components.Chat.Commands.ICommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a9b8966f662692c85d651bb27caaa0b0b',1,'Tgstation.Server.Host.Components.Interop.Topic.ChatCommand.Name()']]], + ['newinstancename_4538',['NewInstanceName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a96125b9afabdcb00e1fd06d5dadb3695',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['newport_4539',['NewPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a0a70914ed2c179b00d9bc5952ba4cd62',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.NewPort()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#aa5f71956124a07c95c4e85d7f423b3f8',1,'Tgstation.Server.Host.Components.Interop.Topic.TopicParameters.NewPort()']]], + ['newrebootstate_4540',['NewRebootState',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a8e38bf3401407c0ccadcccc9daf293ae',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['newserverversion_4541',['NewServerVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_topic_parameters.html#a9e0422cc12040f835acbbb340d453ff7',1,'Tgstation::Server::Host::Components::Interop::Topic::TopicParameters']]], + ['newtestmerges_4542',['NewTestMerges',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#ad4bb63897d14c742a2c52a159ec75641',1,'Tgstation::Server::Api::Models::Repository']]], + ['newversion_4543',['NewVersion',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_administration.html#a9f0215ce9fd8bdd6d896f547cf6ee1f9',1,'Tgstation::Server::Api::Models::Administration']]], + ['nickname_4544',['Nickname',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#af638755232f5c716bacfb8db5a68950c',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], + ['number_4545',['Number',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a91cb81663a87f96476a47a2628ac1a86',1,'Tgstation::Server::Api::Models::TestMergeParameters']]] ]; diff --git a/search/properties_d.html b/search/properties_d.html index 1804f04d7b..c79d29062c 100644 --- a/search/properties_d.html +++ b/search/properties_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_d.js b/search/properties_d.js index f1436c221b..e6ff7eef8d 100644 --- a/search/properties_d.js +++ b/search/properties_d.js @@ -1,11 +1,11 @@ var searchData= [ - ['online_4436',['Online',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6f024aa440adbecbd80b053eb57badc2',1,'Tgstation::Server::Api::Models::Instance']]], - ['onnewerdmb_4437',['OnNewerDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ab61dd81459c04b375182d4a0c8c4cdfe',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.OnNewerDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#af9bafcbf93da7b38e18284cee87f2a33',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.OnNewerDmb()']]], - ['onprime_4438',['OnPrime',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a480da485a3a5b316653391a49be981e3',1,'Tgstation::Server::Host::Components::Session::ISessionController']]], - ['onreboot_4439',['OnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a625d6e340c7c82b944a35636c6e47ce3',1,'Tgstation::Server::Host::Components::Session::ISessionController']]], - ['onzeroreferences_4440',['OnZeroReferences',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a56b930287994449e0179439173b88327',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['origin_4441',['Origin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a560111c8642096989558062e0348b4ab',1,'Tgstation.Server.Api.Models.Repository.Origin()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ad8e2dda20f93df7994dd3ffc903c6531',1,'Tgstation.Server.Host.Components.Repository.IRepository.Origin()']]], - ['origincommitsha_4442',['OriginCommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#a7239f5d0bb2d47b69a444b9ce6ecddea',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], - ['output_4443',['Output',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aef6bf340dda1f9242209505036526e57',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]] + ['online_4546',['Online',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a6f024aa440adbecbd80b053eb57badc2',1,'Tgstation::Server::Api::Models::Instance']]], + ['onnewerdmb_4547',['OnNewerDmb',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ab61dd81459c04b375182d4a0c8c4cdfe',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.OnNewerDmb()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_i_dmb_factory.html#af9bafcbf93da7b38e18284cee87f2a33',1,'Tgstation.Server.Host.Components.Deployment.IDmbFactory.OnNewerDmb()']]], + ['onprime_4548',['OnPrime',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a480da485a3a5b316653391a49be981e3',1,'Tgstation::Server::Host::Components::Session::ISessionController']]], + ['onreboot_4549',['OnReboot',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a625d6e340c7c82b944a35636c6e47ce3',1,'Tgstation::Server::Host::Components::Session::ISessionController']]], + ['onzeroreferences_4550',['OnZeroReferences',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a56b930287994449e0179439173b88327',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['origin_4551',['Origin',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a560111c8642096989558062e0348b4ab',1,'Tgstation.Server.Api.Models.Repository.Origin()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ad8e2dda20f93df7994dd3ffc903c6531',1,'Tgstation.Server.Host.Components.Repository.IRepository.Origin()']]], + ['origincommitsha_4552',['OriginCommitSha',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#a7239f5d0bb2d47b69a444b9ce6ecddea',1,'Tgstation::Server::Api::Models::Internal::RevisionInformation']]], + ['output_4553',['Output',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_compile_job.html#aef6bf340dda1f9242209505036526e57',1,'Tgstation::Server::Api::Models::Internal::CompileJob']]] ]; diff --git a/search/properties_e.html b/search/properties_e.html index 0ffb06f097..a6d9d3c48b 100644 --- a/search/properties_e.html +++ b/search/properties_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_e.js b/search/properties_e.js index 75ef4774ee..e197271878 100644 --- a/search/properties_e.js +++ b/search/properties_e.js @@ -1,24 +1,24 @@ var searchData= [ - ['parameters_4444',['Parameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#a5d3f8f2bd6cfb079bf693a1fc3339a65',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], - ['params_4445',['Params',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a50a65dc64b139a5eb1a46d47753f0bf9',1,'Tgstation::Server::Host::Components::Interop::Topic::ChatCommand']]], - ['password_4446',['Password',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#afedffb739a04c51b5669d24635dd3603',1,'Tgstation.Server.Api.ApiHeaders.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a638c83a7d2e9db3598992e40b018e22b',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html#a1bd65e40d9b440d99b26caae734697f8',1,'Tgstation.Server.Api.Models.UserUpdate.Password()']]], - ['passwordhash_4447',['PasswordHash',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#ab5648b7f95630ff37ad8b0ddd72c1f54',1,'Tgstation::Server::Host::Models::User']]], - ['passwordtype_4448',['PasswordType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7291f32770eaa19de8067a41a1f15509',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], - ['path_4449',['Path',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a19126e46ab252c271f06077ab214385c',1,'Tgstation.Server.Api.Models.ConfigurationFile.Path()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a833e5307625344be5429bcccca5b4318',1,'Tgstation.Server.Api.Models.Instance.Path()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a4ee4d18b244ceb1e969256a6de69ee74',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Path()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a49dad396bc16dcecc22c246e1706966a',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Path()']]], - ['pathtouserbyondfolder_4450',['PathToUserByondFolder',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a679ae28275514213de77b1f1a2fc94ff',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.PathToUserByondFolder()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a239c00a7b10d38aab58b77dc6c503c09',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5d0fd8482fc3a61bbfd4256790221c1',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a33cd48c2466cb881a29eb910717f24ef',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.PathToUserByondFolder()']]], - ['platformidentifier_4451',['PlatformIdentifier',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#ae3c16b681516ee65f1270f13ea435086',1,'Tgstation.Server.Host.Setup.IPostSetupServices.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a8c3e2e92797805caa52543a95c435a8a',1,'Tgstation.Server.Host.Setup.PostSetupServices.PlatformIdentifier()']]], - ['port_4452',['Port',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a00af90c86ba9ced8f7b718cea098892b',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Port()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a099e5c3fd62567ff0be2526a94943822',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Port()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#afcf987dfdf8f483388bfd832582c6a8b',1,'Tgstation.Server.Host.Models.ReattachInformationBase.Port()']]], - ['posttestmergecomment_4453',['PostTestMergeComment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acdaf4f19af7d330bcbf35c3cb240b50c',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], - ['primaryrevisioninformation_4454',['PrimaryRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a4fb69a83c0ff12c00dc7db7905003709',1,'Tgstation::Server::Host::Models::TestMerge']]], - ['primaryrevisioninformationid_4455',['PrimaryRevisionInformationId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a1f5f380223b363e413f2f8b9ba29a4b2',1,'Tgstation::Server::Host::Models::TestMerge']]], - ['primarytestmerge_4456',['PrimaryTestMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#a5883f14371465c56231dfd50b96e8e0c',1,'Tgstation.Server.Api.Models.RevisionInformation.PrimaryTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#adbe03f25ff741698ab92816bf7b511c5',1,'Tgstation.Server.Host.Models.RevisionInformation.PrimaryTestMerge()']]], - ['processid_4457',['ProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a6f8d698913ca0c40775eaa9a1ec8a787',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], - ['progress_4458',['Progress',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a2c9ae1e6331880d2f0f198c16f574e4f',1,'Tgstation.Server.Api.Models.Job.Progress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a2fd90e399dd18e309edc6e5ac57e51ac',1,'Tgstation.Server.Host.Jobs.JobHandler.Progress()']]], - ['projectname_4459',['ProjectName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#af01fda66da42a1569974fb5fc4c6b28a',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['provider_4460',['Provider',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#aa1c996d380be8d91b5042b6e1286b443',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['providerchannelid_4461',['ProviderChannelId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#af9b20c51cf6dad7a37b048111026abcf',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], - ['providerid_4462',['ProviderId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a647f007fe6e42d97d736747f6069c584',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], - ['pullrequestrevision_4463',['PullRequestRevision',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a78ca66f1f622a1fa4de1b0d593c0af73',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], - ['pushtestmergecommits_4464',['PushTestMergeCommits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a80ce424c357f9823d79245f509403807',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]] + ['parameters_4554',['Parameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_event_notification.html#a5d3f8f2bd6cfb079bf693a1fc3339a65',1,'Tgstation::Server::Host::Components::Interop::Topic::EventNotification']]], + ['params_4555',['Params',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_topic_1_1_chat_command.html#a50a65dc64b139a5eb1a46d47753f0bf9',1,'Tgstation::Server::Host::Components::Interop::Topic::ChatCommand']]], + ['password_4556',['Password',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#afedffb739a04c51b5669d24635dd3603',1,'Tgstation.Server.Api.ApiHeaders.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a638c83a7d2e9db3598992e40b018e22b',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Password()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user_update.html#a1bd65e40d9b440d99b26caae734697f8',1,'Tgstation.Server.Api.Models.UserUpdate.Password()']]], + ['passwordhash_4557',['PasswordHash',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#ab5648b7f95630ff37ad8b0ddd72c1f54',1,'Tgstation::Server::Host::Models::User']]], + ['passwordtype_4558',['PasswordType',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a7291f32770eaa19de8067a41a1f15509',1,'Tgstation::Server::Api::Models::IrcConnectionStringBuilder']]], + ['path_4559',['Path',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_configuration_file.html#a19126e46ab252c271f06077ab214385c',1,'Tgstation.Server.Api.Models.ConfigurationFile.Path()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance.html#a833e5307625344be5429bcccca5b4318',1,'Tgstation.Server.Api.Models.Instance.Path()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#a4ee4d18b244ceb1e969256a6de69ee74',1,'Tgstation.Server.Host.System.AssemblyInformationProvider.Path()'],['../interface_tgstation_1_1_server_1_1_host_1_1_system_1_1_i_assembly_information_provider.html#a49dad396bc16dcecc22c246e1706966a',1,'Tgstation.Server.Host.System.IAssemblyInformationProvider.Path()']]], + ['pathtouserbyondfolder_4560',['PathToUserByondFolder',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a679ae28275514213de77b1f1a2fc94ff',1,'Tgstation.Server.Host.Components.Byond.ByondInstallerBase.PathToUserByondFolder()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_i_byond_installer.html#a239c00a7b10d38aab58b77dc6c503c09',1,'Tgstation.Server.Host.Components.Byond.IByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab5d0fd8482fc3a61bbfd4256790221c1',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.PathToUserByondFolder()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a33cd48c2466cb881a29eb910717f24ef',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.PathToUserByondFolder()']]], + ['platformidentifier_4561',['PlatformIdentifier',['../interface_tgstation_1_1_server_1_1_host_1_1_setup_1_1_i_post_setup_services.html#ae3c16b681516ee65f1270f13ea435086',1,'Tgstation.Server.Host.Setup.IPostSetupServices.PlatformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a8c3e2e92797805caa52543a95c435a8a',1,'Tgstation.Server.Host.Setup.PostSetupServices.PlatformIdentifier()']]], + ['port_4562',['Port',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_dream_daemon_launch_parameters.html#a00af90c86ba9ced8f7b718cea098892b',1,'Tgstation.Server.Api.Models.Internal.DreamDaemonLaunchParameters.Port()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a099e5c3fd62567ff0be2526a94943822',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Port()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#afcf987dfdf8f483388bfd832582c6a8b',1,'Tgstation.Server.Host.Models.ReattachInformationBase.Port()']]], + ['posttestmergecomment_4563',['PostTestMergeComment',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#acdaf4f19af7d330bcbf35c3cb240b50c',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]], + ['primaryrevisioninformation_4564',['PrimaryRevisionInformation',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a4fb69a83c0ff12c00dc7db7905003709',1,'Tgstation::Server::Host::Models::TestMerge']]], + ['primaryrevisioninformationid_4565',['PrimaryRevisionInformationId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#a1f5f380223b363e413f2f8b9ba29a4b2',1,'Tgstation::Server::Host::Models::TestMerge']]], + ['primarytestmerge_4566',['PrimaryTestMerge',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_revision_information.html#a5883f14371465c56231dfd50b96e8e0c',1,'Tgstation.Server.Api.Models.RevisionInformation.PrimaryTestMerge()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#adbe03f25ff741698ab92816bf7b511c5',1,'Tgstation.Server.Host.Models.RevisionInformation.PrimaryTestMerge()']]], + ['processid_4567',['ProcessId',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#a6f8d698913ca0c40775eaa9a1ec8a787',1,'Tgstation::Server::Host::Models::ReattachInformationBase']]], + ['progress_4568',['Progress',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_job.html#a2c9ae1e6331880d2f0f198c16f574e4f',1,'Tgstation.Server.Api.Models.Job.Progress()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a2fd90e399dd18e309edc6e5ac57e51ac',1,'Tgstation.Server.Host.Jobs.JobHandler.Progress()']]], + ['projectname_4569',['ProjectName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#af01fda66da42a1569974fb5fc4c6b28a',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['provider_4570',['Provider',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#aa1c996d380be8d91b5042b6e1286b443',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['providerchannelid_4571',['ProviderChannelId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#af9b20c51cf6dad7a37b048111026abcf',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], + ['providerid_4572',['ProviderId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_mapping.html#a647f007fe6e42d97d736747f6069c584',1,'Tgstation::Server::Host::Components::Chat::ChannelMapping']]], + ['pullrequestrevision_4573',['PullRequestRevision',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_test_merge_parameters.html#a78ca66f1f622a1fa4de1b0d593c0af73',1,'Tgstation::Server::Api::Models::TestMergeParameters']]], + ['pushtestmergecommits_4574',['PushTestMergeCommits',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_repository_settings.html#a80ce424c357f9823d79245f509403807',1,'Tgstation::Server::Api::Models::Internal::RepositorySettings']]] ]; diff --git a/search/properties_f.html b/search/properties_f.html index 92799e8050..aa9c43081c 100644 --- a/search/properties_f.html +++ b/search/properties_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/properties_f.js b/search/properties_f.js index 8eb2916a23..45c74afb9a 100644 --- a/search/properties_f.js +++ b/search/properties_f.js @@ -1,28 +1,28 @@ var searchData= [ - ['rawuseragent_4465',['RawUserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a22828aaeba69d042e69d5add1e451e0d',1,'Tgstation::Server::Api::ApiHeaders']]], - ['ready_4466',['Ready',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a4ad311358f74779a6c1f2fcba4a30578',1,'Tgstation::Server::Host::Components::IInstanceManager']]], - ['realid_4467',['RealId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a983af752bfee4125d2a94370dc128c48',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.RealId()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae11079589a9c5466c125247cba0e3ec4',1,'Tgstation.Server.Host.Components.Chat.ChatUser.RealId()']]], - ['reattachinformations_4468',['ReattachInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a013e9ece5b0c1f83eb7eb891a8e09489',1,'Tgstation.Server.Host.Database.DatabaseContext.ReattachInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aa06e331aeed4c0680e33e0aa2bcf81cf',1,'Tgstation.Server.Host.Database.IDatabaseContext.ReattachInformations()']]], - ['rebootstate_4469',['RebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a71b97ab7d82ac6304133d90895332e45',1,'Tgstation.Server.Host.Components.Session.ISessionController.RebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0145fd1816a703bcb80fd8e107034f4c',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5bc3f8e6c5569555d358578e612a1920',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#aec874c3505b96efeeaf100ce4b7e6eea',1,'Tgstation.Server.Host.Models.ReattachInformationBase.RebootState()']]], - ['reconnectioninterval_4470',['ReconnectionInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a036a54aabe0dcecabb794483396c8bb9',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], - ['recursesubmodules_4471',['RecurseSubmodules',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a469ceeea1ef0a2ff1cf26df182cbcf6c',1,'Tgstation::Server::Api::Models::Repository']]], - ['reference_4472',['Reference',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a0a99aa36e3e44f020c91e847932e706f',1,'Tgstation.Server.Api.Models.Repository.Reference()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a36f1520633eca12a57b6ed52c60c5257',1,'Tgstation.Server.Host.Components.Repository.IRepository.Reference()']]], - ['repository_4473',['Repository',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#adf8d664f59d973f69aa15c22fba93735',1,'Tgstation.Server.Client.Components.IInstanceClient.Repository()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a507ef7665b72f494e56b997e19835367',1,'Tgstation.Server.Client.Components.InstanceClient.Repository()']]], - ['repositorymanager_4474',['RepositoryManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a51d56fca894257dc7c6747a152f9f1fc',1,'Tgstation.Server.Host.Components.IInstanceCore.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a0ba6b6f63f50a267051c77c15e6c6fcf',1,'Tgstation.Server.Host.Components.Instance.RepositoryManager()']]], - ['repositoryrights_4475',['RepositoryRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a369d2b654bf3c91d4d78e3c758a27757',1,'Tgstation::Server::Api::Models::InstanceUser']]], - ['repositorysettings_4476',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8ef9e7febec260676f8f605e85072e82',1,'Tgstation.Server.Host.Database.DatabaseContext.RepositorySettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ad7cf0bea5adc322eea2cf52b41eb0945',1,'Tgstation.Server.Host.Database.IDatabaseContext.RepositorySettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a389d4c0693f617133a4a8db430c65ab4',1,'Tgstation.Server.Host.Models.Instance.RepositorySettings()']]], - ['requiredmapivalidation_4477',['RequireDMApiValidation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a8b433a152af5918ccddf48f2c87fb6b5',1,'Tgstation::Server::Api::Models::DreamMaker']]], - ['resetadminpassword_4478',['ResetAdminPassword',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a90f97812f033dd9cc418ea1fcffe3ce0',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]], - ['responsemessage_4479',['ResponseMessage',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#ae03dd599c2f6a102dc08a5f308534c14',1,'Tgstation::Server::Client::ClientException']]], - ['restartrequested_4480',['RestartRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#ac87902a08c496cd40add682a2ec6c616',1,'Tgstation.Server.Host.IServer.RestartRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#add86891cdb4011d078e94671466ef14e',1,'Tgstation.Server.Host.Server.RestartRequested()']]], - ['restarttimeout_4481',['RestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#af54d71d8d62e9a4facf3fa58b26ec1a5',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['retryafter_4482',['RetryAfter',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a3a57db9e2ca420da24a144286faf57b0',1,'Tgstation::Server::Client::RateLimitException']]], - ['revinfotestmerges_4483',['RevInfoTestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad98366224f0902e710e86c2834bbc55f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['revision_4484',['Revision',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a7809d348cb5248ec9ae4bb189fda706b',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.Revision()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a916aa6662307599b495fb7ddcdb43766',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation.Revision()']]], - ['revisioninformation_4485',['RevisionInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#afbce76258f1516465571e4d91bddc52a',1,'Tgstation.Server.Api.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#abbaee1939efe1c98e5fd0656295f0ce9',1,'Tgstation.Server.Api.Models.Repository.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a30c14e7fc4c770ff11cd0f10be4fb4dd',1,'Tgstation.Server.Host.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a84e7e578fe5c0d7c09dc22f9085d7367',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.RevisionInformation()']]], - ['revisioninformations_4486',['RevisionInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#af0868b43356117d8cf252ae50c218b38',1,'Tgstation.Server.Host.Database.DatabaseContext.RevisionInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a5633532d3f76127562905242d6a14e91',1,'Tgstation.Server.Host.Database.IDatabaseContext.RevisionInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6bc0b01df1f7ff3ba2abb74dd9d273b9',1,'Tgstation.Server.Host.Models.Instance.RevisionInformations()']]], - ['revisoninformations_4487',['RevisonInformations',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac627e2326a3e3bc6673705b3e0e41f52',1,'Tgstation::Server::Host::Models::TestMerge']]], - ['rightstype_4488',['RightsType',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a3b34b2621f1cbd39484e248ab1eda6ed',1,'Tgstation::Server::Host::Controllers::TgsAuthorizeAttribute']]], - ['runtimeinformation_4489',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a8b6ace0334f5100fb3fa41e5a2755bda',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.RuntimeInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0fd772ae059a153465f76bda841292ef',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.RuntimeInformation()']]] + ['rawuseragent_4575',['RawUserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a22828aaeba69d042e69d5add1e451e0d',1,'Tgstation::Server::Api::ApiHeaders']]], + ['ready_4576',['Ready',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_manager.html#a4ad311358f74779a6c1f2fcba4a30578',1,'Tgstation::Server::Host::Components::IInstanceManager']]], + ['realid_4577',['RealId',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_channel_representation.html#a983af752bfee4125d2a94370dc128c48',1,'Tgstation.Server.Host.Components.Chat.ChannelRepresentation.RealId()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_user.html#ae11079589a9c5466c125247cba0e3ec4',1,'Tgstation.Server.Host.Components.Chat.ChatUser.RealId()']]], + ['reattachinformations_4578',['ReattachInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a013e9ece5b0c1f83eb7eb891a8e09489',1,'Tgstation.Server.Host.Database.DatabaseContext.ReattachInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#aa06e331aeed4c0680e33e0aa2bcf81cf',1,'Tgstation.Server.Host.Database.IDatabaseContext.ReattachInformations()']]], + ['rebootstate_4579',['RebootState',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_i_session_controller.html#a71b97ab7d82ac6304133d90895332e45',1,'Tgstation.Server.Host.Components.Session.ISessionController.RebootState()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_i_watchdog.html#a0145fd1816a703bcb80fd8e107034f4c',1,'Tgstation.Server.Host.Components.Watchdog.IWatchdog.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5bc3f8e6c5569555d358578e612a1920',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_reattach_information_base.html#aec874c3505b96efeeaf100ce4b7e6eea',1,'Tgstation.Server.Host.Models.ReattachInformationBase.RebootState()']]], + ['reconnectioninterval_4580',['ReconnectionInterval',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_chat_bot.html#a036a54aabe0dcecabb794483396c8bb9',1,'Tgstation::Server::Api::Models::Internal::ChatBot']]], + ['recursesubmodules_4581',['RecurseSubmodules',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a469ceeea1ef0a2ff1cf26df182cbcf6c',1,'Tgstation::Server::Api::Models::Repository']]], + ['reference_4582',['Reference',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#a0a99aa36e3e44f020c91e847932e706f',1,'Tgstation.Server.Api.Models.Repository.Reference()'],['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#a36f1520633eca12a57b6ed52c60c5257',1,'Tgstation.Server.Host.Components.Repository.IRepository.Reference()']]], + ['repository_4583',['Repository',['../interface_tgstation_1_1_server_1_1_client_1_1_components_1_1_i_instance_client.html#adf8d664f59d973f69aa15c22fba93735',1,'Tgstation.Server.Client.Components.IInstanceClient.Repository()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_client.html#a507ef7665b72f494e56b997e19835367',1,'Tgstation.Server.Client.Components.InstanceClient.Repository()']]], + ['repositorymanager_4584',['RepositoryManager',['../interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_i_instance_core.html#a51d56fca894257dc7c6747a152f9f1fc',1,'Tgstation.Server.Host.Components.IInstanceCore.RepositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a0ba6b6f63f50a267051c77c15e6c6fcf',1,'Tgstation.Server.Host.Components.Instance.RepositoryManager()']]], + ['repositoryrights_4585',['RepositoryRights',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_instance_user.html#a369d2b654bf3c91d4d78e3c758a27757',1,'Tgstation::Server::Api::Models::InstanceUser']]], + ['repositorysettings_4586',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8ef9e7febec260676f8f605e85072e82',1,'Tgstation.Server.Host.Database.DatabaseContext.RepositorySettings()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#ad7cf0bea5adc322eea2cf52b41eb0945',1,'Tgstation.Server.Host.Database.IDatabaseContext.RepositorySettings()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a389d4c0693f617133a4a8db430c65ab4',1,'Tgstation.Server.Host.Models.Instance.RepositorySettings()']]], + ['requiredmapivalidation_4587',['RequireDMApiValidation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_dream_maker.html#a8b433a152af5918ccddf48f2c87fb6b5',1,'Tgstation::Server::Api::Models::DreamMaker']]], + ['resetadminpassword_4588',['ResetAdminPassword',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a90f97812f033dd9cc418ea1fcffe3ce0',1,'Tgstation::Server::Host::Configuration::DatabaseConfiguration']]], + ['responsemessage_4589',['ResponseMessage',['../class_tgstation_1_1_server_1_1_client_1_1_client_exception.html#ae03dd599c2f6a102dc08a5f308534c14',1,'Tgstation::Server::Client::ClientException']]], + ['restartrequested_4590',['RestartRequested',['../interface_tgstation_1_1_server_1_1_host_1_1_i_server.html#ac87902a08c496cd40add682a2ec6c616',1,'Tgstation.Server.Host.IServer.RestartRequested()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#add86891cdb4011d078e94671466ef14e',1,'Tgstation.Server.Host.Server.RestartRequested()']]], + ['restarttimeout_4591',['RestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#af54d71d8d62e9a4facf3fa58b26ec1a5',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['retryafter_4592',['RetryAfter',['../class_tgstation_1_1_server_1_1_client_1_1_rate_limit_exception.html#a3a57db9e2ca420da24a144286faf57b0',1,'Tgstation::Server::Client::RateLimitException']]], + ['revinfotestmerges_4593',['RevInfoTestMerges',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad98366224f0902e710e86c2834bbc55f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['revision_4594',['Revision',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_runtime_information.html#a7809d348cb5248ec9ae4bb189fda706b',1,'Tgstation.Server.Host.Components.Interop.Bridge.RuntimeInformation.Revision()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_test_merge_information.html#a916aa6662307599b495fb7ddcdb43766',1,'Tgstation.Server.Host.Components.Interop.Bridge.TestMergeInformation.Revision()']]], + ['revisioninformation_4595',['RevisionInformation',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_compile_job.html#afbce76258f1516465571e4d91bddc52a',1,'Tgstation.Server.Api.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository.html#abbaee1939efe1c98e5fd0656295f0ce9',1,'Tgstation.Server.Api.Models.Repository.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a30c14e7fc4c770ff11cd0f10be4fb4dd',1,'Tgstation.Server.Host.Models.CompileJob.RevisionInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_rev_info_test_merge.html#a84e7e578fe5c0d7c09dc22f9085d7367',1,'Tgstation.Server.Host.Models.RevInfoTestMerge.RevisionInformation()']]], + ['revisioninformations_4596',['RevisionInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#af0868b43356117d8cf252ae50c218b38',1,'Tgstation.Server.Host.Database.DatabaseContext.RevisionInformations()'],['../interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context.html#a5633532d3f76127562905242d6a14e91',1,'Tgstation.Server.Host.Database.IDatabaseContext.RevisionInformations()'],['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6bc0b01df1f7ff3ba2abb74dd9d273b9',1,'Tgstation.Server.Host.Models.Instance.RevisionInformations()']]], + ['revisoninformations_4597',['RevisonInformations',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html#ac627e2326a3e3bc6673705b3e0e41f52',1,'Tgstation::Server::Host::Models::TestMerge']]], + ['rightstype_4598',['RightsType',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_tgs_authorize_attribute.html#a3b34b2621f1cbd39484e248ab1eda6ed',1,'Tgstation::Server::Host::Controllers::TgsAuthorizeAttribute']]], + ['runtimeinformation_4599',['RuntimeInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_response.html#a8b6ace0334f5100fb3fa41e5a2755bda',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeResponse.RuntimeInformation()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#a0fd772ae059a153465f76bda841292ef',1,'Tgstation.Server.Host.Components.Session.ReattachInformation.RuntimeInformation()']]] ]; diff --git a/search/search.css b/search/search.css index 3cf9df94a4..933cf08808 100644 --- a/search/search.css +++ b/search/search.css @@ -1,98 +1,82 @@ /*---------------- Search Box */ -#FSearchBox { - float: left; -} - #MSearchBox { white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; z-index: 102; } -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; } #MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; + display: inline-block; + vertical-align: middle; + height: 1.4em; + padding: 0 0 0 0.3em; + margin: 0; } #MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 1.1em; + margin: 0 0.15em; + padding: 0; + line-height: 1em; border:none; - width:115px; - margin-left:20px; - padding-left:4px; color: #909090; outline: none; - font: 9pt Arial, Verdana, sans-serif; + font-family: Arial, Verdana, sans-serif; -webkit-border-radius: 0px; + border-radius: 0px; + background: none; } -#FSearchBox #MSearchField { - margin-left:15px; -} #MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; } #MSearchClose { display: none; - position: absolute; - top: 4px; + font-size: inherit; background : none; border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; + margin: 0; + padding: 0; outline: none; + } -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; } .MSearchBoxActive #MSearchField { color: #000000; } +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + /*---------------- Search filter selection */ #MSearchSelectWindow { diff --git a/search/search.js b/search/search.js index ff2b8c81b3..92b609464a 100644 --- a/search/search.js +++ b/search/search.js @@ -364,7 +364,7 @@ function SearchBox(name, resultsPath, inFrame, label) if (domPopupSearchResultsWindow.style.display!='block') { var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; + this.DOMSearchClose().style.display = 'inline-block'; if (this.insideFrame) { var domPopupSearchResults = this.DOMPopupSearchResults(); diff --git a/search/variables_0.html b/search/variables_0.html index 9ce246b1fc..a033a7de4c 100644 --- a/search/variables_0.html +++ b/search/variables_0.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_0.js b/search/variables_0.js index 2545a896d5..d9510fe3ae 100644 --- a/search/variables_0.js +++ b/search/variables_0.js @@ -1,25 +1,25 @@ var searchData= [ - ['activationtcs_3573',['activationTcs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aeb78e37489526b7e189bb43d526f88b2',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['active_3574',['active',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a3d3ac659fdfea9e5dec63881e6d320b7',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], - ['activechatbots_3575',['activeChatBots',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a3ca52a2da0df3c6f05614dc8e87a4ec0',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['activecompilejob_3576',['ActiveCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5a4b8311c8cbd7cb851d1ade3bc27e05',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['activeversionfilename_3577',['ActiveVersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a55d24d297ec0618cf0ecdd6fc0bd5a66',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['actualinstance_3578',['actualInstance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a10bd2a064b5383bb3b636462ac849f81',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], - ['address_3579',['address',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a5b89ca154b65b12e53b6dca3ceeb0243',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['administration_3580',['Administration',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a1bd414117e790a954bd7bfb83c7d4fc9',1,'Tgstation::Server::Api::Routes']]], - ['adminname_3581',['AdminName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a9a48baf4f5ea3e824d8dc489d3aa38f6',1,'Tgstation::Server::Api::Models::User']]], - ['adminonly_3582',['AdminOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a42073a7395ce9de9b0de9d36e4d6f388',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ad69632c6b423bea790abde206d926425',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a63dc4a93cb647e14f40a613101d7335e',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a17094a94c993b8bbb5fdda8b7a470707',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a801fd1e205cb8e006fefcbf8af8e3b30',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.AdminOnly()']]], - ['alphaisactive_3583',['AlphaIsActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae69887bebd2d65ed9157984bd4f53b7d',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], - ['apiclient_3584',['apiClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa8fcfafea45fc308cd03fc312b49bbc9',1,'Tgstation.Server.Client.AdministrationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a295eaf549628214344fb27e81fba5541',1,'Tgstation.Server.Client.Components.ByondClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a6d24e075bdc11fb958a8b4621475b662',1,'Tgstation.Server.Client.Components.ChatBotsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a42e1a0711dec8d78fc370b30b1aacf80',1,'Tgstation.Server.Client.Components.ConfigurationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a877a9f75012ed5a6f8673e6ab152b7b8',1,'Tgstation.Server.Client.Components.DreamDaemonClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a15b39a0722ab7ba469ea002df87190a7',1,'Tgstation.Server.Client.Components.DreamMakerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#afe9a85e5c7dfa76fcd2ffdeecc388b34',1,'Tgstation.Server.Client.Components.InstanceUserClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#acd85788ba2647284a601f7cca2e3d8cb',1,'Tgstation.Server.Client.Components.JobsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a34759d9d0d89eab5def2d32cc90b7736',1,'Tgstation.Server.Client.Components.RepositoryClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a717fb098fea90adf6d93ae860e0420fe',1,'Tgstation.Server.Client.InstanceManagerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a20ec30223872220ef996f4219888f3cc',1,'Tgstation.Server.Client.ServerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a1d983fe53f4fef69d2ba676884d4ce8c',1,'Tgstation.Server.Client.UsersClient.apiClient()']]], - ['apiclientfactory_3585',['ApiClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a1ce05c0c437fca7e62dd764346be53a0',1,'Tgstation::Server::Client::ServerClientFactory']]], - ['apivalidationstatus_3586',['apiValidationStatus',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a064fcf3631f763077ec127af368b0421',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['apiversionheader_3587',['ApiVersionHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a99649cb8fbf286c635b109e8373b415e',1,'Tgstation::Server::Api::ApiHeaders']]], - ['applicationlifetime_3588',['applicationLifetime',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ac7f7f7b49a557d032e3c42d5a9ff50c8',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['assemblyinformationprovider_3589',['assemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a0925181fde55747dca42c360486eb949',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a2804521ce43e4dae665f0dfe31afa8c6',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a73f7fae07fc8d7efc90b6464dc2eca79',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#af165dfbe55239bcb1d705bddbed7c01f',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ac44fead7dfc02bdd99aea10b729e82ed',1,'Tgstation.Server.Host.Components.InstanceFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa335c25ccb65f93242424c79396a29dc',1,'Tgstation.Server.Host.Components.InstanceManager.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8dbd5a414f211bbb1b0c63c5666568b8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a4e26166b0342015cc789ec8f897e3f65',1,'Tgstation.Server.Host.Controllers.AdministrationController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a36878504836ee1bd7b7a57f7e3d31192',1,'Tgstation.Server.Host.Controllers.HomeController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a6ba17c2ceda75c9d153d15893712446f',1,'Tgstation.Server.Host.Core.GitHubClientFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a387f7728fad0a77333cbb190d18b400d',1,'Tgstation.Server.Host.ServerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a5851a0d869fb5b874b39106af947c661',1,'Tgstation.Server.Host.Setup.SetupWizard.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a160a8959deda71c27f974a9c0321dd27',1,'Tgstation.Server.Host.Setup.SetupApplication.AssemblyInformationProvider()']]], - ['assemblyname_3590',['AssemblyName',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#acc064dcbf2348cfcf44d06acff499977',1,'Tgstation::Server::Api::ApiHeaders']]], - ['asyncdelayer_3591',['asyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a50f199a025fe456b6bb63c9eaa18a07a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aa5bf6331a8aa3e9587376c9574910e86',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a154b7cf302e0d4b39d338846a851b898',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a07009731bbb9ae0df5a4c315189b5ccb',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad6f992fed638980594fd5a6c45b8946b',1,'Tgstation.Server.Host.Components.InstanceManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a9ae1ecab8e3826302aa8d692c0d659d1',1,'Tgstation.Server.Host.Security.IdentityCache.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#ad5a557224dd5d8eac2a46dec133509fb',1,'Tgstation.Server.Host.Security.TokenFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae12ec09822e867ea3dd0f99e7357f329',1,'Tgstation.Server.Host.Setup.SetupWizard.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a0a1974764838ef42c9d2faa8dd8580b9',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.asyncDelayer()']]], - ['authenticationcontextfactory_3592',['authenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a65b9d8be87a72903d74d266180612800',1,'Tgstation::Server::Host::Security::ClaimsInjector']]], - ['autostart_3593',['autoStart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a410f168d84f80c138450fb42f222ba01',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['available_3594',['Available',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a7fede11791f3ad6ab39f29cb5ce0075c',1,'Tgstation::Server::Host::IO::Console']]] + ['activationtcs_3661',['activationTcs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aeb78e37489526b7e189bb43d526f88b2',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['active_3662',['active',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a3d3ac659fdfea9e5dec63881e6d320b7',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], + ['activechatbots_3663',['activeChatBots',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a3ca52a2da0df3c6f05614dc8e87a4ec0',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['activecompilejob_3664',['ActiveCompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5a4b8311c8cbd7cb851d1ade3bc27e05',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['activeversionfilename_3665',['ActiveVersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a55d24d297ec0618cf0ecdd6fc0bd5a66',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['actualinstance_3666',['actualInstance',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a10bd2a064b5383bb3b636462ac849f81',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], + ['address_3667',['address',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a5b89ca154b65b12e53b6dca3ceeb0243',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['administration_3668',['Administration',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a1bd414117e790a954bd7bfb83c7d4fc9',1,'Tgstation::Server::Api::Routes']]], + ['adminname_3669',['AdminName',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a9a48baf4f5ea3e824d8dc489d3aa38f6',1,'Tgstation::Server::Api::Models::User']]], + ['adminonly_3670',['AdminOnly',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a42073a7395ce9de9b0de9d36e4d6f388',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#ad69632c6b423bea790abde206d926425',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a63dc4a93cb647e14f40a613101d7335e',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a17094a94c993b8bbb5fdda8b7a470707',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.AdminOnly()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a801fd1e205cb8e006fefcbf8af8e3b30',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.AdminOnly()']]], + ['alphaisactive_3671',['AlphaIsActive',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae69887bebd2d65ed9157984bd4f53b7d',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]], + ['apiclient_3672',['apiClient',['../class_tgstation_1_1_server_1_1_client_1_1_administration_client.html#aa8fcfafea45fc308cd03fc312b49bbc9',1,'Tgstation.Server.Client.AdministrationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a295eaf549628214344fb27e81fba5541',1,'Tgstation.Server.Client.Components.ByondClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#a6d24e075bdc11fb958a8b4621475b662',1,'Tgstation.Server.Client.Components.ChatBotsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a42e1a0711dec8d78fc370b30b1aacf80',1,'Tgstation.Server.Client.Components.ConfigurationClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#a877a9f75012ed5a6f8673e6ab152b7b8',1,'Tgstation.Server.Client.Components.DreamDaemonClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a15b39a0722ab7ba469ea002df87190a7',1,'Tgstation.Server.Client.Components.DreamMakerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#afe9a85e5c7dfa76fcd2ffdeecc388b34',1,'Tgstation.Server.Client.Components.InstanceUserClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#acd85788ba2647284a601f7cca2e3d8cb',1,'Tgstation.Server.Client.Components.JobsClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a34759d9d0d89eab5def2d32cc90b7736',1,'Tgstation.Server.Client.Components.RepositoryClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_instance_manager_client.html#a717fb098fea90adf6d93ae860e0420fe',1,'Tgstation.Server.Client.InstanceManagerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a20ec30223872220ef996f4219888f3cc',1,'Tgstation.Server.Client.ServerClient.apiClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_users_client.html#a1d983fe53f4fef69d2ba676884d4ce8c',1,'Tgstation.Server.Client.UsersClient.apiClient()']]], + ['apiclientfactory_3673',['ApiClientFactory',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a1ce05c0c437fca7e62dd764346be53a0',1,'Tgstation::Server::Client::ServerClientFactory']]], + ['apivalidationstatus_3674',['apiValidationStatus',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a064fcf3631f763077ec127af368b0421',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['apiversionheader_3675',['ApiVersionHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a99649cb8fbf286c635b109e8373b415e',1,'Tgstation::Server::Api::ApiHeaders']]], + ['applicationlifetime_3676',['applicationLifetime',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ac7f7f7b49a557d032e3c42d5a9ff50c8',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['assemblyinformationprovider_3677',['AssemblyInformationProvider',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a160a8959deda71c27f974a9c0321dd27',1,'Tgstation.Server.Host.Setup.SetupApplication.AssemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a0925181fde55747dca42c360486eb949',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a2804521ce43e4dae665f0dfe31afa8c6',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a73f7fae07fc8d7efc90b6464dc2eca79',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#af165dfbe55239bcb1d705bddbed7c01f',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ac44fead7dfc02bdd99aea10b729e82ed',1,'Tgstation.Server.Host.Components.InstanceFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa335c25ccb65f93242424c79396a29dc',1,'Tgstation.Server.Host.Components.InstanceManager.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8dbd5a414f211bbb1b0c63c5666568b8',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a4e26166b0342015cc789ec8f897e3f65',1,'Tgstation.Server.Host.Controllers.AdministrationController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a36878504836ee1bd7b7a57f7e3d31192',1,'Tgstation.Server.Host.Controllers.HomeController.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_git_hub_client_factory.html#a6ba17c2ceda75c9d153d15893712446f',1,'Tgstation.Server.Host.Core.GitHubClientFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_server_factory.html#a387f7728fad0a77333cbb190d18b400d',1,'Tgstation.Server.Host.ServerFactory.assemblyInformationProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a5851a0d869fb5b874b39106af947c661',1,'Tgstation.Server.Host.Setup.SetupWizard.assemblyInformationProvider()']]], + ['assemblyname_3678',['AssemblyName',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#acc064dcbf2348cfcf44d06acff499977',1,'Tgstation::Server::Api::ApiHeaders']]], + ['asyncdelayer_3679',['asyncDelayer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a50f199a025fe456b6bb63c9eaa18a07a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aa5bf6331a8aa3e9587376c9574910e86',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a154b7cf302e0d4b39d338846a851b898',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a07009731bbb9ae0df5a4c315189b5ccb',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad6f992fed638980594fd5a6c45b8946b',1,'Tgstation.Server.Host.Components.InstanceManager.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a9ae1ecab8e3826302aa8d692c0d659d1',1,'Tgstation.Server.Host.Security.IdentityCache.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#ad5a557224dd5d8eac2a46dec133509fb',1,'Tgstation.Server.Host.Security.TokenFactory.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#ae12ec09822e867ea3dd0f99e7357f329',1,'Tgstation.Server.Host.Setup.SetupWizard.asyncDelayer()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a0a1974764838ef42c9d2faa8dd8580b9',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.asyncDelayer()']]], + ['authenticationcontextfactory_3680',['authenticationContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_claims_injector.html#a65b9d8be87a72903d74d266180612800',1,'Tgstation::Server::Host::Security::ClaimsInjector']]], + ['autostart_3681',['autoStart',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a410f168d84f80c138450fb42f222ba01',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['available_3682',['Available',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a7fede11791f3ad6ab39f29cb5ce0075c',1,'Tgstation::Server::Host::IO::Console']]] ]; diff --git a/search/variables_1.html b/search/variables_1.html index 5802cecdaf..c7ceeeb70e 100644 --- a/search/variables_1.html +++ b/search/variables_1.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_1.js b/search/variables_1.js index 6920d35274..2d4954d1ad 100644 --- a/search/variables_1.js +++ b/search/variables_1.js @@ -1,24 +1,25 @@ var searchData= [ - ['baseprovider_3595',['baseProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a3a0e0277b9c8670ec4dff26f4ef4749d',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['basicauthenticationscheme_3596',['BasicAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6bbe0fc133b7dde5ef8a6f1c8f0feb18',1,'Tgstation::Server::Api::ApiHeaders']]], - ['binpath_3597',['BinPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#aa929f025399e35d5455574c2db72cd76',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['botmention_3598',['BotMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a2724c59c69f5edcb6ccd6549a6ce71d6',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['bottoken_3599',['BotToken',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a22ab7557b8fe4c2b57fce647269ca560',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], - ['bridgedispatcher_3600',['bridgeDispatcher',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#aa84c6939b6616c3cd2febf5e9deb9d03',1,'Tgstation::Server::Host::Controllers::BridgeController']]], - ['bridgehandlers_3601',['bridgeHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa63fb27d9675a19d4682b34a6d48130d',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['bridgeregistrar_3602',['bridgeRegistrar',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a58566db67d5309791189384f51ccc914',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], - ['bridgeregistration_3603',['bridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#adf187aefcc19ad1c2d92d265ce79f661',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['browserresolver_3604',['browserResolver',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a291e832dea111e7c46387fa96d212cb3',1,'Tgstation::Server::Host::Controllers::HomeController']]], - ['builtincommands_3605',['builtinCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3868b098a806dcfe331ce581059f1c7',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['byond_3606',['Byond',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a9846874e39579d320e53020346944a60',1,'Tgstation.Server.Api.Routes.Byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aabc95ce5c908039204f8509226447212',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#aec66114f00a86784f61e41f95e56368f',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.byond()']]], - ['byondconfigdir_3607',['ByondConfigDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac5e0a1909c082fbcd47ff591764a2345',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byondddconfig_3608',['ByondDDConfig',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a85675de1695978da5fe1d958ffb7dcf3',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byonddxdir_3609',['ByondDXDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a2214ac1499336591cc7a382a7b9a986f',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byondinstaller_3610',['byondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3d9ba4fe85290b449bb305f06cf5b57c',1,'Tgstation.Server.Host.Components.Byond.ByondManager.byondInstaller()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9b4acf6f948993eac90206dae7dc1c8d',1,'Tgstation.Server.Host.Components.InstanceFactory.byondInstaller()']]], - ['byondlock_3611',['byondLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a910e577062b12d5311aec27e7fb1db88',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['byondmanager_3612',['byondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a65e3da64c0d52b3811a21952e5bcae28',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.byondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a519a7b7c42cfba5ff53cce4438a31f71',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.byondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a4725803015279c366ae823c39c1bb0c5',1,'Tgstation.Server.Host.Components.InstanceWrapper.ByondManager()']]], - ['byondnoprompttrustedmode_3613',['ByondNoPromptTrustedMode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a5b257317ebd8d23c34d86835b3f48b09',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['byondrevisionsurltemplate_3614',['ByondRevisionsURLTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab1f1c9a1e5c18ea71a475a851593e090',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.ByondRevisionsURLTemplate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a6c5ee4eb4905e031ea35497e1ef4dcc2',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.ByondRevisionsURLTemplate()']]], - ['byondtopicsender_3615',['byondTopicSender',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9aa75319f31efb998077ea7a2323aff6',1,'Tgstation::Server::Host::Components::Session::SessionController']]] + ['baseprovider_3683',['baseProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a3a0e0277b9c8670ec4dff26f4ef4749d',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['basicauthenticationscheme_3684',['BasicAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6bbe0fc133b7dde5ef8a6f1c8f0feb18',1,'Tgstation::Server::Api::ApiHeaders']]], + ['binpath_3685',['BinPath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#aa929f025399e35d5455574c2db72cd76',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['blockingtaskcreationoptions_3686',['BlockingTaskCreationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#ac6dfeef4e622bb46047169215099995d',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['botmention_3687',['BotMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a2724c59c69f5edcb6ccd6549a6ce71d6',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['bottoken_3688',['botToken',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a45475c58bb323678370c010872a126c9',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]], + ['bridgedispatcher_3689',['bridgeDispatcher',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#aa84c6939b6616c3cd2febf5e9deb9d03',1,'Tgstation::Server::Host::Controllers::BridgeController']]], + ['bridgehandlers_3690',['bridgeHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aa63fb27d9675a19d4682b34a6d48130d',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['bridgeregistrar_3691',['bridgeRegistrar',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a58566db67d5309791189384f51ccc914',1,'Tgstation::Server::Host::Components::Session::SessionControllerFactory']]], + ['bridgeregistration_3692',['bridgeRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#adf187aefcc19ad1c2d92d265ce79f661',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['browserresolver_3693',['browserResolver',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a291e832dea111e7c46387fa96d212cb3',1,'Tgstation::Server::Host::Controllers::HomeController']]], + ['builtincommands_3694',['builtinCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3868b098a806dcfe331ce581059f1c7',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['byond_3695',['Byond',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a9846874e39579d320e53020346944a60',1,'Tgstation.Server.Api.Routes.Byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aabc95ce5c908039204f8509226447212',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.byond()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#aec66114f00a86784f61e41f95e56368f',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.byond()']]], + ['byondconfigdir_3696',['ByondConfigDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ac5e0a1909c082fbcd47ff591764a2345',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byondddconfig_3697',['ByondDDConfig',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a85675de1695978da5fe1d958ffb7dcf3',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byonddxdir_3698',['ByondDXDir',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a2214ac1499336591cc7a382a7b9a986f',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byondinstaller_3699',['byondInstaller',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3d9ba4fe85290b449bb305f06cf5b57c',1,'Tgstation.Server.Host.Components.Byond.ByondManager.byondInstaller()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9b4acf6f948993eac90206dae7dc1c8d',1,'Tgstation.Server.Host.Components.InstanceFactory.byondInstaller()']]], + ['byondlock_3700',['byondLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a910e577062b12d5311aec27e7fb1db88',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['byondmanager_3701',['ByondManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a4725803015279c366ae823c39c1bb0c5',1,'Tgstation.Server.Host.Components.InstanceWrapper.ByondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a65e3da64c0d52b3811a21952e5bcae28',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.byondManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a519a7b7c42cfba5ff53cce4438a31f71',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.byondManager()']]], + ['byondnoprompttrustedmode_3702',['ByondNoPromptTrustedMode',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a5b257317ebd8d23c34d86835b3f48b09',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['byondrevisionsurltemplate_3703',['ByondRevisionsURLTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#ab1f1c9a1e5c18ea71a475a851593e090',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.ByondRevisionsURLTemplate()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a6c5ee4eb4905e031ea35497e1ef4dcc2',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.ByondRevisionsURLTemplate()']]], + ['byondtopicsender_3704',['byondTopicSender',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a9aa75319f31efb998077ea7a2323aff6',1,'Tgstation::Server::Host::Components::Session::SessionController']]] ]; diff --git a/search/variables_10.html b/search/variables_10.html index 3099e8d32a..755868ee61 100644 --- a/search/variables_10.html +++ b/search/variables_10.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_10.js b/search/variables_10.js index cd02a11448..25d17e86d3 100644 --- a/search/variables_10.js +++ b/search/variables_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['querychannelidmap_3830',['queryChannelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa1d881a293f002c54c639ed5ed6f251d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]] + ['querychannelidmap_3928',['queryChannelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa1d881a293f002c54c639ed5ed6f251d',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]] ]; diff --git a/search/variables_11.html b/search/variables_11.html index cbf6c81d59..8b09d6db09 100644 --- a/search/variables_11.html +++ b/search/variables_11.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_11.js b/search/variables_11.js index 0b3fe4350f..e40158e34f 100644 --- a/search/variables_11.js +++ b/search/variables_11.js @@ -1,43 +1,43 @@ var searchData= [ - ['ready_3831',['Ready',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a0d54ae3e93cf9a9af10411c733e77f44',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['readytcs_3832',['readyTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a544dea7c9d4691aa67d8bafb2f39922c',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['reattachinformation_3833',['reattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a2f27422dea8fc27fb0c7f1964f455319',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['reattachinformations_3834',['ReattachInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a81754ce679705d27e6510c291c26b77c',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['reattachinformationscollection_3835',['reattachInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac17092c829e679b90650ae05338b4914',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['reattachtopiccts_3836',['reattachTopicCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a585c2703d8cea3397a20f06a290ae48f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['rebootstate_3837',['RebootState',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a06199c8ec541da0905faa9f966ff6890',1,'Tgstation.Server.Host.Components.Session.SessionController.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a162156e619faf7f253fce4c39b35559b',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.RebootState()']]], - ['reboottcs_3838',['rebootTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a28176c23942e421c95dc57f8b966d142',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['recheckdelayms_3839',['RecheckDelayMs',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab953db51ba254644353cb7cb4613a35b',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['reconnectcts_3840',['reconnectCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a9f6a1589b22e35e4e494ea4df0bf2446',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['reconnecttask_3841',['reconnectTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#abcd5569a84d1d67a6b891b7bf7f5c6df',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['reconnecttasklock_3842',['reconnectTaskLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac3f1219e16c1c8e9e32a07697d3affde',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['reference_3843',['Reference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a019e9f75f0129457c1f6f2e44e9736d0',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['referencecount_3844',['referenceCount',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a7984b813e64ace0d665e50cd5689c31b',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['referencecountlock_3845',['referenceCountLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1224c3b67cd2217d80511c55ef622a86',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['registeredprocesses_3846',['registeredProcesses',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afffde309e8027f1373df6c95393c643a',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['released_3847',['released',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a63130d91727f1706f6f7c25ca55ee29f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['releasedreattachinformation_3848',['releasedReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a897f0e0963fd7f468151b2d748c0db32',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['releaseservers_3849',['releaseServers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a256c7fd5a04870388411185b46ff6fb8',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['remotetemporarybranchname_3850',['RemoteTemporaryBranchName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4ad624c2294a1cc28f47d251ed3a17f8',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['repository_3851',['Repository',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a738817663facf9293a084ab4c5a155ef',1,'Tgstation::Server::Api::Routes']]], - ['repositorycommands_3852',['repositoryCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9c02f76180a5f7555c683994e9f4529e',1,'Tgstation::Server::Host::Components::InstanceFactory']]], - ['repositoryfactory_3853',['repositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a7a33f13d048aedc87473fd5d2c31c11e',1,'Tgstation.Server.Host.Components.InstanceFactory.repositoryFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a4f6156dc0a120ec2176d644f134b1129',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.repositoryFactory()']]], - ['repositorylogger_3854',['repositoryLogger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a215c5b936673287ad252f01b1b87f9bf',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], - ['repositorymanager_3855',['repositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac6eb0ebb09860c076b09529a92963592',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#af5857133d7544a45ce4b4e75210830b2',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#acdac2dc61b95355e78f8a1b008b7f7b4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0cfc680dd4fa5908a6ae164d14530f39',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a72fb8ae414adf4911da28098261cb0ba',1,'Tgstation.Server.Host.Components.InstanceWrapper.RepositoryManager()']]], - ['repositorysettings_3856',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a87a0742c91d81f194a5c075862b3a1cd',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['repositorysettingscollection_3857',['repositorySettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a64da1a0898e301c7c64c720588927793',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['requestloggers_3858',['requestLoggers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a8c0c69d8203c1af593869613dfb1f8cc',1,'Tgstation::Server::Client::ApiClient']]], - ['requestsprocessed_3859',['requestsProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0d4ca33235052b49fd927c9df33ae7f3',1,'Tgstation::Server::Host::Controllers::BridgeController']]], - ['requireheaders_3860',['requireHeaders',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a91c58c31f7a3cc51fff3cfc3b236756d',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['requireinstance_3861',['requireInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#afe4f020656eb2d02def6ff389fd33bcb',1,'Tgstation::Server::Host::Controllers::ApiController']]], - ['restarthandlers_3862',['restartHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6fd99785ffec475ce3d3835c1206505f',1,'Tgstation::Server::Host::Server']]], - ['restartlock_3863',['restartLock',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#abf1047eeb7fc9f915460a1bacc58666e',1,'Tgstation::Server::Host::Server']]], - ['restartregistration_3864',['restartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac3dec357800cfc9a526c82d61fe99803',1,'Tgstation.Server.Host.Components.Chat.ChatManager.restartRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aefe25fd33c4a6dfb4ea27b583a2286ea',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.restartRegistration()']]], - ['revinfocompilejobdeletebehavior_3865',['RevInfoCompileJobDeleteBehavior',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a362548adc55667bb4b4b868b6a93e194',1,'Tgstation.Server.Host.Database.DatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a53410634a9ad9c22227a739a956e95d0',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#af2e5a946215845b0fcecffeb2270b1c3',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.RevInfoCompileJobDeleteBehavior()']]], - ['revisioninformations_3866',['RevisionInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad249b9f42f44994b679cff760af48f98',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['revisioninformationscollection_3867',['revisionInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aab44643db86309797a66d33fc4377017',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['root_3868',['Root',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa336e9d55df01b49f6d217b48563900a',1,'Tgstation::Server::Api::Routes']]], - ['runtask_3869',['runTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afb100cbab0aa9560e4831bee360f9c0f',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['runtimeinformationlock_3870',['runtimeInformationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab8d5fd229d05abf161538c6d7fc72b93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]] + ['ready_3929',['Ready',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a0d54ae3e93cf9a9af10411c733e77f44',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['readytcs_3930',['readyTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a544dea7c9d4691aa67d8bafb2f39922c',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['reattachinformation_3931',['reattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a2f27422dea8fc27fb0c7f1964f455319',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['reattachinformations_3932',['ReattachInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a81754ce679705d27e6510c291c26b77c',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['reattachinformationscollection_3933',['reattachInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac17092c829e679b90650ae05338b4914',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['reattachtopiccts_3934',['reattachTopicCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a585c2703d8cea3397a20f06a290ae48f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['rebootstate_3935',['RebootState',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a06199c8ec541da0905faa9f966ff6890',1,'Tgstation.Server.Host.Components.Session.SessionController.RebootState()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#a162156e619faf7f253fce4c39b35559b',1,'Tgstation.Server.Host.Components.Watchdog.BasicWatchdog.RebootState()']]], + ['reboottcs_3936',['rebootTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a28176c23942e421c95dc57f8b966d142',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['recheckdelayms_3937',['RecheckDelayMs',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#ab953db51ba254644353cb7cb4613a35b',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['reconnectcts_3938',['reconnectCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a9f6a1589b22e35e4e494ea4df0bf2446',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['reconnecttask_3939',['reconnectTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#abcd5569a84d1d67a6b891b7bf7f5c6df',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['reconnecttasklock_3940',['reconnectTaskLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac3f1219e16c1c8e9e32a07697d3affde',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['reference_3941',['Reference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a019e9f75f0129457c1f6f2e44e9736d0',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['referencecount_3942',['referenceCount',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a7984b813e64ace0d665e50cd5689c31b',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['referencecountlock_3943',['referenceCountLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#a1224c3b67cd2217d80511c55ef622a86',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['registeredprocesses_3944',['registeredProcesses',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afffde309e8027f1373df6c95393c643a',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['released_3945',['released',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a63130d91727f1706f6f7c25ca55ee29f',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['releasedreattachinformation_3946',['releasedReattachInformation',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a897f0e0963fd7f468151b2d748c0db32',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['releaseservers_3947',['releaseServers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a256c7fd5a04870388411185b46ff6fb8',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['remotetemporarybranchname_3948',['RemoteTemporaryBranchName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4ad624c2294a1cc28f47d251ed3a17f8',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['repository_3949',['Repository',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a738817663facf9293a084ab4c5a155ef',1,'Tgstation::Server::Api::Routes']]], + ['repositorycommands_3950',['repositoryCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a9c02f76180a5f7555c683994e9f4529e',1,'Tgstation::Server::Host::Components::InstanceFactory']]], + ['repositoryfactory_3951',['repositoryFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a7a33f13d048aedc87473fd5d2c31c11e',1,'Tgstation.Server.Host.Components.InstanceFactory.repositoryFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a4f6156dc0a120ec2176d644f134b1129',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.repositoryFactory()']]], + ['repositorylogger_3952',['repositoryLogger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a215c5b936673287ad252f01b1b87f9bf',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], + ['repositorymanager_3953',['repositoryManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#ac6eb0ebb09860c076b09529a92963592',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#af5857133d7544a45ce4b4e75210830b2',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#acdac2dc61b95355e78f8a1b008b7f7b4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0cfc680dd4fa5908a6ae164d14530f39',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.repositoryManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a72fb8ae414adf4911da28098261cb0ba',1,'Tgstation.Server.Host.Components.InstanceWrapper.RepositoryManager()']]], + ['repositorysettings_3954',['RepositorySettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a87a0742c91d81f194a5c075862b3a1cd',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['repositorysettingscollection_3955',['repositorySettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a64da1a0898e301c7c64c720588927793',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['requestloggers_3956',['requestLoggers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a8c0c69d8203c1af593869613dfb1f8cc',1,'Tgstation::Server::Client::ApiClient']]], + ['requestsprocessed_3957',['requestsProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a0d4ca33235052b49fd927c9df33ae7f3',1,'Tgstation::Server::Host::Controllers::BridgeController']]], + ['requireheaders_3958',['requireHeaders',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#a91c58c31f7a3cc51fff3cfc3b236756d',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['requireinstance_3959',['requireInstance',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_api_controller.html#afe4f020656eb2d02def6ff389fd33bcb',1,'Tgstation::Server::Host::Controllers::ApiController']]], + ['restarthandlers_3960',['restartHandlers',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6fd99785ffec475ce3d3835c1206505f',1,'Tgstation::Server::Host::Server']]], + ['restartlock_3961',['restartLock',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#abf1047eeb7fc9f915460a1bacc58666e',1,'Tgstation::Server::Host::Server']]], + ['restartregistration_3962',['restartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ac3dec357800cfc9a526c82d61fe99803',1,'Tgstation.Server.Host.Components.Chat.ChatManager.restartRegistration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#aefe25fd33c4a6dfb4ea27b583a2286ea',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.restartRegistration()']]], + ['revinfocompilejobdeletebehavior_3963',['RevInfoCompileJobDeleteBehavior',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a362548adc55667bb4b4b868b6a93e194',1,'Tgstation.Server.Host.Database.DatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_my_sql_database_context.html#a53410634a9ad9c22227a739a956e95d0',1,'Tgstation.Server.Host.Database.MySqlDatabaseContext.RevInfoCompileJobDeleteBehavior()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_postgres_sql_database_context.html#af2e5a946215845b0fcecffeb2270b1c3',1,'Tgstation.Server.Host.Database.PostgresSqlDatabaseContext.RevInfoCompileJobDeleteBehavior()']]], + ['revisioninformations_3964',['RevisionInformations',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ad249b9f42f44994b679cff760af48f98',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['revisioninformationscollection_3965',['revisionInformationsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aab44643db86309797a66d33fc4377017',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['root_3966',['Root',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa336e9d55df01b49f6d217b48563900a',1,'Tgstation::Server::Api::Routes']]], + ['runtask_3967',['runTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#afb100cbab0aa9560e4831bee360f9c0f',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['runtimeinformationlock_3968',['runtimeInformationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_reattach_information.html#ab8d5fd229d05abf161538c6d7fc72b93',1,'Tgstation::Server::Host::Components::Session::ReattachInformation']]] ]; diff --git a/search/variables_12.html b/search/variables_12.html index 3f0f7f4982..9e567b610f 100644 --- a/search/variables_12.html +++ b/search/variables_12.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_12.js b/search/variables_12.js index 82788d43cb..753e33cbc6 100644 --- a/search/variables_12.js +++ b/search/variables_12.js @@ -1,29 +1,31 @@ var searchData= [ - ['safehandle_3871',['safeHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b39626a97cb5d3618dfd6d2fcefa2',1,'Tgstation::Server::Host::System::Process']]], - ['scopefactory_3872',['scopeFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a82349a843b7d53e907fbdcfd46bf91d2',1,'Tgstation::Server::Host::Database::DatabaseContextFactory']]], - ['section_3873',['Section',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#adbbc553f0fd0f2eb4a69a8361c5a9c80',1,'Tgstation.Server.Host.Configuration.ControlPanelConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a3c3201b453ffd190158839da139e4a13',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a8450ea7764591aa38857686d8fc70f93',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a04dc43bd8ff33f4a8a791f750f7eb1d9',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#aeed3d84cee92ab5e7488d5c5b52493c7',1,'Tgstation.Server.Host.Configuration.UpdatesConfiguration.Section()']]], - ['securestringlength_3874',['SecureStringLength',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a893d5725e799a79d7a3dd172f098edb8',1,'Tgstation::Server::Host::Security::CryptographySuite']]], - ['semaphore_3875',['semaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a192e5a69ce9c2300f588cc65af3a64f2',1,'Tgstation.Server.Host.Components.Byond.ByondManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ae6aa8519a6401fc95218f2de88080605',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a550982dbdc2ce226e878702a520bbe27',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af64bb7e6efa9991a5a3a14993a3277e8',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.semaphore()']]], - ['semaphoreslim_3876',['semaphoreSlim',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ada5764977cc200cc19bb38db0b0fe1e4',1,'Tgstation::Server::Client::ApiClient']]], - ['sendmessagecount_3877',['SendMessageCount',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a6c18ae3a8fda9fa9973b0a8a396328f4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], - ['serializersettings_3878',['SerializerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a38c0e12f070e67fbdedfce3854c58d42',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['serilogcontexttemplate_3879',['SerilogContextTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a2c8521a096ca983ff3cfe7b6356406d8',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], - ['servercontrol_3880',['serverControl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a6b86256a68eff2c15b42badd8159a2f0',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.serverControl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ac2ba10fddea5448f4c8c08f363a0e391',1,'Tgstation.Server.Host.Components.InstanceManager.serverControl()']]], - ['serverportprovider_3881',['serverPortProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a978034e4b8017f55b969b65a4949b4b6',1,'Tgstation.Server.Host.Components.InstanceFactory.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad5b7e13dc94565671f962eb9fe62fd82',1,'Tgstation.Server.Host.Components.InstanceManager.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a14b84906ae2ddd580d5735ebf3ba9917',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider()']]], - ['serverupdater_3882',['serverUpdater',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a860fa70ca4b87deb3f9e6f550d57dc72',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['sessioncontrollerfactory_3883',['sessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8322a848923985ee4e06d792dccb8643',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['sessionpersistor_3884',['sessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a76a88605b050495c652cd06f2947e482',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['shellscriptextension_3885',['ShellScriptExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a979586ccac8fef0e0a10b9e2f5bfa339',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['standarderrortask_3886',['standardErrorTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4f257f5cb5c9662edf9bcb6b059e1',1,'Tgstation::Server::Host::System::Process']]], - ['standardoutputtask_3887',['standardOutputTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a80e20c64fa56f3d3f39dad15af37028b',1,'Tgstation::Server::Host::System::Process']]], - ['startupdmbprovider_3888',['startupDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#afa65470fdf88d190f47de568b3b9791e',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['staticignorefile_3889',['StaticIgnoreFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3c23fe94867b94fa0833f4a789830fd1',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['status_3890',['status',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5c8949750c7c079faf8d438fde20c6c',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['subdirectory_3891',['subdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a02d7c98f480664056ad8dbe912003ae9',1,'Tgstation::Server::Host::IO::ResolvingIOManager']]], - ['symlinkfactory_3892',['symlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#abe731c7399d16f3e98e3f9b996c348b1',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae9583eef7d68626e70fd30097b6db87c',1,'Tgstation.Server.Host.Components.InstanceFactory.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a52deb2c99db89b8e8dfb4bf1a5fd3f',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a65ab5bf0783d6732eb6b1018f7a1983a',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.symlinkFactory()']]], - ['synchronizationlock_3893',['synchronizationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a1ac2daf67a09f128290588a5181c88ba',1,'Tgstation.Server.Host.Components.Chat.ChatManager.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#ab3b8d2b85773e2d5e5f63aff3e8c27eb',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0bbceae0e217ef75fc3989124017856d',1,'Tgstation.Server.Host.Components.Session.SessionController.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aec64bbed8584f4daad12932098999e1b',1,'Tgstation.Server.Host.Jobs.JobManager.synchronizationLock()']]], - ['synchronizationsemaphore_3894',['synchronizationSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a7e6adcb942a9ff1bb7d11d738b98b6e4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['synchronousiomanager_3895',['synchronousIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a2b14e009e117f22b206bbdf743712809',1,'Tgstation.Server.Host.Components.InstanceFactory.synchronousIOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a29a360d050eedfecf24a5d7a75331f1d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.synchronousIOManager()']]], - ['systemidentityfactory_3896',['systemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a914147c0498a9b2482efe956486646fb',1,'Tgstation.Server.Host.Components.InstanceManager.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a82f9e135570d468d3a0cfbf645e2f0ae',1,'Tgstation.Server.Host.Controllers.HomeController.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#adcb096909c25a05c74f2714128607c05',1,'Tgstation.Server.Host.Controllers.UserController.systemIdentityFactory()']]] + ['safehandle_3969',['safeHandle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b39626a97cb5d3618dfd6d2fcefa2',1,'Tgstation::Server::Host::System::Process']]], + ['scopefactory_3970',['scopeFactory',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context_factory.html#a82349a843b7d53e907fbdcfd46bf91d2',1,'Tgstation::Server::Host::Database::DatabaseContextFactory']]], + ['section_3971',['Section',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_control_panel_configuration.html#adbbc553f0fd0f2eb4a69a8361c5a9c80',1,'Tgstation.Server.Host.Configuration.ControlPanelConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_database_configuration.html#a3c3201b453ffd190158839da139e4a13',1,'Tgstation.Server.Host.Configuration.DatabaseConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a8450ea7764591aa38857686d8fc70f93',1,'Tgstation.Server.Host.Configuration.FileLoggingConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a04dc43bd8ff33f4a8a791f750f7eb1d9',1,'Tgstation.Server.Host.Configuration.GeneralConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a63e264392098db4e986d5dd638fe7fb5',1,'Tgstation.Server.Host.Configuration.SecurityConfiguration.Section()'],['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#aeed3d84cee92ab5e7488d5c5b52493c7',1,'Tgstation.Server.Host.Configuration.UpdatesConfiguration.Section()']]], + ['securestringlength_3972',['SecureStringLength',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#a893d5725e799a79d7a3dd172f098edb8',1,'Tgstation::Server::Host::Security::CryptographySuite']]], + ['securityconfiguration_3973',['securityConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a7a3a2caa72cb52375ab691e09c1d6870',1,'Tgstation::Server::Host::Security::TokenFactory']]], + ['semaphore_3974',['semaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a192e5a69ce9c2300f588cc65af3a64f2',1,'Tgstation.Server.Host.Components.Byond.ByondManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#ae6aa8519a6401fc95218f2de88080605',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a550982dbdc2ce226e878702a520bbe27',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.semaphore()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af64bb7e6efa9991a5a3a14993a3277e8',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.semaphore()']]], + ['semaphoreslim_3975',['semaphoreSlim',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#ada5764977cc200cc19bb38db0b0fe1e4',1,'Tgstation::Server::Client::ApiClient']]], + ['sendmessagecount_3976',['SendMessageCount',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a6c18ae3a8fda9fa9973b0a8a396328f4',1,'Tgstation::Server::Host::System::WindowsNetworkPromptReaper']]], + ['serializersettings_3977',['SerializerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a38c0e12f070e67fbdedfce3854c58d42',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['serilogcontexttemplate_3978',['SerilogContextTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_extensions_1_1_service_collection_extensions.html#a2c8521a096ca983ff3cfe7b6356406d8',1,'Tgstation::Server::Host::Extensions::ServiceCollectionExtensions']]], + ['servercontrol_3979',['serverControl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#a6b86256a68eff2c15b42badd8159a2f0',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.serverControl()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ac2ba10fddea5448f4c8c08f363a0e391',1,'Tgstation.Server.Host.Components.InstanceManager.serverControl()']]], + ['serverportprovider_3980',['serverPortProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a978034e4b8017f55b969b65a4949b4b6',1,'Tgstation.Server.Host.Components.InstanceFactory.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ad5b7e13dc94565671f962eb9fe62fd82',1,'Tgstation.Server.Host.Components.InstanceManager.serverPortProvider()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a14b84906ae2ddd580d5735ebf3ba9917',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.serverPortProvider()']]], + ['serverupdater_3981',['serverUpdater',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a860fa70ca4b87deb3f9e6f550d57dc72',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['sessioncontrollerfactory_3982',['sessionControllerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8322a848923985ee4e06d792dccb8643',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['sessionpersistor_3983',['sessionPersistor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a76a88605b050495c652cd06f2947e482',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['shellscriptextension_3984',['ShellScriptExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a979586ccac8fef0e0a10b9e2f5bfa339',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['standarderrortask_3985',['standardErrorTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a61e4f257f5cb5c9662edf9bcb6b059e1',1,'Tgstation::Server::Host::System::Process']]], + ['standardoutputtask_3986',['standardOutputTask',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a80e20c64fa56f3d3f39dad15af37028b',1,'Tgstation::Server::Host::System::Process']]], + ['started_3987',['started',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ae4128b124ad48c9a541cebfe31db34de',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['startupdmbprovider_3988',['startupDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#afa65470fdf88d190f47de568b3b9791e',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['staticignorefile_3989',['StaticIgnoreFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a3c23fe94867b94fa0833f4a789830fd1',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['status_3990',['status',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#af5c8949750c7c079faf8d438fde20c6c',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['subdirectory_3991',['subdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_resolving_i_o_manager.html#a02d7c98f480664056ad8dbe912003ae9',1,'Tgstation::Server::Host::IO::ResolvingIOManager']]], + ['symlinkfactory_3992',['symlinkFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#abe731c7399d16f3e98e3f9b996c348b1',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae9583eef7d68626e70fd30097b6db87c',1,'Tgstation.Server.Host.Components.InstanceFactory.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a5a52deb2c99db89b8e8dfb4bf1a5fd3f',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.symlinkFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a65ab5bf0783d6732eb6b1018f7a1983a',1,'Tgstation.Server.Host.Components.Watchdog.WindowsWatchdog.symlinkFactory()']]], + ['synchronizationlock_3993',['synchronizationLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a1ac2daf67a09f128290588a5181c88ba',1,'Tgstation.Server.Host.Components.Chat.ChatManager.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#ab3b8d2b85773e2d5e5f63aff3e8c27eb',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0bbceae0e217ef75fc3989124017856d',1,'Tgstation.Server.Host.Components.Session.SessionController.synchronizationLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aec64bbed8584f4daad12932098999e1b',1,'Tgstation.Server.Host.Jobs.JobManager.synchronizationLock()']]], + ['synchronizationsemaphore_3994',['synchronizationSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a7e6adcb942a9ff1bb7d11d738b98b6e4',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['synchronousiomanager_3995',['synchronousIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a2b14e009e117f22b206bbdf743712809',1,'Tgstation.Server.Host.Components.InstanceFactory.synchronousIOManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a29a360d050eedfecf24a5d7a75331f1d',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.synchronousIOManager()']]], + ['systemidentityfactory_3996',['systemIdentityFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a914147c0498a9b2482efe956486646fb',1,'Tgstation.Server.Host.Components.InstanceManager.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a82f9e135570d468d3a0cfbf645e2f0ae',1,'Tgstation.Server.Host.Controllers.HomeController.systemIdentityFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#adcb096909c25a05c74f2714128607c05',1,'Tgstation.Server.Host.Controllers.UserController.systemIdentityFactory()']]] ]; diff --git a/search/variables_13.html b/search/variables_13.html index c9305ee37c..ee7aee8e1a 100644 --- a/search/variables_13.html +++ b/search/variables_13.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_13.js b/search/variables_13.js index b9b620d6b9..787e086e74 100644 --- a/search/variables_13.js +++ b/search/variables_13.js @@ -1,25 +1,22 @@ var searchData= [ - ['task_3897',['task',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aff63ce12f5e3649ee2b85b3753dd4da7',1,'Tgstation.Server.Host.Jobs.JobHandler.task()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a2d1a4fc7b7fee56456ccebfb699ad8ee',1,'Tgstation.Server.Host.Security.IdentityCacheObject.task()']]], - ['tgssystemusername_3898',['TgsSystemUserName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a2e68345f5d52c8ba64dca5ec061d029d',1,'Tgstation::Server::Host::Models::User']]], - ['timeoutseconds_3899',['TimeoutSeconds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6b7d2a57ba6340f51694987653033677',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['timercts_3900',['timerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aab6ba11c7820ee9de39771aabbecdfcb',1,'Tgstation::Server::Host::Components::Instance']]], - ['timerlock_3901',['timerLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#af352e8a195c6b95d852ef8873390c3a0',1,'Tgstation::Server::Host::Components::Instance']]], - ['timertask_3902',['timerTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#abf825c028f20cd903db1362892dbd833',1,'Tgstation::Server::Host::Components::Instance']]], - ['token_3903',['Token',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a24771450ef1521a1c51fc0291e3c67a0',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7137670591717642aa084370ed40377e',1,'Tgstation.Server.Client.ServerClient.token()']]], - ['tokenclockskewminutes_3904',['TokenClockSkewMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#abbf0169740f418e6ffd4f8c783fdff50',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['tokenexpiryminutes_3905',['TokenExpiryMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a0cea7772b1f5107da73c23e821e76b43',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['tokenfactory_3906',['tokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afd05899e85f5a8a6b8c8e374364872f8',1,'Tgstation.Server.Host.Controllers.HomeController.tokenFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a93cb446fc8d8f84ea595abe709265398',1,'Tgstation.Server.Host.Core.Application.tokenFactory()']]], - ['tokenrefreshheaders_3907',['tokenRefreshHeaders',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a0091954fd17fc24bfbfe28df9ca2a518',1,'Tgstation::Server::Client::ApiClient']]], - ['tokensecurityschemeid_3908',['TokenSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a0fd6cdaa7f3d8b391f91b820bfea5d56',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], - ['tokensigningkeybyteamount_3909',['TokenSigningKeyByteAmount',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_token_factory.html#a1daafa97f229b3c342725fba60505b0f',1,'Tgstation::Server::Host::Security::TokenFactory']]], - ['tokensourceaccesslock_3910',['tokenSourceAccessLock',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ac4a3842c9ed0356d2c2199a80c7820f5',1,'Tgstation::Server::Host::System::ProgramShutdownTokenSource']]], - ['topicclientfactory_3911',['topicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b6080e35383ff3c7f8695eef39522d4',1,'Tgstation.Server.Host.Components.InstanceFactory.topicClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a09c977af69bd3d954c7dd4ca0b89e92e',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory()']]], - ['topicdata_3912',['TopicData',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#afd2a05fed50a107378c6bdcab313c309',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['tracking_3913',['Tracking',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4a27a5627052f0463fd42c7d3fd569a6',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['trackingcontexts_3914',['trackingContexts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3db93fb570555b5984466877551fe9f',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['trusteddmbfilename_3915',['TrustedDmbFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a5a5c4ccd1b87f212adcf975e798a8c9d',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['trustedfilepath_3916',['trustedFilePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae6c0ec40623ecca3dffca74160e7f114',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], - ['trustedfilesemaphore_3917',['trustedFileSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aab496f2d05bd3fa5ea18502639c64c29',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], - ['typemap_3918',['TypeMap',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0639f64451959386f79762cb8586b4f0',1,'Tgstation::Server::Api::Rights::RightsHelper']]] + ['task_3997',['task',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#aff63ce12f5e3649ee2b85b3753dd4da7',1,'Tgstation.Server.Host.Jobs.JobHandler.task()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#a2d1a4fc7b7fee56456ccebfb699ad8ee',1,'Tgstation.Server.Host.Security.IdentityCacheObject.task()']]], + ['tgssystemusername_3998',['TgsSystemUserName',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_user.html#a2e68345f5d52c8ba64dca5ec061d029d',1,'Tgstation::Server::Host::Models::User']]], + ['timeoutseconds_3999',['TimeoutSeconds',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6b7d2a57ba6340f51694987653033677',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['timercts_4000',['timerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#aab6ba11c7820ee9de39771aabbecdfcb',1,'Tgstation::Server::Host::Components::Instance']]], + ['timerlock_4001',['timerLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#af352e8a195c6b95d852ef8873390c3a0',1,'Tgstation::Server::Host::Components::Instance']]], + ['timertask_4002',['timerTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#abf825c028f20cd903db1362892dbd833',1,'Tgstation::Server::Host::Components::Instance']]], + ['token_4003',['Token',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a24771450ef1521a1c51fc0291e3c67a0',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.Token()'],['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7137670591717642aa084370ed40377e',1,'Tgstation.Server.Client.ServerClient.token()']]], + ['tokenfactory_4004',['tokenFactory',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#afd05899e85f5a8a6b8c8e374364872f8',1,'Tgstation.Server.Host.Controllers.HomeController.tokenFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#a93cb446fc8d8f84ea595abe709265398',1,'Tgstation.Server.Host.Core.Application.tokenFactory()']]], + ['tokenrefreshheaders_4005',['tokenRefreshHeaders',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a0091954fd17fc24bfbfe28df9ca2a518',1,'Tgstation::Server::Client::ApiClient']]], + ['tokensecurityschemeid_4006',['TokenSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#a0fd6cdaa7f3d8b391f91b820bfea5d56',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], + ['tokensourceaccesslock_4007',['tokenSourceAccessLock',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#ac4a3842c9ed0356d2c2199a80c7820f5',1,'Tgstation::Server::Host::System::ProgramShutdownTokenSource']]], + ['topicclientfactory_4008',['topicClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b6080e35383ff3c7f8695eef39522d4',1,'Tgstation.Server.Host.Components.InstanceFactory.topicClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a09c977af69bd3d954c7dd4ca0b89e92e',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.topicClientFactory()']]], + ['topicdata_4009',['TopicData',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#afd2a05fed50a107378c6bdcab313c309',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['tracking_4010',['Tracking',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4a27a5627052f0463fd42c7d3fd569a6',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['trackingcontexts_4011',['trackingContexts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ae3db93fb570555b5984466877551fe9f',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['trusteddmbfilename_4012',['TrustedDmbFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a5a5c4ccd1b87f212adcf975e798a8c9d',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['trustedfilepath_4013',['trustedFilePath',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#ae6c0ec40623ecca3dffca74160e7f114',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], + ['trustedfilesemaphore_4014',['trustedFileSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#aab496f2d05bd3fa5ea18502639c64c29',1,'Tgstation::Server::Host::Components::Byond::ByondExecutableLock']]], + ['typemap_4015',['TypeMap',['../class_tgstation_1_1_server_1_1_api_1_1_rights_1_1_rights_helper.html#a0639f64451959386f79762cb8586b4f0',1,'Tgstation::Server::Api::Rights::RightsHelper']]] ]; diff --git a/search/variables_14.html b/search/variables_14.html index 96dafd66c9..19c161c689 100644 --- a/search/variables_14.html +++ b/search/variables_14.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_14.js b/search/variables_14.js index bd451d2ff5..19c41caff0 100644 --- a/search/variables_14.js +++ b/search/variables_14.js @@ -1,15 +1,15 @@ var searchData= [ - ['uid_3919',['Uid',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a1c18aa1534a848f94ccc6d624179868b',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a5335d4436713401b2872d14752f1ba7b',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Uid()']]], - ['unknownreference_3920',['UnknownReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad02f759b45e4f20dfee55cfbf3f78baa',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['updatepath_3921',['updatePath',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a4e10711e91a3025a08ab98e9024e90ad',1,'Tgstation::Server::Host::Server']]], - ['updatesconfiguration_3922',['updatesConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afa09210575a84b625e234e7e0b19fa08',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['updating_3923',['updating',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a3a4cc72abe0c0a1e8caddeab4a210324',1,'Tgstation::Server::Host::Server']]], - ['url_3924',['Url',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7dcb54f317c73bd5a54f7856f0ef79fc',1,'Tgstation::Server::Client::ServerClient']]], - ['user_3925',['User',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a12784e8b5b7ac25c0684c9d4c7c59178',1,'Tgstation::Server::Api::Routes']]], - ['useragent_3926',['UserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a0562061dc87df56fe1e6875556f535b9',1,'Tgstation::Server::Api::ApiHeaders']]], - ['username_3927',['Username',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a278f605efe57bee3e5b4cb45ded040b2',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Username()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a7bbd8a3a43a6a2864b3348ae7f9438b9',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Username()']]], - ['userprincipal_3928',['userPrincipal',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#abf93d22395acd37f9c24aee156691f7a',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], - ['users_3929',['Users',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae38fd9989e134c1d3a621fa56f0d3691',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['userscollection_3930',['usersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6ce29a522553d19841a4dd07fcc1a545',1,'Tgstation::Server::Host::Database::DatabaseContext']]] + ['uid_4016',['Uid',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a1c18aa1534a848f94ccc6d624179868b',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Uid()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a5335d4436713401b2872d14752f1ba7b',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Uid()']]], + ['unknownreference_4017',['UnknownReference',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#ad02f759b45e4f20dfee55cfbf3f78baa',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['updatepath_4018',['updatePath',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a4e10711e91a3025a08ab98e9024e90ad',1,'Tgstation::Server::Host::Server']]], + ['updatesconfiguration_4019',['updatesConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#afa09210575a84b625e234e7e0b19fa08',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['updating_4020',['updating',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a3a4cc72abe0c0a1e8caddeab4a210324',1,'Tgstation::Server::Host::Server']]], + ['url_4021',['Url',['../class_tgstation_1_1_server_1_1_client_1_1_server_client.html#a7dcb54f317c73bd5a54f7856f0ef79fc',1,'Tgstation::Server::Client::ServerClient']]], + ['user_4022',['User',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a12784e8b5b7ac25c0684c9d4c7c59178',1,'Tgstation::Server::Api::Routes']]], + ['useragent_4023',['UserAgent',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a0562061dc87df56fe1e6875556f535b9',1,'Tgstation::Server::Api::ApiHeaders']]], + ['username_4024',['Username',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a278f605efe57bee3e5b4cb45ded040b2',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.Username()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a7bbd8a3a43a6a2864b3348ae7f9438b9',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.Username()']]], + ['userprincipal_4025',['userPrincipal',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#abf93d22395acd37f9c24aee156691f7a',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], + ['users_4026',['Users',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ae38fd9989e134c1d3a621fa56f0d3691',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['userscollection_4027',['usersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6ce29a522553d19841a4dd07fcc1a545',1,'Tgstation::Server::Host::Database::DatabaseContext']]] ]; diff --git a/search/variables_15.html b/search/variables_15.html index 4d6e79e733..66832579de 100644 --- a/search/variables_15.html +++ b/search/variables_15.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_15.js b/search/variables_15.js index 0e8c185af8..7eb50c95ad 100644 --- a/search/variables_15.js +++ b/search/variables_15.js @@ -1,7 +1,7 @@ var searchData= [ - ['valid_3931',['Valid',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#adcfa84ac7eac02c297c7560df41d24a2',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.Valid()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a01ca8188cc4ec75b5bd47a8253aca0da',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Valid()']]], - ['version_3932',['Version',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6741a096c8700041ac2995b55078302b',1,'Tgstation.Server.Api.ApiHeaders.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a2411d8e1e8a08732ccd83a76b14e0a43',1,'Tgstation.Server.Host.Components.Interop.DMApiConstants.Version()']]], - ['versionfilename_3933',['VersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#acb1d6dfeac5bf1c13e9857dcac03be46',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['versionprefix_3934',['VersionPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#aa4cd077258b22b53d6beaa0d78d70cb4',1,'Tgstation::Server::Host::System::AssemblyInformationProvider']]] + ['valid_4028',['Valid',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_discord_connection_string_builder.html#adcfa84ac7eac02c297c7560df41d24a2',1,'Tgstation.Server.Api.Models.DiscordConnectionStringBuilder.Valid()'],['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_irc_connection_string_builder.html#a01ca8188cc4ec75b5bd47a8253aca0da',1,'Tgstation.Server.Api.Models.IrcConnectionStringBuilder.Valid()']]], + ['version_4029',['Version',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a6741a096c8700041ac2995b55078302b',1,'Tgstation.Server.Api.ApiHeaders.Version()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a2411d8e1e8a08732ccd83a76b14e0a43',1,'Tgstation.Server.Host.Components.Interop.DMApiConstants.Version()']]], + ['versionfilename_4030',['VersionFileName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#acb1d6dfeac5bf1c13e9857dcac03be46',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['versionprefix_4031',['VersionPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_assembly_information_provider.html#aa4cd077258b22b53d6beaa0d78d70cb4',1,'Tgstation::Server::Host::System::AssemblyInformationProvider']]] ]; diff --git a/search/variables_16.html b/search/variables_16.html index f2e81ea505..2bcecd2831 100644 --- a/search/variables_16.html +++ b/search/variables_16.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_16.js b/search/variables_16.js index 1cd2818971..1d5e8a19ec 100644 --- a/search/variables_16.js +++ b/search/variables_16.js @@ -1,7 +1,7 @@ var searchData= [ - ['watchdog_3935',['watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a90292e2c1149c3d0e92a79d98968be44',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#aec51431b45d46994bbe24550640833d0',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a75363c8266024cf66cb86d1c44545bdc',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#aeabbea7c18623b8fb74c64a3b90aa453',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#af92b5fafe9cd48f3e8ad61f4354588c6',1,'Tgstation.Server.Host.Components.Events.EventConsumer.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a92f39be2b47f571fe439f78ccadd2acc',1,'Tgstation.Server.Host.Service.ServerService.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a8999db8a92b82b771cb43096c8909313',1,'Tgstation.Server.Host.Components.InstanceWrapper.Watchdog()']]], - ['watchdogfactory_3936',['watchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ab5bda9a81248be0498e668f2b148aa82',1,'Tgstation::Server::Host::Components::InstanceFactory']]], - ['watchdogpresent_3937',['WatchdogPresent',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a00ad28e8a1946d6dfd1ceda6d02be5b4',1,'Tgstation::Server::Host::Server']]], - ['watchdogtask_3938',['watchdogTask',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a89678cb55592e83aa074a24dc86dcd6f',1,'Tgstation::Server::Host::Service::ServerService']]] + ['watchdog_4032',['watchdog',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a90292e2c1149c3d0e92a79d98968be44',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#aec51431b45d46994bbe24550640833d0',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a75363c8266024cf66cb86d1c44545bdc',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#aeabbea7c18623b8fb74c64a3b90aa453',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#af92b5fafe9cd48f3e8ad61f4354588c6',1,'Tgstation.Server.Host.Components.Events.EventConsumer.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a92f39be2b47f571fe439f78ccadd2acc',1,'Tgstation.Server.Host.Service.ServerService.watchdog()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a8999db8a92b82b771cb43096c8909313',1,'Tgstation.Server.Host.Components.InstanceWrapper.Watchdog()']]], + ['watchdogfactory_4033',['watchdogFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ab5bda9a81248be0498e668f2b148aa82',1,'Tgstation::Server::Host::Components::InstanceFactory']]], + ['watchdogpresent_4034',['WatchdogPresent',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a00ad28e8a1946d6dfd1ceda6d02be5b4',1,'Tgstation::Server::Host::Server']]], + ['watchdogtask_4035',['watchdogTask',['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a89678cb55592e83aa074a24dc86dcd6f',1,'Tgstation::Server::Host::Service::ServerService']]] ]; diff --git a/search/variables_2.html b/search/variables_2.html index 00291e5940..c0fffa2e9c 100644 --- a/search/variables_2.html +++ b/search/variables_2.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_2.js b/search/variables_2.js index a37d72a873..62a0d5e871 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,51 +1,51 @@ var searchData= [ - ['cachedidentities_3616',['cachedIdentities',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#ab9206118af46526c3bb89c95c5197bd8',1,'Tgstation::Server::Host::Security::IdentityCache']]], - ['cachedirectoryname_3617',['CacheDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a4f8d03c61dfdd7c1a60c6b495288806f',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], - ['cancelkeycts_3618',['cancelKeyCts',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a10d46881a4846e87d58bac73d392d665',1,'Tgstation::Server::Host::IO::Console']]], - ['cancelkeypress_3619',['CancelKeyPress',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab866e78375ea43803c7d8a64b181e21c',1,'Tgstation::Server::Host::IO::Console']]], - ['cancellationtokensource_3620',['cancellationTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ac30004f8ba4f9497c9f81cf26c4c2d24',1,'Tgstation.Server.Host.Jobs.JobHandler.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#ac8422fda839cd16fd8b467bb4947f8a1',1,'Tgstation.Server.Host.Security.IdentityCacheObject.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a80bf6f84e712996ae1d8894ec96e9ba3',1,'Tgstation.Server.Host.Server.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a2b51b208174b00545d40d6cf58d82a6e',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a23cc7eb8e4b7ca1d16f8a3bbb220c8b8',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a4f65e767919ae007c07ef7b3b715b498',1,'Tgstation.Server.Host.Service.ServerService.cancellationTokenSource()']]], - ['cancreatesymlinks_3621',['canCreateSymlinks',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#afe60cf0ed06def30a229734840a69a33',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.canCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a9b80b72e3694f14852de2d3fdb252472',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#ae0e95b11dc35386e5a276bd9b24b3312',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.CanCreateSymlinks()']]], - ['cfgdirectoryname_3622',['CfgDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#adbe97e65b8edae12e2f41947ed94dfc1',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['channelidcounter_3623',['channelIdCounter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a9f8c4d78e74aa61eb4aaa13cc1a88bbf',1,'Tgstation.Server.Host.Components.Chat.ChatManager.channelIdCounter()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a3170ebdb4e8568868efd3b1c1764bf38',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.channelIdCounter()']]], - ['channelidmap_3624',['channelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a403b3ff6bccc4b1e3f7e9e8729f84908',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['channelsink_3625',['channelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a5b89c6d03b5b49c2444ae5e815a537a2',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], - ['chat_3626',['Chat',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6cf0d5e4d1f8ed76d2cf84a56392ed2d',1,'Tgstation.Server.Api.Routes.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a74598ceeefd01162e1eb45193fd6c760',1,'Tgstation.Server.Host.Components.InstanceWrapper.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a77bc03b5ce1a16453e6a4311c1aca57f',1,'Tgstation.Server.Host.Components.Session.SessionController.chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8aec2da2210588cce0c937b97ff94d46',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat()']]], - ['chatbots_3627',['ChatBots',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a9c47b161bd7cdb3b7bf2e6cf8ad7cbba',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['chatbotscollection_3628',['chatBotsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac6ec4fcf56661fc47e9d2abe9322924b',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['chatchannels_3629',['ChatChannels',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a251c974bd768cebdc7a1e6941e735c3a',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['chatchannelscollection_3630',['chatChannelsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa0c86a05a421da7e93e6a628d8332376',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['chatfactory_3631',['chatFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a86c6ee3938a05c7ce3adf413911345ce',1,'Tgstation::Server::Host::Components::InstanceFactory']]], - ['chathandler_3632',['chatHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ada23a21c30710b64e7c9ee85e82e32d4',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['chatmanager_3633',['chatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad8f8e86f9e52a3f5e027b9570c5f32df',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['chattrackingcontext_3634',['chatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a849ce62757e342b5ec34bccbd4a98f75',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['cleanupcts_3635',['cleanupCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#adc133e7ea90f5d87f12c0621959ded92',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['cleanuptask_3636',['cleanupTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#afcf8224ef94997af93339db4d69f34a3',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['client_3637',['client',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a059457d72470d29c3530d489adb91d1c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.client()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a01ba0df08b2b2139b417352c28cabc2f',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.client()']]], - ['codemodificationsheadfile_3638',['CodeModificationsHeadFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#aa146572ec12e2444819edb99be402a91',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['codemodificationssubdirectory_3639',['CodeModificationsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a7e19fd0432fd7b61f30a015a477eeb74',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['codemodificationstailfile_3640',['CodeModificationsTailFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac2b6e06f4a91a2f4fc5f8f93210ee941',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['combinedstringbuilder_3641',['combinedStringBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a2b6851fe998b0764f198a17f05c411b0',1,'Tgstation::Server::Host::System::Process']]], - ['commandfactory_3642',['commandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa6a9c74750f2d7681b3e2f2a2913d0b3',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['commands_3643',['commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a0430493b4192fa846e3bd01855bded49',1,'Tgstation.Server.Host.Components.Repository.Repository.commands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8216cd27859d7fffa1c3f2d22d76fc62',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.commands()']]], - ['commonmention_3644',['CommonMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0b5b0d03d129b21de29dc2c2bbf17edf',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['compilejob_3645',['CompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a53eeda8cf6068e5865575b8df220e44a',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a5f6e66519f87716705d220c627f8da',1,'Tgstation.Server.Host.Components.Session.SessionController.CompileJob()']]], - ['compilejobconsumer_3646',['compileJobConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab01d9cb0fcd270eea9ec47a4e0684f4a',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['compilejobs_3647',['CompileJobs',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#acba8ecba062c4f42b79e7e66dc0028b6',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['compilejobscollection_3648',['compileJobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac8e8b25dfc7e50721f457a5cdbe5f1c5',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['configuration_3649',['Configuration',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a8aaca6b84ee519e26c8351c2b5929c18',1,'Tgstation.Server.Api.Routes.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ad987739dcc836bd5861d4dd3c868515e',1,'Tgstation.Server.Host.Components.InstanceWrapper.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2fe7ecccab0b5b1be9fdda8cbf097d9b',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a50e81e8ba4fb2abd36df79dfc922b3d0',1,'Tgstation.Server.Host.Components.Events.EventConsumer.configuration()']]], - ['configurationfile_3650',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa983574bbb6d05042ad2f96d30ffa824',1,'Tgstation::Server::Api::Routes']]], - ['connected_3651',['Connected',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac2744da20824177724b971eb20a6d5a0',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa22564e0346747e2c00dfcab7a48141c',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connected()']]], - ['connectionsupdated_3652',['connectionsUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a179b0d01333a267410199e524601dc84',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['console_3653',['console',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aadeb44bb71d804e15c6a6bd0c3131bd7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['controllerdisposesemaphore_3654',['controllerDisposeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5f9cfb67111bbc5ec1d954e4ed4bf913',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['controlpanelconfiguration_3655',['controlPanelConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a81d7f216e77a45eed438ee3e88d0677c',1,'Tgstation::Server::Host::Controllers::HomeController']]], - ['credentialsprovider_3656',['credentialsProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afdb8ee82eed9e1b0251d71af2c3ff612',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['cryptographysuite_3657',['cryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae61c8c28bfce67853a5b1acbcd095533',1,'Tgstation.Server.Host.Components.InstanceFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a483ed37a018bd66106dbed87ce8adc13',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78651298906fc1500952310c49c96e06',1,'Tgstation.Server.Host.Controllers.HomeController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#aba1ed8b3befb54640af05c3694eeb278',1,'Tgstation.Server.Host.Controllers.UserController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a88f644df987dce53ffa2e26a763f5974',1,'Tgstation.Server.Host.Database.DatabaseSeeder.cryptographySuite()']]], - ['currentchatcallback_3658',['currentChatCallback',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa8260c1a7b05630b5411ded96c3648cd',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['currentconfigversion_3659',['CurrentConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a11cacc87b093badf8b45cc9fd858df54',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['currentdirectory_3660',['CurrentDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a984a32ee93a073036f63d543ad9a6cdd',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['currentdreammakeroutput_3661',['currentDreamMakerOutput',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0e3523b8ef4f0d5c93f108c0de792977',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['customcommandhandler_3662',['customCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a32ce1266bccc40aebf2f9c284ed6e69a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.customCommandHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a198bebe94c736431862c137cbb3d0ea8',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.customCommandHandler()']]], - ['customcommands_3663',['customCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a0dfced9917f1bf96b1b46f511e643709',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]] + ['cachedidentities_3705',['cachedIdentities',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#ab9206118af46526c3bb89c95c5197bd8',1,'Tgstation::Server::Host::Security::IdentityCache']]], + ['cachedirectoryname_3706',['CacheDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_installer_base.html#a4f8d03c61dfdd7c1a60c6b495288806f',1,'Tgstation::Server::Host::Components::Byond::ByondInstallerBase']]], + ['cancelkeycts_3707',['cancelKeyCts',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#a10d46881a4846e87d58bac73d392d665',1,'Tgstation::Server::Host::IO::Console']]], + ['cancelkeypress_3708',['CancelKeyPress',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab866e78375ea43803c7d8a64b181e21c',1,'Tgstation::Server::Host::IO::Console']]], + ['cancellationtokensource_3709',['cancellationTokenSource',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#ac30004f8ba4f9497c9f81cf26c4c2d24',1,'Tgstation.Server.Host.Jobs.JobHandler.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache_object.html#ac8422fda839cd16fd8b467bb4947f8a1',1,'Tgstation.Server.Host.Security.IdentityCacheObject.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a80bf6f84e712996ae1d8894ec96e9ba3',1,'Tgstation.Server.Host.Server.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_program_shutdown_token_source.html#a2b51b208174b00545d40d6cf58d82a6e',1,'Tgstation.Server.Host.System.ProgramShutdownTokenSource.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a23cc7eb8e4b7ca1d16f8a3bbb220c8b8',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.cancellationTokenSource()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a4f65e767919ae007c07ef7b3b715b498',1,'Tgstation.Server.Host.Service.ServerService.cancellationTokenSource()']]], + ['cancreatesymlinks_3710',['CanCreateSymlinks',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_posix_system_identity.html#a9b80b72e3694f14852de2d3fdb252472',1,'Tgstation.Server.Host.Security.PosixSystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#ae0e95b11dc35386e5a276bd9b24b3312',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.CanCreateSymlinks()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#afe60cf0ed06def30a229734840a69a33',1,'Tgstation.Server.Host.Security.WindowsSystemIdentity.canCreateSymlinks()']]], + ['cfgdirectoryname_3711',['CfgDirectoryName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#adbe97e65b8edae12e2f41947ed94dfc1',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['channelidcounter_3712',['channelIdCounter',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a9f8c4d78e74aa61eb4aaa13cc1a88bbf',1,'Tgstation.Server.Host.Components.Chat.ChatManager.channelIdCounter()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a3170ebdb4e8568868efd3b1c1764bf38',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.channelIdCounter()']]], + ['channelidmap_3713',['channelIdMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a403b3ff6bccc4b1e3f7e9e8729f84908',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['channelsink_3714',['channelSink',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a5b89c6d03b5b49c2444ae5e815a537a2',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]], + ['chat_3715',['chat',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a77bc03b5ce1a16453e6a4311c1aca57f',1,'Tgstation.Server.Host.Components.Session.SessionController.chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a8aec2da2210588cce0c937b97ff94d46',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.chat()'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6cf0d5e4d1f8ed76d2cf84a56392ed2d',1,'Tgstation.Server.Api.Routes.Chat()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a74598ceeefd01162e1eb45193fd6c760',1,'Tgstation.Server.Host.Components.InstanceWrapper.Chat()']]], + ['chatbots_3716',['ChatBots',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a9c47b161bd7cdb3b7bf2e6cf8ad7cbba',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['chatbotscollection_3717',['chatBotsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac6ec4fcf56661fc47e9d2abe9322924b',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['chatchannels_3718',['ChatChannels',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a251c974bd768cebdc7a1e6941e735c3a',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['chatchannelscollection_3719',['chatChannelsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#aa0c86a05a421da7e93e6a628d8332376',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['chatfactory_3720',['chatFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a86c6ee3938a05c7ce3adf413911345ce',1,'Tgstation::Server::Host::Components::InstanceFactory']]], + ['chathandler_3721',['chatHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#ada23a21c30710b64e7c9ee85e82e32d4',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['chatmanager_3722',['chatManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad8f8e86f9e52a3f5e027b9570c5f32df',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['chattrackingcontext_3723',['chatTrackingContext',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a849ce62757e342b5ec34bccbd4a98f75',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['cleanupcts_3724',['cleanupCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#adc133e7ea90f5d87f12c0621959ded92',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['cleanuptask_3725',['cleanupTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#afcf8224ef94997af93339db4d69f34a3',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['client_3726',['client',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a059457d72470d29c3530d489adb91d1c',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.client()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a01ba0df08b2b2139b417352c28cabc2f',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.client()']]], + ['codemodificationsheadfile_3727',['CodeModificationsHeadFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#aa146572ec12e2444819edb99be402a91',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['codemodificationssubdirectory_3728',['CodeModificationsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a7e19fd0432fd7b61f30a015a477eeb74',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['codemodificationstailfile_3729',['CodeModificationsTailFile',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ac2b6e06f4a91a2f4fc5f8f93210ee941',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['combinedstringbuilder_3730',['combinedStringBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a2b6851fe998b0764f198a17f05c411b0',1,'Tgstation::Server::Host::System::Process']]], + ['commandfactory_3731',['commandFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#aa6a9c74750f2d7681b3e2f2a2913d0b3',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['commands_3732',['commands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a0430493b4192fa846e3bd01855bded49',1,'Tgstation.Server.Host.Components.Repository.Repository.commands()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8216cd27859d7fffa1c3f2d22d76fc62',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.commands()']]], + ['commonmention_3733',['CommonMention',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0b5b0d03d129b21de29dc2c2bbf17edf',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['compilejob_3734',['CompileJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a53eeda8cf6068e5865575b8df220e44a',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.CompileJob()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a0a5f6e66519f87716705d220c627f8da',1,'Tgstation.Server.Host.Components.Session.SessionController.CompileJob()']]], + ['compilejobconsumer_3735',['compileJobConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ab01d9cb0fcd270eea9ec47a4e0684f4a',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['compilejobs_3736',['CompileJobs',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#acba8ecba062c4f42b79e7e66dc0028b6',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['compilejobscollection_3737',['compileJobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ac8e8b25dfc7e50721f457a5cdbe5f1c5',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['configuration_3738',['Configuration',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a8aaca6b84ee519e26c8351c2b5929c18',1,'Tgstation.Server.Api.Routes.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#ad987739dcc836bd5861d4dd3c868515e',1,'Tgstation.Server.Host.Components.InstanceWrapper.Configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a2fe7ecccab0b5b1be9fdda8cbf097d9b',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.configuration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_events_1_1_event_consumer.html#a50e81e8ba4fb2abd36df79dfc922b3d0',1,'Tgstation.Server.Host.Components.Events.EventConsumer.configuration()']]], + ['configurationfile_3739',['ConfigurationFile',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aa983574bbb6d05042ad2f96d30ffa824',1,'Tgstation::Server::Api::Routes']]], + ['connected_3740',['Connected',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#ac2744da20824177724b971eb20a6d5a0',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.Connected()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#aa22564e0346747e2c00dfcab7a48141c',1,'Tgstation.Server.Host.Components.Chat.Providers.IrcProvider.Connected()']]], + ['connectionsupdated_3741',['connectionsUpdated',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a179b0d01333a267410199e524601dc84',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['console_3742',['console',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aadeb44bb71d804e15c6a6bd0c3131bd7',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['controllerdisposesemaphore_3743',['controllerDisposeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5f9cfb67111bbc5ec1d954e4ed4bf913',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['controlpanelconfiguration_3744',['controlPanelConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a81d7f216e77a45eed438ee3e88d0677c',1,'Tgstation::Server::Host::Controllers::HomeController']]], + ['credentialsprovider_3745',['credentialsProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#afdb8ee82eed9e1b0251d71af2c3ff612',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['cryptographysuite_3746',['cryptographySuite',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#ae61c8c28bfce67853a5b1acbcd095533',1,'Tgstation.Server.Host.Components.InstanceFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a483ed37a018bd66106dbed87ce8adc13',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78651298906fc1500952310c49c96e06',1,'Tgstation.Server.Host.Controllers.HomeController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#aba1ed8b3befb54640af05c3694eeb278',1,'Tgstation.Server.Host.Controllers.UserController.cryptographySuite()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a88f644df987dce53ffa2e26a763f5974',1,'Tgstation.Server.Host.Database.DatabaseSeeder.cryptographySuite()']]], + ['currentchatcallback_3747',['currentChatCallback',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa8260c1a7b05630b5411ded96c3648cd',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['currentconfigversion_3748',['CurrentConfigVersion',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a11cacc87b093badf8b45cc9fd858df54',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['currentdirectory_3749',['CurrentDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a984a32ee93a073036f63d543ad9a6cdd',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['currentdreammakeroutput_3750',['currentDreamMakerOutput',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a0e3523b8ef4f0d5c93f108c0de792977',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['customcommandhandler_3751',['customCommandHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a32ce1266bccc40aebf2f9c284ed6e69a',1,'Tgstation.Server.Host.Components.Chat.ChatManager.customCommandHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a198bebe94c736431862c137cbb3d0ea8',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.customCommandHandler()']]], + ['customcommands_3752',['customCommands',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a0dfced9917f1bf96b1b46f511e643709',1,'Tgstation::Server::Host::Components::Chat::ChatTrackingContext']]] ]; diff --git a/search/variables_3.html b/search/variables_3.html index 0e5389be76..593ffe2505 100644 --- a/search/variables_3.html +++ b/search/variables_3.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_3.js b/search/variables_3.js index 0d769bed76..a2f6f826f3 100644 --- a/search/variables_3.js +++ b/search/variables_3.js @@ -1,57 +1,60 @@ var searchData= [ - ['databaseconfiguration_3664',['DatabaseConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3c7b43c9d60c8b6cb97c7af1926eec28',1,'Tgstation.Server.Host.Setup.PostSetupServices.DatabaseConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a6c8e101a216a05b59a646260218b2467',1,'Tgstation.Server.Host.Database.DatabaseSeeder.databaseConfiguration()']]], - ['databaseconfigurationoptions_3665',['databaseConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#acd44c110eaede1bb441cd542a00200a6',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], - ['databasecontext_3666',['databaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a4f3486b694a62f17ead5bfe84d20d8e0',1,'Tgstation::Server::Host::Security::AuthenticationContextFactory']]], - ['databasecontextfactory_3667',['databaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#abbd5571bc7db746a0f12add2f39e67de',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a092a4f6583f2101fbef0ec6caf5c41a0',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ad0b797ad2e348db517f20393acacdb65',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b570e9e9d997c7b93842a93f1a362d6',1,'Tgstation.Server.Host.Components.InstanceFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ab5c8e78bdae6eb6eb2ed289563c639cc',1,'Tgstation.Server.Host.Components.InstanceManager.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a2227915dc11711ab8eac49598f9bda08',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a3758020992c3c8e37a25439bc067e365',1,'Tgstation.Server.Host.Jobs.JobManager.databaseContextFactory()']]], - ['databaselogger_3668',['databaseLogger',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a2bc9f345004fe0cd972d9275d771b948',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], - ['databaseseeder_3669',['databaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#af3473c586a7c835b7708d18354f4d260',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['dbconnectionfactory_3670',['dbConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa4ea86a1328b845cac9d0fbeb15167fb',1,'Tgstation::Server::Host::Setup::SetupWizard']]], - ['dbset_3671',['dbSet',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9ded40bd536adb9602f0c3733409eef3',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['defaultadminpassword_3672',['DefaultAdminPassword',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a6d73f12df63e1cea9b3d011da9d9a14a',1,'Tgstation::Server::Api::Models::User']]], - ['defaultapiport_3673',['DefaultApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a34554b3c3ec4b265081f7af8b8d99715',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultbuffersize_3674',['DefaultBufferSize',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8d302b2be6862b23b9a18a9412fc7fc9',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], - ['defaultbyondtopictimeout_3675',['DefaultByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a9f825b6fe4bb53fd2c8317b271b57157',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultchannellimit_3676',['DefaultChannelLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a9f693077cc6b7bca387dd46a08014c90',1,'Tgstation::Server::Host::Models::ChatBot']]], - ['defaultchatbotlimit_3677',['DefaultChatBotLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6e95c489b01ba0ca06a8a803e2df9b9f',1,'Tgstation::Server::Host::Models::Instance']]], - ['defaultcommitteremail_3678',['DefaultCommitterEmail',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1e8406665338bf41e4517f0680336bad',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['defaultcommittername_3679',['DefaultCommitterName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#acfbf572f6b740f5df77fcf1af075b622',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['defaultgithubrepositoryid_3680',['DefaultGitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f4f5cb3301033fd4dfebde47baf9c5a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['defaultgittagprefix_3681',['DefaultGitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#ae004e4379b32596669db26f1bdffef84',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['defaultinstancelimit_3682',['DefaultInstanceLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#aa4150fdf328588da7e2fdda649311d1a',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultloglevel_3683',['DefaultLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a20cad976d13ebead44836c2c73546eb1',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['defaultmicrosoftloglevel_3684',['DefaultMicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a2ed7c15d2389baf4cb4aea475a33ee43',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], - ['defaultminimumpasswordlength_3685',['DefaultMinimumPasswordLength',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a2f4d695a6363f6d92a8adb8f7860e809',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultrestarttimeout_3686',['DefaultRestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a8aada49cbc40077cf605dcb0ec00d259',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['defaultupdatepackageassetname_3687',['DefaultUpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2414ab0c1cbd67d474c6484d065ec90a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], - ['defaultuserlimit_3688',['DefaultUserLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a72a9ee77858ff9b03b66ffe774eb0931',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], - ['deploying_3689',['deploying',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a95745246c0a960bdec751c0e7f9559c8',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['deploymentlock_3690',['deploymentLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae7ed5b30d84ba3a1f88262ccd524f280',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['diagnostics_3691',['Diagnostics',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a56e9bf1c7567f8f6ad1bf830eb4b158e',1,'Tgstation::Server::Api::Routes']]], - ['diagnosticsiomanager_3692',['diagnosticsIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a8becb1115fe1c09c84534c798466e03f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['differentcoreexceptionmessage_3693',['DifferentCoreExceptionMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#acf180df4f51944cbf125d2eed9533e5d',1,'Tgstation::Server::Host::Components::Instance']]], - ['directory_3694',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a449212c5178f0b1a56691b4c6ad2a810',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a1fb8f30e13fa743332cc5512eebb1684',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Directory()']]], - ['directoryappend_3695',['directoryAppend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a4f911fc1337526e7842efd346990d716',1,'Tgstation::Server::Host::Components::Deployment::DmbProvider']]], - ['directoryhardlinked_3696',['directoryHardLinked',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a9fb10900a2c61303f79d21e777d94836',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdog']]], - ['disconnecting_3697',['disconnecting',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a86767ec9cfd43611d9d5e00cad58197e',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['disposed_3698',['disposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a6ba869dae354db235f8518f7283a531c',1,'Tgstation.Server.Host.Components.InstanceManager.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a52f8570d6fbc195b3afaf8d402189503',1,'Tgstation.Server.Host.Components.Repository.Repository.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27e1964bd0549273b53af54a37a52891',1,'Tgstation.Server.Host.Components.Session.SessionController.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5c39f385b06058f4699503b492d2b743',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#aa3af81c7e35c2832f0f932a346a98d8a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab6d4a4d9769abaa77b2955d28ea66b1f',1,'Tgstation.Server.Host.IO.Console.disposed()']]], - ['disposelock_3699',['disposeLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a12d6d4fe1bf5c033acfc95ffeb8bde7c',1,'Tgstation.Server.Host.Components.InstanceWrapper.disposeLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#afe091465f9c26cf65beaa4b49edc3a1a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposeLock()']]], - ['dmapiavailable_3700',['DMApiAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ca9a908ef86e5a5296826095720a163',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['dmapiparameters_3701',['DMApiParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a46d01e2aea4190fdb683db240c398cf6',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['dmbavailable_3702',['DmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6072027691530ddea3454b05d1d6e322',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['dmbextension_3703',['DmbExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad68af0912872eba94733cb322b08ecb3',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['dmbfactory_3704',['dmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4c3746b0143784d232119fdb418263ba',1,'Tgstation.Server.Host.Components.Instance.dmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a732863bb9fd35fece0bb2c926b55f8e9',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.dmbFactory()']]], - ['dmbname_3705',['DmbName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad19fc1b2afa0669c86ba252638d8b9f9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a0f016a86340749d5ca335c0ebc5d39a7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.DmbName()']]], - ['dmeextension_3706',['DmeExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a373e2cd0c56f6826367b9aebf150040f',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], - ['downgradeversion_3707',['downgradeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a909262eddcaca553541c052dbf98b325',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['dreamdaemon_3708',['DreamDaemon',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a42831355d8d0cd578680f7f8f3f1124a',1,'Tgstation::Server::Api::Routes']]], - ['dreamdaemonexecutablename_3709',['DreamDaemonExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a0e3bcbe1b14ed825ea567a6f859884f7',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['dreamdaemonname_3710',['DreamDaemonName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#aefaefa1cca8328a36996f286b42d310a',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamDaemonName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a3a29cd2508c8826713fc05095c87ee28',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamDaemonName()']]], - ['dreamdaemonsettings_3711',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab13ccb4c344a982d5af87d5b3f51bd79',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['dreamdaemonsettingscollection_3712',['dreamDaemonSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8b4bad8f9cad725b02e88b98fef96e7a',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['dreammaker_3713',['DreamMaker',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#acc5a1421208a8e29080110f54b364ba8',1,'Tgstation.Server.Api.Routes.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a0392aae240c5fe54f476cff7c6079581',1,'Tgstation.Server.Host.Components.InstanceWrapper.DreamMaker()']]], - ['dreammakerexecutablename_3714',['DreamMakerExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a1563b9bcd5a68d5d2528475956e7d9e8',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], - ['dreammakername_3715',['DreamMakerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a402cdbabab1493b5d26781fa78151e87',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamMakerName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a86f71ff5e6ef8277a1867e81b8f5e42d',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamMakerName()']]], - ['dreammakersettings_3716',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a670cf85f3bbc465d5c1f89cdef983f33',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['dreammakersettingscollection_3717',['dreamMakerSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a333d57bfa4adf560b11b6df69c110be9',1,'Tgstation::Server::Host::Database::DatabaseContext']]] + ['databaseconfiguration_3753',['databaseConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a6c8e101a216a05b59a646260218b2467',1,'Tgstation.Server.Host.Database.DatabaseSeeder.databaseConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3c7b43c9d60c8b6cb97c7af1926eec28',1,'Tgstation.Server.Host.Setup.PostSetupServices.DatabaseConfiguration()']]], + ['databaseconfigurationoptions_3754',['databaseConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#acd44c110eaede1bb441cd542a00200a6',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], + ['databasecontext_3755',['databaseContext',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a4f3486b694a62f17ead5bfe84d20d8e0',1,'Tgstation::Server::Host::Security::AuthenticationContextFactory']]], + ['databasecontextfactory_3756',['databaseContextFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#abbd5571bc7db746a0f12add2f39e67de',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a092a4f6583f2101fbef0ec6caf5c41a0',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#ad0b797ad2e348db517f20393acacdb65',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#ab9a4d8a174effbee50c7ea653cd65724',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a1b570e9e9d997c7b93842a93f1a362d6',1,'Tgstation.Server.Host.Components.InstanceFactory.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ab5c8e78bdae6eb6eb2ed289563c639cc',1,'Tgstation.Server.Host.Components.InstanceManager.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a2227915dc11711ab8eac49598f9bda08',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.databaseContextFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#a3758020992c3c8e37a25439bc067e365',1,'Tgstation.Server.Host.Jobs.JobManager.databaseContextFactory()']]], + ['databaselogger_3757',['databaseLogger',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a2bc9f345004fe0cd972d9275d771b948',1,'Tgstation::Server::Host::Database::DatabaseSeeder']]], + ['databaseseeder_3758',['databaseSeeder',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#af3473c586a7c835b7708d18354f4d260',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['dbconnectionfactory_3759',['dbConnectionFactory',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa4ea86a1328b845cac9d0fbeb15167fb',1,'Tgstation::Server::Host::Setup::SetupWizard']]], + ['dbset_3760',['dbSet',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a9ded40bd536adb9602f0c3733409eef3',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['defaultadminpassword_3761',['DefaultAdminPassword',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_user.html#a6d73f12df63e1cea9b3d011da9d9a14a',1,'Tgstation::Server::Api::Models::User']]], + ['defaultapiport_3762',['DefaultApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a34554b3c3ec4b265081f7af8b8d99715',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultbuffersize_3763',['DefaultBufferSize',['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_default_i_o_manager.html#a8d302b2be6862b23b9a18a9412fc7fc9',1,'Tgstation::Server::Host::IO::DefaultIOManager']]], + ['defaultbyondtopictimeout_3764',['DefaultByondTopicTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a9f825b6fe4bb53fd2c8317b271b57157',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultchannellimit_3765',['DefaultChannelLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_chat_bot.html#a9f693077cc6b7bca387dd46a08014c90',1,'Tgstation::Server::Host::Models::ChatBot']]], + ['defaultchatbotlimit_3766',['DefaultChatBotLimit',['../class_tgstation_1_1_server_1_1_host_1_1_models_1_1_instance.html#a6e95c489b01ba0ca06a8a803e2df9b9f',1,'Tgstation::Server::Host::Models::Instance']]], + ['defaultcommitteremail_3767',['DefaultCommitterEmail',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a1e8406665338bf41e4517f0680336bad',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['defaultcommittername_3768',['DefaultCommitterName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#acfbf572f6b740f5df77fcf1af075b622',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['defaultgithubrepositoryid_3769',['DefaultGitHubRepositoryId',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a7f4f5cb3301033fd4dfebde47baf9c5a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['defaultgittagprefix_3770',['DefaultGitTagPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#ae004e4379b32596669db26f1bdffef84',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['defaultinstancelimit_3771',['DefaultInstanceLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#aa4150fdf328588da7e2fdda649311d1a',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultloglevel_3772',['DefaultLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a20cad976d13ebead44836c2c73546eb1',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['defaultmicrosoftloglevel_3773',['DefaultMicrosoftLogLevel',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_file_logging_configuration.html#a2ed7c15d2389baf4cb4aea475a33ee43',1,'Tgstation::Server::Host::Configuration::FileLoggingConfiguration']]], + ['defaultminimumpasswordlength_3774',['DefaultMinimumPasswordLength',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a2f4d695a6363f6d92a8adb8f7860e809',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaultrestarttimeout_3775',['DefaultRestartTimeout',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a8aada49cbc40077cf605dcb0ec00d259',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['defaulttokenclockskewminutes_3776',['DefaultTokenClockSkewMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#aca00b4c5b85393830515491a8ec92144',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['defaulttokenexpiryminutes_3777',['DefaultTokenExpiryMinutes',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#af332c0d93d7388e590f0a61be193211c',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['defaulttokensigningkeybyteamount_3778',['DefaultTokenSigningKeyByteAmount',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_security_configuration.html#a643425150df8884182f4c165b14f27c0',1,'Tgstation::Server::Host::Configuration::SecurityConfiguration']]], + ['defaultupdatepackageassetname_3779',['DefaultUpdatePackageAssetName',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_updates_configuration.html#a2414ab0c1cbd67d474c6484d065ec90a',1,'Tgstation::Server::Host::Configuration::UpdatesConfiguration']]], + ['defaultuserlimit_3780',['DefaultUserLimit',['../class_tgstation_1_1_server_1_1_host_1_1_configuration_1_1_general_configuration.html#a72a9ee77858ff9b03b66ffe774eb0931',1,'Tgstation::Server::Host::Configuration::GeneralConfiguration']]], + ['deploying_3781',['deploying',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a95745246c0a960bdec751c0e7f9559c8',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['deploymentlock_3782',['deploymentLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ae7ed5b30d84ba3a1f88262ccd524f280',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['diagnostics_3783',['Diagnostics',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a56e9bf1c7567f8f6ad1bf830eb4b158e',1,'Tgstation::Server::Api::Routes']]], + ['diagnosticsiomanager_3784',['diagnosticsIOManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a8becb1115fe1c09c84534c798466e03f',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['differentcoreexceptionmessage_3785',['DifferentCoreExceptionMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#acf180df4f51944cbf125d2eed9533e5d',1,'Tgstation::Server::Host::Components::Instance']]], + ['directory_3786',['Directory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a449212c5178f0b1a56691b4c6ad2a810',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.Directory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a1fb8f30e13fa743332cc5512eebb1684',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.Directory()']]], + ['directoryappend_3787',['directoryAppend',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a4f911fc1337526e7842efd346990d716',1,'Tgstation::Server::Host::Components::Deployment::DmbProvider']]], + ['directoryhardlinked_3788',['directoryHardLinked',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_posix_watchdog.html#a9fb10900a2c61303f79d21e777d94836',1,'Tgstation::Server::Host::Components::Watchdog::PosixWatchdog']]], + ['disconnecting_3789',['disconnecting',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a86767ec9cfd43611d9d5e00cad58197e',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['disposed_3790',['disposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a6ba869dae354db235f8518f7283a531c',1,'Tgstation.Server.Host.Components.InstanceManager.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a52f8570d6fbc195b3afaf8d402189503',1,'Tgstation.Server.Host.Components.Repository.Repository.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a27e1964bd0549273b53af54a37a52891',1,'Tgstation.Server.Host.Components.Session.SessionController.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5c39f385b06058f4699503b492d2b743',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#aa3af81c7e35c2832f0f932a346a98d8a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposed()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_console.html#ab6d4a4d9769abaa77b2955d28ea66b1f',1,'Tgstation.Server.Host.IO.Console.disposed()']]], + ['disposelock_3791',['disposeLock',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a12d6d4fe1bf5c033acfc95ffeb8bde7c',1,'Tgstation.Server.Host.Components.InstanceWrapper.disposeLock()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#afe091465f9c26cf65beaa4b49edc3a1a',1,'Tgstation.Server.Host.Core.SemaphoreSlimContext.disposeLock()']]], + ['dmapiavailable_3792',['DMApiAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ca9a908ef86e5a5296826095720a163',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['dmapiparameters_3793',['DMApiParameters',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a46d01e2aea4190fdb683db240c398cf6',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['dmbavailable_3794',['DmbAvailable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a6072027691530ddea3454b05d1d6e322',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['dmbextension_3795',['DmbExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ad68af0912872eba94733cb322b08ecb3',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['dmbfactory_3796',['dmbFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a4c3746b0143784d232119fdb418263ba',1,'Tgstation.Server.Host.Components.Instance.dmbFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a732863bb9fd35fece0bb2c926b55f8e9',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.dmbFactory()']]], + ['dmbname_3797',['DmbName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ad19fc1b2afa0669c86ba252638d8b9f9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.DmbName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#a0f016a86340749d5ca335c0ebc5d39a7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.DmbName()']]], + ['dmeextension_3798',['DmeExtension',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a373e2cd0c56f6826367b9aebf150040f',1,'Tgstation::Server::Host::Components::Deployment::DreamMaker']]], + ['downgradeversion_3799',['downgradeVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a909262eddcaca553541c052dbf98b325',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['dreamdaemon_3800',['DreamDaemon',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a42831355d8d0cd578680f7f8f3f1124a',1,'Tgstation::Server::Api::Routes']]], + ['dreamdaemonexecutablename_3801',['DreamDaemonExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a0e3bcbe1b14ed825ea567a6f859884f7',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['dreamdaemonname_3802',['DreamDaemonName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#aefaefa1cca8328a36996f286b42d310a',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamDaemonName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a3a29cd2508c8826713fc05095c87ee28',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamDaemonName()']]], + ['dreamdaemonsettings_3803',['DreamDaemonSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#ab13ccb4c344a982d5af87d5b3f51bd79',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['dreamdaemonsettingscollection_3804',['dreamDaemonSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8b4bad8f9cad725b02e88b98fef96e7a',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['dreammaker_3805',['DreamMaker',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#acc5a1421208a8e29080110f54b364ba8',1,'Tgstation.Server.Api.Routes.DreamMaker()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a0392aae240c5fe54f476cff7c6079581',1,'Tgstation.Server.Host.Components.InstanceWrapper.DreamMaker()']]], + ['dreammakerexecutablename_3806',['DreamMakerExecutableName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a1563b9bcd5a68d5d2528475956e7d9e8',1,'Tgstation::Server::Host::Components::Byond::PosixByondInstaller']]], + ['dreammakername_3807',['DreamMakerName',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#a402cdbabab1493b5d26781fa78151e87',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.DreamMakerName()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a86f71ff5e6ef8277a1867e81b8f5e42d',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.DreamMakerName()']]], + ['dreammakersettings_3808',['DreamMakerSettings',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a670cf85f3bbc465d5c1f89cdef983f33',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['dreammakersettingscollection_3809',['dreamMakerSettingsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a333d57bfa4adf560b11b6df69c110be9',1,'Tgstation::Server::Host::Database::DatabaseContext']]] ]; diff --git a/search/variables_4.html b/search/variables_4.html index 789a86b74c..d6ca403b2e 100644 --- a/search/variables_4.html +++ b/search/variables_4.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_4.js b/search/variables_4.js index e9fc8e9112..478bdf2f90 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['elementtype_3718',['ElementType',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#af1bfffe1d81ce602ed10b17359361cff',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['enumtype_3719',['enumType',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a0c48471ab4bf2fb0959307c17de7c35b',1,'Tgstation::Server::Host::Core::OpenApiEnumVarNamesExtension']]], - ['eventconsumer_3720',['eventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a089219b6d371df8777befb66d5ca9ff7',1,'Tgstation.Server.Host.Components.Byond.ByondManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#abfcbd4e2f809faa445f7ea56fe4e5f0e',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a16093d1600746a3ab9c232461c5d7da6',1,'Tgstation.Server.Host.Components.Instance.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aeee0875d15975270e6f16417f78423a6',1,'Tgstation.Server.Host.Components.Repository.Repository.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad06470fddc597f80d4cef6b96c30b3e0',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5768c37124d54e80c66dc63d28d0dea4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.eventConsumer()']]], - ['eventscriptssubdirectory_3721',['EventScriptsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af5dbdc7fa9d0999905d214a98c4604ee',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['eventtypescriptfilenamemap_3722',['EventTypeScriptFileNameMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a595152ecd2fd978f124506abce9250b3',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['expression_3723',['Expression',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a4d6cac39c1f26701c9dddeaa880efdc6',1,'Tgstation::Server::Host::Database::DatabaseCollection']]] + ['elementtype_3810',['ElementType',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#af1bfffe1d81ce602ed10b17359361cff',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['enumtype_3811',['enumType',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_open_api_enum_var_names_extension.html#a0c48471ab4bf2fb0959307c17de7c35b',1,'Tgstation::Server::Host::Core::OpenApiEnumVarNamesExtension']]], + ['eventconsumer_3812',['eventConsumer',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a089219b6d371df8777befb66d5ca9ff7',1,'Tgstation.Server.Host.Components.Byond.ByondManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#abfcbd4e2f809faa445f7ea56fe4e5f0e',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a16093d1600746a3ab9c232461c5d7da6',1,'Tgstation.Server.Host.Components.Instance.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aeee0875d15975270e6f16417f78423a6',1,'Tgstation.Server.Host.Components.Repository.Repository.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ad06470fddc597f80d4cef6b96c30b3e0',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.eventConsumer()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a5768c37124d54e80c66dc63d28d0dea4',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.eventConsumer()']]], + ['eventscriptssubdirectory_3813',['EventScriptsSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#af5dbdc7fa9d0999905d214a98c4604ee',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['eventtypescriptfilenamemap_3814',['EventTypeScriptFileNameMap',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a595152ecd2fd978f124506abce9250b3',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['expression_3815',['Expression',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a4d6cac39c1f26701c9dddeaa880efdc6',1,'Tgstation::Server::Host::Database::DatabaseCollection']]] ]; diff --git a/search/variables_5.html b/search/variables_5.html index c7873eb912..903006df3a 100644 --- a/search/variables_5.html +++ b/search/variables_5.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_5.js b/search/variables_5.js index fe3a111a77..975660bea5 100644 --- a/search/variables_5.js +++ b/search/variables_5.js @@ -1,6 +1,6 @@ var searchData= [ - ['file_3724',['File',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6e67fe387a01c4d8e686734ad936f8b0',1,'Tgstation::Server::Api::Routes']]], - ['fileloggingconfiguration_3725',['FileLoggingConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a4be1377bd389e012f4a1ce6251c5bc8b',1,'Tgstation.Server.Host.Setup.PostSetupServices.FileLoggingConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a3a7e9c7e19c93ccfac6f3cf1df6ddcfc',1,'Tgstation.Server.Host.Controllers.AdministrationController.fileLoggingConfiguration()']]], - ['fileloggingconfigurationoptions_3726',['fileLoggingConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a7a7c03faa8541f6a8d2a54d62542799c',1,'Tgstation::Server::Host::Setup::PostSetupServices']]] + ['file_3816',['File',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a6e67fe387a01c4d8e686734ad936f8b0',1,'Tgstation::Server::Api::Routes']]], + ['fileloggingconfiguration_3817',['fileLoggingConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a3a7e9c7e19c93ccfac6f3cf1df6ddcfc',1,'Tgstation.Server.Host.Controllers.AdministrationController.fileLoggingConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a4be1377bd389e012f4a1ce6251c5bc8b',1,'Tgstation.Server.Host.Setup.PostSetupServices.FileLoggingConfiguration()']]], + ['fileloggingconfigurationoptions_3818',['fileLoggingConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a7a7c03faa8541f6a8d2a54d62542799c',1,'Tgstation::Server::Host::Setup::PostSetupServices']]] ]; diff --git a/search/variables_6.html b/search/variables_6.html index a5885889bc..7aee85be5e 100644 --- a/search/variables_6.html +++ b/search/variables_6.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_6.js b/search/variables_6.js index abb9239c02..ee4b650080 100644 --- a/search/variables_6.js +++ b/search/variables_6.js @@ -1,9 +1,10 @@ var searchData= [ - ['gamestaticfilessubdirectory_3727',['GameStaticFilesSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae8e07adce00ed418cb29954182699623',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], - ['generalconfiguration_3728',['generalConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a861b5a7e4e45a84ee5eddb2279f9eacf',1,'Tgstation.Server.Host.Components.Instance.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aa06616bc07291790c57bea22bd90a48d',1,'Tgstation.Server.Host.Components.InstanceFactory.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa2d14e2052d1ad81104ec0e5afa218e',1,'Tgstation.Server.Host.Components.InstanceManager.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#adb0b189a10ec43510b9f10cff91106fd',1,'Tgstation.Server.Host.Controllers.AdministrationController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78f4994c9c4f2cc58d0a6d227e0195a9',1,'Tgstation.Server.Host.Controllers.HomeController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a4f60f72c082a222a31383dbfceb755a6',1,'Tgstation.Server.Host.Controllers.InstanceController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#abe159da9c5fbc8eba3c3feff488988a0',1,'Tgstation.Server.Host.Controllers.RepositoryController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a79e1198432e7e557c8d72b3adf71bbf1',1,'Tgstation.Server.Host.Controllers.UserController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a373bfe28d1a88706c72e9f64e7756843',1,'Tgstation.Server.Host.Core.ServerPortProivder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a51341ea00d7cfc1eead8b52235e76257',1,'Tgstation.Server.Host.Database.DatabaseSeeder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a2823acb68609f9953788b1460ca8cdd3',1,'Tgstation.Server.Host.Server.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a47f6e49529ffb5b7760e1a5713f590e4',1,'Tgstation.Server.Host.Setup.SetupWizard.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a454fd5fdcdd712c84d205389197cb33a',1,'Tgstation.Server.Host.Setup.PostSetupServices.GeneralConfiguration()']]], - ['generalconfigurationoptions_3729',['generalConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3ce96cf3d3ee5a94ef82ee90efcd5f07',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], - ['githubclientfactory_3730',['gitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa837a722f9326dea2b1f63d6a2537bb7',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab75fda1677febc0778388f201fb737ef',1,'Tgstation.Server.Host.Components.Instance.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af9e2105dfde05caa1e5a14f8c3141591',1,'Tgstation.Server.Host.Components.InstanceFactory.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a40d72314455caeb1d6b72fa047ea18a4',1,'Tgstation.Server.Host.Controllers.AdministrationController.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a646263811f3cf4b618c569685a15c90c',1,'Tgstation.Server.Host.Controllers.RepositoryController.gitHubClientFactory()']]], - ['githuburl_3731',['GitHubUrl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a72e4dafe281ae05f52e1dbcf37ab71',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['gracefulrebootrequired_3732',['gracefulRebootRequired',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae39ec6910d118b7bd11953610daf56dc',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]] + ['gamestaticfilessubdirectory_3819',['GameStaticFilesSubdirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ae8e07adce00ed418cb29954182699623',1,'Tgstation::Server::Host::Components::StaticFiles::Configuration']]], + ['generalconfiguration_3820',['generalConfiguration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a861b5a7e4e45a84ee5eddb2279f9eacf',1,'Tgstation.Server.Host.Components.Instance.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aa06616bc07291790c57bea22bd90a48d',1,'Tgstation.Server.Host.Components.InstanceFactory.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#aaa2d14e2052d1ad81104ec0e5afa218e',1,'Tgstation.Server.Host.Components.InstanceManager.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#adb0b189a10ec43510b9f10cff91106fd',1,'Tgstation.Server.Host.Controllers.AdministrationController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a78f4994c9c4f2cc58d0a6d227e0195a9',1,'Tgstation.Server.Host.Controllers.HomeController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a4f60f72c082a222a31383dbfceb755a6',1,'Tgstation.Server.Host.Controllers.InstanceController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#abe159da9c5fbc8eba3c3feff488988a0',1,'Tgstation.Server.Host.Controllers.RepositoryController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_user_controller.html#a79e1198432e7e557c8d72b3adf71bbf1',1,'Tgstation.Server.Host.Controllers.UserController.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a373bfe28d1a88706c72e9f64e7756843',1,'Tgstation.Server.Host.Core.ServerPortProivder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a51341ea00d7cfc1eead8b52235e76257',1,'Tgstation.Server.Host.Database.DatabaseSeeder.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a2823acb68609f9953788b1460ca8cdd3',1,'Tgstation.Server.Host.Server.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a47f6e49529ffb5b7760e1a5713f590e4',1,'Tgstation.Server.Host.Setup.SetupWizard.generalConfiguration()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a454fd5fdcdd712c84d205389197cb33a',1,'Tgstation.Server.Host.Setup.PostSetupServices.GeneralConfiguration()']]], + ['generalconfigurationoptions_3821',['generalConfigurationOptions',['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_post_setup_services.html#a3ce96cf3d3ee5a94ef82ee90efcd5f07',1,'Tgstation::Server::Host::Setup::PostSetupServices']]], + ['githubclientfactory_3822',['gitHubClientFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#aa837a722f9326dea2b1f63d6a2537bb7',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a6f71210a1d02700677c27699c6286698',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab75fda1677febc0778388f201fb737ef',1,'Tgstation.Server.Host.Components.Instance.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af9e2105dfde05caa1e5a14f8c3141591',1,'Tgstation.Server.Host.Components.InstanceFactory.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#a40d72314455caeb1d6b72fa047ea18a4',1,'Tgstation.Server.Host.Controllers.AdministrationController.gitHubClientFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#a646263811f3cf4b618c569685a15c90c',1,'Tgstation.Server.Host.Controllers.RepositoryController.gitHubClientFactory()']]], + ['githubdeploymentmanager_3823',['gitHubDeploymentManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a104439d080bc0fb39546e79a94be7e99',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.gitHubDeploymentManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a919f44789633d089af0f6a81d466d504',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.gitHubDeploymentManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a9abf54f6df89e59931a2c68d9933f64c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.gitHubDeploymentManager()']]], + ['githuburl_3824',['GitHubUrl',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a5a72e4dafe281ae05f52e1dbcf37ab71',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['gracefulrebootrequired_3825',['gracefulRebootRequired',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_basic_watchdog.html#ae39ec6910d118b7bd11953610daf56dc',1,'Tgstation::Server::Host::Components::Watchdog::BasicWatchdog']]] ]; diff --git a/search/variables_7.html b/search/variables_7.html index b09b295ec1..c9f26d856d 100644 --- a/search/variables_7.html +++ b/search/variables_7.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_7.js b/search/variables_7.js index 239e5b419d..de2299ae01 100644 --- a/search/variables_7.js +++ b/search/variables_7.js @@ -1,14 +1,14 @@ var searchData= [ - ['handle_3733',['handle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a24428698a5b60b858c43dfd5529030e9',1,'Tgstation::Server::Host::System::Process']]], - ['handler_3734',['handler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a429c52adf7d0b06ee91bb7b1e77cfe35',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], - ['handlercts_3735',['handlerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#adc4749cb2a207e472c9fac07cf56e981',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['head_3736',['Head',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a40437fe926da0b9e03785da0199a8597',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['headers_3737',['headers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a48f8ea0a4dd7ac665735d1728899ebad',1,'Tgstation::Server::Client::ApiClient']]], - ['heartbeatsmissed_3738',['heartbeatsMissed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abaf0a71134899c397cc88eb39a189ff0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['helptext_3739',['HelpText',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a35351daa1c342c9086ddbfa0cb131029',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#afeb9ac3dc4a7e73136babeaa6a2d1782',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a5f22a8e068839fa971b715b0bf0abed4',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a7d761098bd18586c0c0098d4d80574e4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#ad800f97aca131465993222123307bd59',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.HelpText()']]], - ['hostbuilder_3740',['hostBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2cb668c8f5441c3518f71d0a7555bc4',1,'Tgstation::Server::Host::Server']]], - ['hostingenvironment_3741',['hostingEnvironment',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#affdb9aca40d21e4d92078d3da87483d1',1,'Tgstation.Server.Host.Core.Application.hostingEnvironment()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2ab570de660a4965daffbb867a9ed9cf',1,'Tgstation.Server.Host.Setup.SetupWizard.hostingEnvironment()']]], - ['httpapiport_3742',['HttpApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a9202750d83c6ff06032cf130ecf83a40',1,'Tgstation::Server::Host::Core::ServerPortProivder']]], - ['httpclient_3743',['httpClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a22bc1751fcba63704d2d07a83fa5a857',1,'Tgstation.Server.Client.ApiClient.httpClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#aba5a7cd3aaf62acbe8078cdb7d7da8e9',1,'Tgstation.Server.Client.HttpClient.httpClient()']]] + ['handle_3826',['handle',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a24428698a5b60b858c43dfd5529030e9',1,'Tgstation::Server::Host::System::Process']]], + ['handler_3827',['handler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_custom_command.html#a429c52adf7d0b06ee91bb7b1e77cfe35',1,'Tgstation::Server::Host::Components::Chat::Commands::CustomCommand']]], + ['handlercts_3828',['handlerCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#adc4749cb2a207e472c9fac07cf56e981',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['head_3829',['Head',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a40437fe926da0b9e03785da0199a8597',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['headers_3830',['headers',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a48f8ea0a4dd7ac665735d1728899ebad',1,'Tgstation::Server::Client::ApiClient']]], + ['heartbeatsmissed_3831',['heartbeatsMissed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abaf0a71134899c397cc88eb39a189ff0',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['helptext_3832',['HelpText',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#a35351daa1c342c9086ddbfa0cb131029',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#afeb9ac3dc4a7e73136babeaa6a2d1782',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a5f22a8e068839fa971b715b0bf0abed4',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a7d761098bd18586c0c0098d4d80574e4',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.HelpText()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#ad800f97aca131465993222123307bd59',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.HelpText()']]], + ['hostbuilder_3833',['hostBuilder',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#ab2cb668c8f5441c3518f71d0a7555bc4',1,'Tgstation::Server::Host::Server']]], + ['hostingenvironment_3834',['hostingEnvironment',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_application.html#affdb9aca40d21e4d92078d3da87483d1',1,'Tgstation.Server.Host.Core.Application.hostingEnvironment()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a2ab570de660a4965daffbb867a9ed9cf',1,'Tgstation.Server.Host.Setup.SetupWizard.hostingEnvironment()']]], + ['httpapiport_3835',['HttpApiPort',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_server_port_proivder.html#a9202750d83c6ff06032cf130ecf83a40',1,'Tgstation::Server::Host::Core::ServerPortProivder']]], + ['httpclient_3836',['httpClient',['../class_tgstation_1_1_server_1_1_client_1_1_api_client.html#a22bc1751fcba63704d2d07a83fa5a857',1,'Tgstation.Server.Client.ApiClient.httpClient()'],['../class_tgstation_1_1_server_1_1_client_1_1_http_client.html#aba5a7cd3aaf62acbe8078cdb7d7da8e9',1,'Tgstation.Server.Client.HttpClient.httpClient()']]] ]; diff --git a/search/variables_8.html b/search/variables_8.html index a479f8e0d3..aeda3564fc 100644 --- a/search/variables_8.html +++ b/search/variables_8.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_8.js b/search/variables_8.js index 42ef206b7d..aaf9dd256f 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,23 +1,27 @@ var searchData= [ - ['identity_3744',['identity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a4e5cb06d84c679a3a2d2fbfdd60e1335',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], - ['identitycache_3745',['identityCache',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a75b914d5a6ea3a3ef3eaa2ab87b61859',1,'Tgstation.Server.Host.Controllers.HomeController.identityCache()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a94c0a91ac1bdb6d25c9546a583fb44e3',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.identityCache()']]], - ['installeddirectx_3746',['installedDirectX',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a4aaf9bd89e5ad031016e64a3b3cbd3bb',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], - ['installedversions_3747',['installedVersions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a0811c130dd3533e163b38d32a17a8394',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], - ['instance_3748',['instance',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a96b47c77cfbbad1f762003260953c840',1,'Tgstation.Server.Client.Components.ByondClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af082b31182c4ecdcbe3b9c0a81bf9ead',1,'Tgstation.Server.Client.Components.ChatBotsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a3fbe930ee9bc4cf37d734c4ccc50668c',1,'Tgstation.Server.Client.Components.ConfigurationClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afaaf929e746f11a67fd7eb5818bcd7e9',1,'Tgstation.Server.Client.Components.DreamDaemonClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a8c4ace450e5976c24b3982749de5ccff',1,'Tgstation.Server.Client.Components.DreamMakerClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#aaea798aa626ad6d51d036f65c53ea47f',1,'Tgstation.Server.Client.Components.InstanceUserClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#ab7fc36983aad5fd506a83687b70c77ff',1,'Tgstation.Server.Client.Components.JobsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a3af323ae0b97782b3917673b8d239af8',1,'Tgstation.Server.Client.Components.RepositoryClient.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a23c8b9d8f35c1bf902d5ac22c4260bed',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a441cefe121e0cc6469c9a800b734a231',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a8a7c8effe98ea2c3aeacf3a350dbb072',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b5be8922642811c1a2912d8428554e5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a0e561e3f3b557e57569f7110cb8edc8c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.instance()']]], - ['instanceattachfilename_3749',['InstanceAttachFileName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa40d55750e2193d714eb1470505c47ee',1,'Tgstation::Server::Host::Controllers::InstanceController']]], - ['instancecoreprovider_3750',['instanceCoreProvider',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa4c0ba27f0b63feac43b865490f971c3',1,'Tgstation::Server::Host::Jobs::JobManager']]], - ['instancefactory_3751',['instanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ae2b48b5197337f7a311fd115951be7f6',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['instanceidheader_3752',['InstanceIdHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a28f94492eb21542e63675a53d871e3ef',1,'Tgstation::Server::Api::ApiHeaders']]], - ['instancemanager_3753',['InstanceManager',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a17bfc22b8cbc4624a6ec180aeba91da8',1,'Tgstation.Server.Api.Routes.InstanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad177b6d13a08c429c49b7e4294387d3c',1,'Tgstation.Server.Host.Controllers.InstanceController.instanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a1f3dffb9da170f16374e58f333ece5a7',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.instanceManager()']]], - ['instances_3754',['instances',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a7fbbda0a3ee75cc0c9a3a7a5446b2861',1,'Tgstation.Server.Host.Components.InstanceManager.instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a406446a1d01e301d7aae83f41342e9de',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()']]], - ['instancescollection_3755',['instancesCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8d1d446a81c900d40cf03e43ae09447f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['instancestatechangesemaphore_3756',['instanceStateChangeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abaf66550ead757ef3bc6915c9b15d06b',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['instanceuser_3757',['InstanceUser',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#ac215c662b5627fe87122f575d006c95f',1,'Tgstation::Server::Api::Routes']]], - ['instanceusers_3758',['InstanceUsers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0682cda5b4267cd68c33a47d2de09350',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['instanceuserscollection_3759',['instanceUsersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a05f04b6bf605180ed744d6c1207a166c',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['inuse_3760',['InUse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8603cad6d9df4a2079d3249becd0bbbb',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], - ['iomanager_3761',['ioManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a8bd6b3e78c550d8229807a240c6560ee',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3cbd5eecf146607f81c6e71bd9a2ebd6',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a6b8bb606be734da77ecf3987c9bef7a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a2bb559eb27c511b6f897ff1202e47282',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a12b6f9e3418fd806d7e38dfb3c5461d4',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a5f0da2a044d1b9df7e85492cb58c076c',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ad83afb6725e2fb215dfdcbab34f3b3d7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a493988c0490c85b95850f7bc2a5acfab',1,'Tgstation.Server.Host.Components.InstanceFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a59bc4b977f9b72208d553fbfa57f118e',1,'Tgstation.Server.Host.Components.InstanceManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#aa62f89a29abc7febb886a1e7216067a2',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a5297f8901872024fded4e74f5e12e5ff',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#afd5e0aef7c9a1023bc8a6cebe483c4c3',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac2d19cdcca5ed40c3f6f2123f426e655',1,'Tgstation.Server.Host.Controllers.AdministrationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a564df332546a6fcee923d3e2cab2fac6',1,'Tgstation.Server.Host.Controllers.ConfigurationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#afb2e4e54c38a97b299d1fb7692cc5cdd',1,'Tgstation.Server.Host.Controllers.InstanceController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a184ae525a19269b209054ffbd5da0dae',1,'Tgstation.Server.Host.Setup.SetupWizard.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1de594c25d7d9e7e5d159675b2c03873',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a07863aaad3219fc6efb929ab139f0bbc',1,'Tgstation.Server.Host.Setup.SetupApplication.IOManager()']]], - ['iomananger_3762',['ioMananger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a01a4beb2cee07561f7749668939ab88e',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['istokenauthentication_3763',['IsTokenAuthentication',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a30222f85d684f2a9c9861a8638b6a31f',1,'Tgstation::Server::Api::ApiHeaders']]] + ['identity_3837',['identity',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity.html#a4e5cb06d84c679a3a2d2fbfdd60e1335',1,'Tgstation::Server::Host::Security::WindowsSystemIdentity']]], + ['identitycache_3838',['identityCache',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_home_controller.html#a75b914d5a6ea3a3ef3eaa2ab87b61859',1,'Tgstation.Server.Host.Controllers.HomeController.identityCache()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a94c0a91ac1bdb6d25c9546a583fb44e3',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.identityCache()']]], + ['initialbridgerequesttcs_3839',['initialBridgeRequestTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a46b96fa7b78a3678e47c4771f1abb46d',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['initialconnectionjob_3840',['InitialConnectionJob',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a8f4348efc454ce044b78b979c84bd926',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['initialconnectiontcs_3841',['initialConnectionTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a9d0ff2a1c0d3cc6ad32e99f3c8debc2b',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['initialproviderconnectionstask_3842',['initialProviderConnectionsTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a44b2cf5f8d6c222b4357d158c0e59d65',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['installeddirectx_3843',['installedDirectX',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a4aaf9bd89e5ad031016e64a3b3cbd3bb',1,'Tgstation::Server::Host::Components::Byond::WindowsByondInstaller']]], + ['installedversions_3844',['installedVersions',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a0811c130dd3533e163b38d32a17a8394',1,'Tgstation::Server::Host::Components::Byond::ByondManager']]], + ['instance_3845',['instance',['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_byond_client.html#a96b47c77cfbbad1f762003260953c840',1,'Tgstation.Server.Client.Components.ByondClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_chat_bots_client.html#af082b31182c4ecdcbe3b9c0a81bf9ead',1,'Tgstation.Server.Client.Components.ChatBotsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_configuration_client.html#a3fbe930ee9bc4cf37d734c4ccc50668c',1,'Tgstation.Server.Client.Components.ConfigurationClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_daemon_client.html#afaaf929e746f11a67fd7eb5818bcd7e9',1,'Tgstation.Server.Client.Components.DreamDaemonClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_dream_maker_client.html#a8c4ace450e5976c24b3982749de5ccff',1,'Tgstation.Server.Client.Components.DreamMakerClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_instance_user_client.html#aaea798aa626ad6d51d036f65c53ea47f',1,'Tgstation.Server.Client.Components.InstanceUserClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_jobs_client.html#ab7fc36983aad5fd506a83687b70c77ff',1,'Tgstation.Server.Client.Components.JobsClient.instance()'],['../class_tgstation_1_1_server_1_1_client_1_1_components_1_1_repository_client.html#a3af323ae0b97782b3917673b8d239af8',1,'Tgstation.Server.Client.Components.RepositoryClient.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_command_factory.html#a23c8b9d8f35c1bf902d5ac22c4260bed',1,'Tgstation.Server.Host.Components.Chat.Commands.CommandFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a441cefe121e0cc6469c9a800b734a231',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a8a7c8effe98ea2c3aeacf3a350dbb072',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b5be8922642811c1a2912d8428554e5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.instance()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a0e561e3f3b557e57569f7110cb8edc8c',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.instance()']]], + ['instanceattachfilename_3846',['InstanceAttachFileName',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#aa40d55750e2193d714eb1470505c47ee',1,'Tgstation::Server::Host::Controllers::InstanceController']]], + ['instancecoreprovider_3847',['instanceCoreProvider',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aa4c0ba27f0b63feac43b865490f971c3',1,'Tgstation::Server::Host::Jobs::JobManager']]], + ['instancefactory_3848',['instanceFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#ae2b48b5197337f7a311fd115951be7f6',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['instanceidheader_3849',['InstanceIdHeader',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a28f94492eb21542e63675a53d871e3ef',1,'Tgstation::Server::Api::ApiHeaders']]], + ['instancemanager_3850',['InstanceManager',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a17bfc22b8cbc4624a6ec180aeba91da8',1,'Tgstation.Server.Api.Routes.InstanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ad177b6d13a08c429c49b7e4294387d3c',1,'Tgstation.Server.Host.Controllers.InstanceController.instanceManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_required_controller.html#a1f3dffb9da170f16374e58f333ece5a7',1,'Tgstation.Server.Host.Controllers.InstanceRequiredController.instanceManager()']]], + ['instances_3851',['Instances',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a406446a1d01e301d7aae83f41342e9de',1,'Tgstation.Server.Host.Database.DatabaseContext.Instances()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a7fbbda0a3ee75cc0c9a3a7a5446b2861',1,'Tgstation.Server.Host.Components.InstanceManager.instances()']]], + ['instancescollection_3852',['instancesCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a8d1d446a81c900d40cf03e43ae09447f',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['instancestatechangesemaphore_3853',['instanceStateChangeSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#abaf66550ead757ef3bc6915c9b15d06b',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['instanceuser_3854',['InstanceUser',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#ac215c662b5627fe87122f575d006c95f',1,'Tgstation::Server::Api::Routes']]], + ['instanceusers_3855',['InstanceUsers',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0682cda5b4267cd68c33a47d2de09350',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['instanceuserscollection_3856',['instanceUsersCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a05f04b6bf605180ed744d6c1207a166c',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['inuse_3857',['InUse',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#a8603cad6d9df4a2079d3249becd0bbbb',1,'Tgstation::Server::Host::Components::Repository::RepositoryManager']]], + ['iomanager_3858',['ioManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_executable_lock.html#a8bd6b3e78c550d8229807a240c6560ee',1,'Tgstation.Server.Host.Components.Byond.ByondExecutableLock.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a3cbd5eecf146607f81c6e71bd9a2ebd6',1,'Tgstation.Server.Host.Components.Byond.ByondManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a6b8bb606be734da77ecf3987c9bef7a5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a2bb559eb27c511b6f897ff1202e47282',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#a12b6f9e3418fd806d7e38dfb3c5461d4',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a5f0da2a044d1b9df7e85492cb58c076c',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ad83afb6725e2fb215dfdcbab34f3b3d7',1,'Tgstation.Server.Host.Components.Deployment.SwappableDmbProvider.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a493988c0490c85b95850f7bc2a5acfab',1,'Tgstation.Server.Host.Components.InstanceFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a59bc4b977f9b72208d553fbfa57f118e',1,'Tgstation.Server.Host.Components.InstanceManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#aa62f89a29abc7febb886a1e7216067a2',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a5297f8901872024fded4e74f5e12e5ff',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#afd5e0aef7c9a1023bc8a6cebe483c4c3',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#ac2d19cdcca5ed40c3f6f2123f426e655',1,'Tgstation.Server.Host.Controllers.AdministrationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_configuration_controller.html#a564df332546a6fcee923d3e2cab2fac6',1,'Tgstation.Server.Host.Controllers.ConfigurationController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#afb2e4e54c38a97b299d1fb7692cc5cdd',1,'Tgstation.Server.Host.Controllers.InstanceController.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#a184ae525a19269b209054ffbd5da0dae',1,'Tgstation.Server.Host.Setup.SetupWizard.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a1de594c25d7d9e7e5d159675b2c03873',1,'Tgstation.Server.Host.System.PosixProcessFeatures.ioManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_application.html#a07863aaad3219fc6efb929ab139f0bbc',1,'Tgstation.Server.Host.Setup.SetupApplication.IOManager()']]], + ['iomananger_3859',['ioMananger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a01a4beb2cee07561f7749668939ab88e',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['istokenauthentication_3860',['IsTokenAuthentication',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a30222f85d684f2a9c9861a8638b6a31f',1,'Tgstation::Server::Api::ApiHeaders']]] ]; diff --git a/search/variables_9.html b/search/variables_9.html index 97cc440a0e..f280b569f1 100644 --- a/search/variables_9.html +++ b/search/variables_9.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_9.js b/search/variables_9.js index 8a50caaa49..31ba0eec72 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,9 +1,9 @@ var searchData= [ - ['jobactivator_3764',['jobActivator',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a1f8683a1b372b5a2e6ceaa67ea4ae96e',1,'Tgstation::Server::Host::Jobs::JobHandler']]], - ['joblockcounts_3765',['jobLockCounts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a218effcf67da26e5364cc0d277be5e72',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['jobmanager_3766',['jobManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#aa36ffb34c69e4a990830e49f97b7c142',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a9fa0698a97569c4cd4404c4341bd67f7',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a8442698876a3b1aab29cb968cd97203e',1,'Tgstation.Server.Host.Components.Instance.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a6913b05824f8ac83a8b5d87386ca96aa',1,'Tgstation.Server.Host.Components.InstanceFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a26d85ac963bb5258ff0ff1041fce7fa3',1,'Tgstation.Server.Host.Components.InstanceManager.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1688863ddcd7d0bbfa3ec13b7b015319',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a8e1ba9fcd8b44116da4230580c5cdbca',1,'Tgstation.Server.Host.Controllers.ByondController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ace2a566cc7ff09b10c0bbf448aaeae69',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ae195b225516fe09da8661438fb1dc03f',1,'Tgstation.Server.Host.Controllers.DreamMakerController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a38f7f9669773242d177345e38be2dd34',1,'Tgstation.Server.Host.Controllers.InstanceController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a6386df07802db9cdbf34ffe40b031921',1,'Tgstation.Server.Host.Controllers.JobController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad15c0217bf9e5ce926a198191d0a04c4',1,'Tgstation.Server.Host.Controllers.RepositoryController.jobManager()']]], - ['jobs_3767',['jobs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ade9edf0f3f116c19c38036716bec9847',1,'Tgstation.Server.Host.Jobs.JobManager.jobs()'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a85c563262244bd21fe1bfa1ce5de6a1d',1,'Tgstation.Server.Api.Routes.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0fd2d2f14360254206ca324d8282f4d8',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()']]], - ['jobscollection_3768',['jobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6d6f982a1c3a6966ac31b5ac2d86f3e2',1,'Tgstation::Server::Host::Database::DatabaseContext']]], - ['jwtauthenticationscheme_3769',['JwtAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3d49a18342b81d0427f09e51c29544c2',1,'Tgstation::Server::Api::ApiHeaders']]] + ['jobactivator_3861',['jobActivator',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_handler.html#a1f8683a1b372b5a2e6ceaa67ea4ae96e',1,'Tgstation::Server::Host::Jobs::JobHandler']]], + ['joblockcounts_3862',['jobLockCounts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a218effcf67da26e5364cc0d277be5e72',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['jobmanager_3863',['jobManager',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#aa36ffb34c69e4a990830e49f97b7c142',1,'Tgstation.Server.Host.Components.Chat.Providers.Provider.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a9fa0698a97569c4cd4404c4341bd67f7',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#a8442698876a3b1aab29cb968cd97203e',1,'Tgstation.Server.Host.Components.Instance.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a6913b05824f8ac83a8b5d87386ca96aa',1,'Tgstation.Server.Host.Components.InstanceFactory.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a26d85ac963bb5258ff0ff1041fce7fa3',1,'Tgstation.Server.Host.Components.InstanceManager.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a1688863ddcd7d0bbfa3ec13b7b015319',1,'Tgstation.Server.Host.Components.Watchdog.WatchdogBase.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_byond_controller.html#a8e1ba9fcd8b44116da4230580c5cdbca',1,'Tgstation.Server.Host.Controllers.ByondController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_daemon_controller.html#ace2a566cc7ff09b10c0bbf448aaeae69',1,'Tgstation.Server.Host.Controllers.DreamDaemonController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_dream_maker_controller.html#ae195b225516fe09da8661438fb1dc03f',1,'Tgstation.Server.Host.Controllers.DreamMakerController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a38f7f9669773242d177345e38be2dd34',1,'Tgstation.Server.Host.Controllers.InstanceController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_job_controller.html#a6386df07802db9cdbf34ffe40b031921',1,'Tgstation.Server.Host.Controllers.JobController.jobManager()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_repository_controller.html#ad15c0217bf9e5ce926a198191d0a04c4',1,'Tgstation.Server.Host.Controllers.RepositoryController.jobManager()']]], + ['jobs_3864',['jobs',['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#ade9edf0f3f116c19c38036716bec9847',1,'Tgstation.Server.Host.Jobs.JobManager.jobs()'],['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a85c563262244bd21fe1bfa1ce5de6a1d',1,'Tgstation.Server.Api.Routes.Jobs()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a0fd2d2f14360254206ca324d8282f4d8',1,'Tgstation.Server.Host.Database.DatabaseContext.Jobs()']]], + ['jobscollection_3865',['jobsCollection',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_context.html#a6d6f982a1c3a6966ac31b5ac2d86f3e2',1,'Tgstation::Server::Host::Database::DatabaseContext']]], + ['jwtauthenticationscheme_3866',['JwtAuthenticationScheme',['../class_tgstation_1_1_server_1_1_api_1_1_api_headers.html#a3d49a18342b81d0427f09e51c29544c2',1,'Tgstation::Server::Api::ApiHeaders']]] ]; diff --git a/search/variables_a.html b/search/variables_a.html index 0107448635..025386a4b1 100644 --- a/search/variables_a.html +++ b/search/variables_a.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_a.js b/search/variables_a.js index f9f786c1a6..3855e015ec 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['kek_3770',['Kek',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a341a9da46f3d06a03bba883d149ff8f3',1,'Tgstation::Server::Host::Components::Chat::Commands::KekCommand']]] + ['kek_3867',['Kek',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a341a9da46f3d06a03bba883d149ff8f3',1,'Tgstation::Server::Host::Components::Chat::Commands::KekCommand']]] ]; diff --git a/search/variables_b.html b/search/variables_b.html index e5b2fd95d7..850cb42a01 100644 --- a/search/variables_b.html +++ b/search/variables_b.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_b.js b/search/variables_b.js index 530409dbac..f52d9f8358 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,15 +1,15 @@ var searchData= [ - ['lazyloadedprocessexecutor_3771',['lazyLoadedProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a3a2559612f724db16314713f64da1d2f',1,'Tgstation::Server::Host::System::PosixProcessFeatures']]], - ['lazyrestartregistration_3772',['lazyRestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a9e2dd865f9e0403e0cb23cc1d68323ea',1,'Tgstation::Server::Host::Components::InstanceManager']]], - ['libgitrepo_3773',['libGitRepo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a6fec03c9207024ead0f80fe2abd19ffb',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['list_3774',['List',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a63077d90c7d1f0afef5045211241fb47',1,'Tgstation::Server::Api::Routes']]], - ['listentask_3775',['listenTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4973331fd7986b7f14ec00426b474253',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['livegamedirectory_3776',['LiveGameDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ac3447ec1377df66f5b60e0a12ecc109c',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], - ['local_3777',['Local',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#aea9eb14e43c87e0f5088ffbbc5913743',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['lockedsemaphore_3778',['lockedSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#ada2fac68aaa78fbd25c0cb1337925f00',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], - ['lockobject_3779',['lockObject',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a1929f9ae09781c6dc5dd08057bfcd108',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeRegistration']]], - ['logger_3780',['logger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a25f231d9dcbd28c75f9665fb7f0b5e80',1,'Tgstation.Server.Host.Components.Byond.ByondManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abc0dda9d12fd94b299931aaa8d4aa8bd',1,'Tgstation.Server.Host.Components.Chat.ChatManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a6dbfebf4e8e302c3f6434fc1ebe0e350',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a71b829b7913fed5b414e4e6875f8819d',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1d5a133d669af1e14db0104b67103ccf',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab4e452661f1c4a25ad903315e42e023e',1,'Tgstation.Server.Host.Components.Instance.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a968fedca8d4cc5ff16c77c0cbc782bda',1,'Tgstation.Server.Host.Components.InstanceManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a0459148f90ada2863ee586bb9ff43351',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aaaf20e963c78e114158f07652efc7986',1,'Tgstation.Server.Host.Components.Repository.Repository.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ab48210b91ab8add64013a209d4223070',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a085d964312b1fe2e1ceef9bdad40708f',1,'Tgstation.Server.Host.Components.Session.SessionController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a83b35ba371db1f4a93b6b4a3a7c1a2c5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a0ef7e017c943539a83aca36c6a1bba4f',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a27bb3c21fafac172ebf5841133a4d8e9',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab3c240ff7f92402a96f36d29f6ede284',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a9891743d5f16fcef93d55fc828b8dd11',1,'Tgstation.Server.Host.Controllers.BridgeController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aaf6976bc08dbb6209b8ca16509604a09',1,'Tgstation.Server.Host.Database.DatabaseSeeder.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a90d88fb051503e2c6b796f8a5e43d0d0',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aecd93d616cf56f52f149457f064dd520',1,'Tgstation.Server.Host.Jobs.JobManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6785a5176d17d6fa0d54da20d418e21c',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a382d063e7f62559b994c5639504737b6',1,'Tgstation.Server.Host.Security.IdentityCache.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a384470b6fd596dcc97a6e39a0dcdbe74',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#aed53aa0f4276d05a985604f291c70f29',1,'Tgstation.Server.Host.Server.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#ad86bb907f2d4419d609e89b8802dc73b',1,'Tgstation.Server.Host.System.PosixProcessFeatures.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a781e9616bea46323ba098c782b6fafe4',1,'Tgstation.Server.Host.System.Process.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#abbe8126c6fb5bff2bab522eef5f9d5c5',1,'Tgstation.Server.Host.System.ProcessExecutor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a088a1b70d59e1bc6052f83a901e1930b',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a247d89dab45478183870bbdac843dbde',1,'Tgstation.Server.Host.Watchdog.Watchdog.logger()']]], - ['loggerfactory_3781',['loggerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a76009f2ea5bcdd632cd599fc3857ac96',1,'Tgstation.Server.Host.Components.Chat.ChatManager.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aec9b0a1d8aa867830c20266a612697b5',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a92699f7709129aed50ab119584f1de63',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#afe93210d51c3cd078d16a4b510c3ebe8',1,'Tgstation.Server.Host.Components.InstanceFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a19be3056a71f332cc36cc29b3aea9e3a',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04e53e5021bd2665214856f690cccd2',1,'Tgstation.Server.Host.System.ProcessExecutor.loggerFactory()']]], - ['logs_3782',['Logs',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aeb032cc314264cd0214895fe0c6b7670',1,'Tgstation::Server::Api::Routes']]] + ['lazyloadedprocessexecutor_3868',['lazyLoadedProcessExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#a3a2559612f724db16314713f64da1d2f',1,'Tgstation::Server::Host::System::PosixProcessFeatures']]], + ['lazyrestartregistration_3869',['lazyRestartRegistration',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a9e2dd865f9e0403e0cb23cc1d68323ea',1,'Tgstation::Server::Host::Components::InstanceManager']]], + ['libgitrepo_3870',['libGitRepo',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a6fec03c9207024ead0f80fe2abd19ffb',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['list_3871',['List',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#a63077d90c7d1f0afef5045211241fb47',1,'Tgstation::Server::Api::Routes']]], + ['listentask_3872',['listenTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a4973331fd7986b7f14ec00426b474253',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['livegamedirectory_3873',['LiveGameDirectory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_swappable_dmb_provider.html#ac3447ec1377df66f5b60e0a12ecc109c',1,'Tgstation::Server::Host::Components::Deployment::SwappableDmbProvider']]], + ['local_3874',['Local',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#aea9eb14e43c87e0f5088ffbbc5913743',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['lockedsemaphore_3875',['lockedSemaphore',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_semaphore_slim_context.html#ada2fac68aaa78fbd25c0cb1337925f00',1,'Tgstation::Server::Host::Core::SemaphoreSlimContext']]], + ['lockobject_3876',['lockObject',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a1929f9ae09781c6dc5dd08057bfcd108',1,'Tgstation::Server::Host::Components::Interop::Bridge::BridgeRegistration']]], + ['logger_3877',['logger',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_byond_manager.html#a25f231d9dcbd28c75f9665fb7f0b5e80',1,'Tgstation.Server.Host.Components.Byond.ByondManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#abc0dda9d12fd94b299931aaa8d4aa8bd',1,'Tgstation.Server.Host.Components.Chat.ChatManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#a6dbfebf4e8e302c3f6434fc1ebe0e350',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a71b829b7913fed5b414e4e6875f8819d',1,'Tgstation.Server.Host.Components.Deployment.DmbFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a1d5a133d669af1e14db0104b67103ccf',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a142ef3449fccf2c342976cecfdcd6267',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ab4e452661f1c4a25ad903315e42e023e',1,'Tgstation.Server.Host.Components.Instance.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_manager.html#a968fedca8d4cc5ff16c77c0cbc782bda',1,'Tgstation.Server.Host.Components.InstanceManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_lib_git2_repository_factory.html#a0459148f90ada2863ee586bb9ff43351',1,'Tgstation.Server.Host.Components.Repository.LibGit2RepositoryFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#aaaf20e963c78e114158f07652efc7986',1,'Tgstation.Server.Host.Components.Repository.Repository.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository_manager.html#ab48210b91ab8add64013a209d4223070',1,'Tgstation.Server.Host.Components.Repository.RepositoryManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a085d964312b1fe2e1ceef9bdad40708f',1,'Tgstation.Server.Host.Components.Session.SessionController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a83b35ba371db1f4a93b6b4a3a7c1a2c5',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a0ef7e017c943539a83aca36c6a1bba4f',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_topic_client_factory.html#a27bb3c21fafac172ebf5841133a4d8e9',1,'Tgstation.Server.Host.Components.Session.TopicClientFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#ab3c240ff7f92402a96f36d29f6ede284',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_bridge_controller.html#a9891743d5f16fcef93d55fc828b8dd11',1,'Tgstation.Server.Host.Controllers.BridgeController.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#aaf6976bc08dbb6209b8ca16509604a09',1,'Tgstation.Server.Host.Database.DatabaseSeeder.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_i_o_1_1_posix_post_write_handler.html#a90d88fb051503e2c6b796f8a5e43d0d0',1,'Tgstation.Server.Host.IO.PosixPostWriteHandler.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_jobs_1_1_job_manager.html#aecd93d616cf56f52f149457f064dd520',1,'Tgstation.Server.Host.Jobs.JobManager.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_authentication_context_factory.html#a6785a5176d17d6fa0d54da20d418e21c',1,'Tgstation.Server.Host.Security.AuthenticationContextFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_identity_cache.html#a382d063e7f62559b994c5639504737b6',1,'Tgstation.Server.Host.Security.IdentityCache.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_windows_system_identity_factory.html#a384470b6fd596dcc97a6e39a0dcdbe74',1,'Tgstation.Server.Host.Security.WindowsSystemIdentityFactory.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_server.html#aed53aa0f4276d05a985604f291c70f29',1,'Tgstation.Server.Host.Server.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_posix_process_features.html#ad86bb907f2d4419d609e89b8802dc73b',1,'Tgstation.Server.Host.System.PosixProcessFeatures.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#a781e9616bea46323ba098c782b6fafe4',1,'Tgstation.Server.Host.System.Process.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#abbe8126c6fb5bff2bab522eef5f9d5c5',1,'Tgstation.Server.Host.System.ProcessExecutor.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_windows_network_prompt_reaper.html#a088a1b70d59e1bc6052f83a901e1930b',1,'Tgstation.Server.Host.System.WindowsNetworkPromptReaper.logger()'],['../class_tgstation_1_1_server_1_1_host_1_1_watchdog_1_1_watchdog.html#a247d89dab45478183870bbdac843dbde',1,'Tgstation.Server.Host.Watchdog.Watchdog.logger()']]], + ['loggerfactory_3878',['loggerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a76009f2ea5bcdd632cd599fc3857ac96',1,'Tgstation.Server.Host.Components.Chat.ChatManager.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aec9b0a1d8aa867830c20266a612697b5',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider_factory.html#a92699f7709129aed50ab119584f1de63',1,'Tgstation.Server.Host.Components.Chat.Providers.ProviderFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#afe93210d51c3cd078d16a4b510c3ebe8',1,'Tgstation.Server.Host.Components.InstanceFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a19be3056a71f332cc36cc29b3aea9e3a',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.loggerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#ac04e53e5021bd2665214856f690cccd2',1,'Tgstation.Server.Host.System.ProcessExecutor.loggerFactory()']]], + ['logs_3879',['Logs',['../class_tgstation_1_1_server_1_1_api_1_1_routes.html#aeb032cc314264cd0214895fe0c6b7670',1,'Tgstation::Server::Api::Routes']]] ]; diff --git a/search/variables_c.html b/search/variables_c.html index f3e998917c..64e36a4650 100644 --- a/search/variables_c.html +++ b/search/variables_c.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_c.js b/search/variables_c.js index fa6ef1874f..edc6907898 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,13 +1,13 @@ var searchData= [ - ['mappedchannels_3783',['mappedChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a556af78ef77307e5bff2d79daa628bcb',1,'Tgstation.Server.Host.Components.Chat.ChatManager.mappedChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a044ae95d278a4ed4a6a02449e24e8146',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.mappedChannels()']]], - ['maximumcommitshalength_3784',['MaximumCommitShaLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#af0c12b57e368c7866383bda0935f7238',1,'Tgstation::Server::Api::Models::Limits']]], - ['maximumindexablestringlength_3785',['MaximumIndexableStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aefd2529f2213c4bfdc9ba41812ef108b',1,'Tgstation::Server::Api::Models::Limits']]], - ['maximumstringlength_3786',['MaximumStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aceff5849fdb5c12fd9573b1e9ce0e609',1,'Tgstation::Server::Api::Models::Limits']]], - ['messagequeue_3787',['messageQueue',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a0cf9e8f2427fc076d90805ef6ee06a66',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['messagesprocessed_3788',['messagesProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0f90df8e6ed21489cc4b57f690f41c7e',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], - ['metadata_3789',['metadata',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ac5b667aa89c476c9cb0cf71cb5add8a6',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ad54344c590beab965fead49ac08224a9',1,'Tgstation.Server.Host.Components.Instance.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ae36a4037565f0f7a476eb465d0c0e4',1,'Tgstation.Server.Host.Components.Session.SessionController.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a3942d5832fa872589b17d1ea8b6d7150',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.metadata()']]], - ['monitorcts_3790',['monitorCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a47a5f64148a117c561df7b0e7e1703e6',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['monitortask_3791',['monitorTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abfb7590db69ab59a040c1ac91c671d6d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], - ['moveinstancejobprefix_3792',['MoveInstanceJobPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a05f43b931e38b2d401566435d5a3de75',1,'Tgstation::Server::Host::Controllers::InstanceController']]] + ['mappedchannels_3880',['mappedChannels',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a556af78ef77307e5bff2d79daa628bcb',1,'Tgstation.Server.Host.Components.Chat.ChatManager.mappedChannels()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a044ae95d278a4ed4a6a02449e24e8146',1,'Tgstation.Server.Host.Components.Chat.Providers.DiscordProvider.mappedChannels()']]], + ['maximumcommitshalength_3881',['MaximumCommitShaLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#af0c12b57e368c7866383bda0935f7238',1,'Tgstation::Server::Api::Models::Limits']]], + ['maximumindexablestringlength_3882',['MaximumIndexableStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aefd2529f2213c4bfdc9ba41812ef108b',1,'Tgstation::Server::Api::Models::Limits']]], + ['maximumstringlength_3883',['MaximumStringLength',['../class_tgstation_1_1_server_1_1_api_1_1_models_1_1_limits.html#aceff5849fdb5c12fd9573b1e9ce0e609',1,'Tgstation::Server::Api::Models::Limits']]], + ['messagequeue_3884',['messageQueue',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#a0cf9e8f2427fc076d90805ef6ee06a66',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['messagesprocessed_3885',['messagesProcessed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a0f90df8e6ed21489cc4b57f690f41c7e',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]], + ['metadata_3886',['metadata',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#ac5b667aa89c476c9cb0cf71cb5add8a6',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_git_hub_deployment_manager.html#a8db35493ab3bf121fa830e40bd58700b',1,'Tgstation.Server.Host.Components.Deployment.GitHubDeploymentManager.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance.html#ad54344c590beab965fead49ac08224a9',1,'Tgstation.Server.Host.Components.Instance.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1ae36a4037565f0f7a476eb465d0c0e4',1,'Tgstation.Server.Host.Components.Session.SessionController.metadata()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a3942d5832fa872589b17d1ea8b6d7150',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.metadata()']]], + ['monitorcts_3887',['monitorCts',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#a47a5f64148a117c561df7b0e7e1703e6',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['monitortask_3888',['monitorTask',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_watchdog_base.html#abfb7590db69ab59a040c1ac91c671d6d',1,'Tgstation::Server::Host::Components::Watchdog::WatchdogBase']]], + ['moveinstancejobprefix_3889',['MoveInstanceJobPrefix',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#a05f43b931e38b2d401566435d5a3de75',1,'Tgstation::Server::Host::Controllers::InstanceController']]] ]; diff --git a/search/variables_d.html b/search/variables_d.html index 478ae0edb4..5536126337 100644 --- a/search/variables_d.html +++ b/search/variables_d.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_d.js b/search/variables_d.js index a81bc3a4a8..92d01201c1 100644 --- a/search/variables_d.js +++ b/search/variables_d.js @@ -1,10 +1,10 @@ var searchData= [ - ['name_3793',['Name',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aa3c25add23e8a5463468700cb5d3f8fe',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a310057ff5025763b3a208631f9f76daf',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a161ed3eee61c1cdb62fc5de7ba6e54b5',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a12e4e89bc06dc6f44f953760a3bcf800',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a5c8f4bdfbf9054761790392222009914',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a82a1c35bb13819cd1003592351251fc1',1,'Tgstation.Server.Host.Service.ServerService.Name()']]], - ['networkpromptreaper_3794',['networkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af4c3eca3b6ba03440f6f2397eeb2ccc3',1,'Tgstation.Server.Host.Components.InstanceFactory.networkPromptReaper()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b73a5e0ea646cfe55c2bd6679e4cab6',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper()']]], - ['newerdmbtcs_3795',['newerDmbTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a46cb9fe7ded7d00dc6ef7bbbd1b09518',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['nextdmbprovider_3796',['nextDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#affbfb8dd410addc55b47b5c08143a509',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], - ['nextmessage_3797',['nextMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac27feec8aca499fa963dd6f6b557b818',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], - ['nextport_3798',['nextPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#acef2971a7fcc65613d54b646d2484d0b',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['nickname_3799',['nickname',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a75457eda73c1935c8784dc7fadf9e0ba',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]] + ['name_3890',['Name',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_byond_command.html#aa3c25add23e8a5463468700cb5d3f8fe',1,'Tgstation.Server.Host.Components.Chat.Commands.ByondCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_kek_command.html#a310057ff5025763b3a208631f9f76daf',1,'Tgstation.Server.Host.Components.Chat.Commands.KekCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_pull_requests_command.html#a161ed3eee61c1cdb62fc5de7ba6e54b5',1,'Tgstation.Server.Host.Components.Chat.Commands.PullRequestsCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_revision_command.html#a12e4e89bc06dc6f44f953760a3bcf800',1,'Tgstation.Server.Host.Components.Chat.Commands.RevisionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_commands_1_1_version_command.html#a5c8f4bdfbf9054761790392222009914',1,'Tgstation.Server.Host.Components.Chat.Commands.VersionCommand.Name()'],['../class_tgstation_1_1_server_1_1_host_1_1_service_1_1_server_service.html#a82a1c35bb13819cd1003592351251fc1',1,'Tgstation.Server.Host.Service.ServerService.Name()']]], + ['networkpromptreaper_3891',['networkPromptReaper',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#af4c3eca3b6ba03440f6f2397eeb2ccc3',1,'Tgstation.Server.Host.Components.InstanceFactory.networkPromptReaper()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a7b73a5e0ea646cfe55c2bd6679e4cab6',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.networkPromptReaper()']]], + ['newerdmbtcs_3892',['newerDmbTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#a46cb9fe7ded7d00dc6ef7bbbd1b09518',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['nextdmbprovider_3893',['nextDmbProvider',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_factory.html#affbfb8dd410addc55b47b5c08143a509',1,'Tgstation::Server::Host::Components::Deployment::DmbFactory']]], + ['nextmessage_3894',['nextMessage',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_provider.html#ac27feec8aca499fa963dd6f6b557b818',1,'Tgstation::Server::Host::Components::Chat::Providers::Provider']]], + ['nextport_3895',['nextPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#acef2971a7fcc65613d54b646d2484d0b',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['nickname_3896',['nickname',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a75457eda73c1935c8784dc7fadf9e0ba',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]] ]; diff --git a/search/variables_e.html b/search/variables_e.html index 8f22eb94c7..ec4179fd50 100644 --- a/search/variables_e.html +++ b/search/variables_e.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_e.js b/search/variables_e.js index c0f338fd62..77518c470a 100644 --- a/search/variables_e.js +++ b/search/variables_e.js @@ -1,11 +1,12 @@ var searchData= [ - ['octokitexception_3800',['OctokitException',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aae91f209dda2b1d6a356a3cc3700750e',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], - ['ondispose_3801',['onDispose',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#aa654791d4441face9f27fcf8cf2db03a',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ac585ca7dfac5652bc826aedb0e6bd4e9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a0855377d10534ad3c22b7961c569a478',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#af2a69a0a07eff91257bace7640a3df8e',1,'Tgstation.Server.Host.Components.Repository.Repository.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a7db0cb09e48b12745868127e77dba1d0',1,'Tgstation.Server.Host.Core.RestartRegistration.onDispose()']]], - ['ondisposed_3802',['onDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a9f08085436ed4e7e2cc1079b08934f4c',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], - ['onprime_3803',['OnPrime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ad23f514f201deec4a378afd17cb0bd65',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['onreboot_3804',['OnReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1bb042033da859b1176707af6367aff0',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['onzeroreferencestcs_3805',['onZeroReferencesTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#ad240137a8b9d659005cd3ded2729b224',1,'Tgstation::Server::Host::Components::InstanceContainer']]], - ['origin_3806',['Origin',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4885e47a21a11d7fdf1f2071f7cfbb0a',1,'Tgstation::Server::Host::Components::Repository::Repository']]], - ['origintrackingerrortemplate_3807',['OriginTrackingErrorTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a160b164a1b668c2951ac4cff5db5205b',1,'Tgstation::Server::Host::Components::Repository::Repository']]] + ['octokitexception_3897',['OctokitException',['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aae91f209dda2b1d6a356a3cc3700750e',1,'Tgstation::Server::Host::Controllers::AdministrationController']]], + ['ondispose_3898',['onDispose',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_tracking_context.html#aa654791d4441face9f27fcf8cf2db03a',1,'Tgstation.Server.Host.Components.Chat.ChatTrackingContext.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dmb_provider.html#ac585ca7dfac5652bc826aedb0e6bd4e9',1,'Tgstation.Server.Host.Components.Deployment.DmbProvider.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_bridge_1_1_bridge_registration.html#a0855377d10534ad3c22b7961c569a478',1,'Tgstation.Server.Host.Components.Interop.Bridge.BridgeRegistration.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#af2a69a0a07eff91257bace7640a3df8e',1,'Tgstation.Server.Host.Components.Repository.Repository.onDispose()'],['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_restart_registration.html#a7db0cb09e48b12745868127e77dba1d0',1,'Tgstation.Server.Host.Core.RestartRegistration.onDispose()']]], + ['ondisposed_3899',['onDisposed',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_wrapper.html#a9f08085436ed4e7e2cc1079b08934f4c',1,'Tgstation::Server::Host::Components::InstanceWrapper']]], + ['onprime_3900',['OnPrime',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#ad23f514f201deec4a378afd17cb0bd65',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['onreboot_3901',['OnReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a1bb042033da859b1176707af6367aff0',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['onzeroreferencestcs_3902',['onZeroReferencesTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_container.html#ad240137a8b9d659005cd3ded2729b224',1,'Tgstation::Server::Host::Components::InstanceContainer']]], + ['origin_3903',['Origin',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a4885e47a21a11d7fdf1f2071f7cfbb0a',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['origintrackingerrortemplate_3904',['OriginTrackingErrorTemplate',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_repository.html#a160b164a1b668c2951ac4cff5db5205b',1,'Tgstation::Server::Host::Components::Repository::Repository']]], + ['outputdisplaytype_3905',['outputDisplayType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_discord_provider.html#a96681c4d5a393d80bd2ff022eed95ee5',1,'Tgstation::Server::Host::Components::Chat::Providers::DiscordProvider']]] ]; diff --git a/search/variables_f.html b/search/variables_f.html index 5dc9179513..1afdab6e0a 100644 --- a/search/variables_f.html +++ b/search/variables_f.html @@ -1,7 +1,7 @@ - + diff --git a/search/variables_f.js b/search/variables_f.js index d802704b11..19dd1e2b79 100644 --- a/search/variables_f.js +++ b/search/variables_f.js @@ -1,25 +1,25 @@ var searchData= [ - ['paramaccessidentifier_3808',['ParamAccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#aa076c322d7bee2b5d7da67093a9dabff',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['paramapiversion_3809',['ParamApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#ab930f933c33983f0c21c6dd614b896ec',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['paramserverport_3810',['ParamServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a8dcd2fa9f5a2900252b878d8ad560796',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], - ['password_3811',['password',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0af57fc7dec5c5f69ae6ba15756031a7',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['passwordhasher_3812',['passwordHasher',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#ad519d6aa46f39a52f9a7b50e0f181fd9',1,'Tgstation::Server::Host::Security::CryptographySuite']]], - ['passwordsecurityschemeid_3813',['PasswordSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#aea41db6a784ee697f5507a6e3ee5990b',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], - ['passwordtype_3814',['passwordType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6d496510a7558d62c26d917a51226264',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['pendingswappable_3815',['pendingSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a1e9fdb7045235885318ab5bc309bdec3',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], - ['platformidentifier_3816',['platformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a3c8f7e67bf286c73dd25994db7ed31a5',1,'Tgstation.Server.Host.Components.InstanceFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3ac5f067400fe019d8375fffc0e83dee',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9103478c93c69deb31f3549ab04dcc84',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aab5c882433d208418174394df71cfab4',1,'Tgstation.Server.Host.Controllers.AdministrationController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ac62c0b1b0e346409b20c3054d4a8354a',1,'Tgstation.Server.Host.Controllers.InstanceController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a9b30ce06ad99c07d9405020656cc3a1d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa225e153a659c2ebdde2e69dc9c46458',1,'Tgstation.Server.Host.Setup.SetupWizard.platformIdentifier()']]], - ['port_3817',['port',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0a16e9a0617d8e75740478a5d68a4420',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], - ['portassignmenttcs_3818',['portAssignmentTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#add75954615d8857ffa74ac387d2941c8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['portclosedforreboot_3819',['portClosedForReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aad62f26263e191e8dd7e658f227128b8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['postwritehandler_3820',['postWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#abaa57b4cd2fdf1ea15b08b81ccd88023',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aca83a69059579020791c6d62721c08fd',1,'Tgstation.Server.Host.Components.InstanceFactory.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9070bfae5692e48611c410eeef52c7af',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.postWriteHandler()']]], - ['primetcs_3821',['primeTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a524400c2981d28ac310a509e2c6d9732',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['process_3822',['process',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#af72f0ef89d2933aacb840b4371a5d55c',1,'Tgstation::Server::Host::Components::Session::SessionController']]], - ['processexecutor_3823',['processExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a9ddafa8d405709ae20f157c9041b4b01',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8d40fb1d02610364e59b9feedb4e75d9',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a5fdcd121985cce7d20f2d61e0ea5eca4',1,'Tgstation.Server.Host.Components.InstanceFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a1e5abb3512c946d17d762285046b6e56',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a1e099a9da77ecb396147ac6c4e85f4f0',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a0eb31611253abc0c887ec46f1e9b8611',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.processExecutor()']]], - ['processfeatures_3824',['processFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b740e7d72723a6e5fce40acf040c9',1,'Tgstation.Server.Host.System.Process.processFeatures()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a53a69845e62419a4db84ef86445d1eba',1,'Tgstation.Server.Host.System.ProcessExecutor.processFeatures()']]], - ['productheadervalue_3825',['productHeaderValue',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a5db19a315f04b37200db2761f678661b',1,'Tgstation::Server::Client::ServerClientFactory']]], - ['propagatedexception_3826',['propagatedException',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6541983f401f2c25c474573a2d28235c',1,'Tgstation::Server::Host::Server']]], - ['provider_3827',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a710f3756c50252da5daf3e4659feebd6',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], - ['providerfactory_3828',['providerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13f4e387e7b5419193b74e1ae3cd0fb5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.providerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aed9aa464cbd392d024e4247355aa0cb8',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.providerFactory()']]], - ['providers_3829',['providers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a38995278392e0456fe18f7605959099a',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]] + ['paramaccessidentifier_3906',['ParamAccessIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#aa076c322d7bee2b5d7da67093a9dabff',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['paramapiversion_3907',['ParamApiVersion',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#ab930f933c33983f0c21c6dd614b896ec',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['paramserverport_3908',['ParamServerPort',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_interop_1_1_d_m_api_constants.html#a8dcd2fa9f5a2900252b878d8ad560796',1,'Tgstation::Server::Host::Components::Interop::DMApiConstants']]], + ['password_3909',['password',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0af57fc7dec5c5f69ae6ba15756031a7',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['passwordhasher_3910',['passwordHasher',['../class_tgstation_1_1_server_1_1_host_1_1_security_1_1_cryptography_suite.html#ad519d6aa46f39a52f9a7b50e0f181fd9',1,'Tgstation::Server::Host::Security::CryptographySuite']]], + ['passwordsecurityschemeid_3911',['PasswordSecuritySchemeId',['../class_tgstation_1_1_server_1_1_host_1_1_core_1_1_swagger_configuration.html#aea41db6a784ee697f5507a6e3ee5990b',1,'Tgstation::Server::Host::Core::SwaggerConfiguration']]], + ['passwordtype_3912',['passwordType',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a6d496510a7558d62c26d917a51226264',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['pendingswappable_3913',['pendingSwappable',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_watchdog_1_1_windows_watchdog.html#a1e9fdb7045235885318ab5bc309bdec3',1,'Tgstation::Server::Host::Components::Watchdog::WindowsWatchdog']]], + ['platformidentifier_3914',['platformIdentifier',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a3c8f7e67bf286c73dd25994db7ed31a5',1,'Tgstation.Server.Host.Components.InstanceFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a3ac5f067400fe019d8375fffc0e83dee',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9103478c93c69deb31f3549ab04dcc84',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_administration_controller.html#aab5c882433d208418174394df71cfab4',1,'Tgstation.Server.Host.Controllers.AdministrationController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_controllers_1_1_instance_controller.html#ac62c0b1b0e346409b20c3054d4a8354a',1,'Tgstation.Server.Host.Controllers.InstanceController.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_seeder.html#a9b30ce06ad99c07d9405020656cc3a1d',1,'Tgstation.Server.Host.Database.DatabaseSeeder.platformIdentifier()'],['../class_tgstation_1_1_server_1_1_host_1_1_setup_1_1_setup_wizard.html#aa225e153a659c2ebdde2e69dc9c46458',1,'Tgstation.Server.Host.Setup.SetupWizard.platformIdentifier()']]], + ['port_3915',['port',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_providers_1_1_irc_provider.html#a0a16e9a0617d8e75740478a5d68a4420',1,'Tgstation::Server::Host::Components::Chat::Providers::IrcProvider']]], + ['portassignmenttcs_3916',['portAssignmentTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#add75954615d8857ffa74ac387d2941c8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['portclosedforreboot_3917',['portClosedForReboot',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#aad62f26263e191e8dd7e658f227128b8',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['postwritehandler_3918',['postWriteHandler',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_posix_byond_installer.html#abaa57b4cd2fdf1ea15b08b81ccd88023',1,'Tgstation.Server.Host.Components.Byond.PosixByondInstaller.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#aca83a69059579020791c6d62721c08fd',1,'Tgstation.Server.Host.Components.InstanceFactory.postWriteHandler()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a9070bfae5692e48611c410eeef52c7af',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.postWriteHandler()']]], + ['primetcs_3919',['primeTcs',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#a524400c2981d28ac310a509e2c6d9732',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['process_3920',['process',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller.html#af72f0ef89d2933aacb840b4371a5d55c',1,'Tgstation::Server::Host::Components::Session::SessionController']]], + ['processexecutor_3921',['processExecutor',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_byond_1_1_windows_byond_installer.html#a9ddafa8d405709ae20f157c9041b4b01',1,'Tgstation.Server.Host.Components.Byond.WindowsByondInstaller.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_dream_maker.html#a8d40fb1d02610364e59b9feedb4e75d9',1,'Tgstation.Server.Host.Components.Deployment.DreamMaker.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_instance_factory.html#a5fdcd121985cce7d20f2d61e0ea5eca4',1,'Tgstation.Server.Host.Components.InstanceFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_controller_factory.html#a1e5abb3512c946d17d762285046b6e56',1,'Tgstation.Server.Host.Components.Session.SessionControllerFactory.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_session_1_1_session_persistor.html#a1e099a9da77ecb396147ac6c4e85f4f0',1,'Tgstation.Server.Host.Components.Session.SessionPersistor.processExecutor()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_static_files_1_1_configuration.html#a0eb31611253abc0c887ec46f1e9b8611',1,'Tgstation.Server.Host.Components.StaticFiles.Configuration.processExecutor()']]], + ['processfeatures_3922',['processFeatures',['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process.html#ab37b740e7d72723a6e5fce40acf040c9',1,'Tgstation.Server.Host.System.Process.processFeatures()'],['../class_tgstation_1_1_server_1_1_host_1_1_system_1_1_process_executor.html#a53a69845e62419a4db84ef86445d1eba',1,'Tgstation.Server.Host.System.ProcessExecutor.processFeatures()']]], + ['productheadervalue_3923',['productHeaderValue',['../class_tgstation_1_1_server_1_1_client_1_1_server_client_factory.html#a5db19a315f04b37200db2761f678661b',1,'Tgstation::Server::Client::ServerClientFactory']]], + ['propagatedexception_3924',['propagatedException',['../class_tgstation_1_1_server_1_1_host_1_1_server.html#a6541983f401f2c25c474573a2d28235c',1,'Tgstation::Server::Host::Server']]], + ['provider_3925',['Provider',['../class_tgstation_1_1_server_1_1_host_1_1_database_1_1_database_collection.html#a710f3756c50252da5daf3e4659feebd6',1,'Tgstation::Server::Host::Database::DatabaseCollection']]], + ['providerfactory_3926',['providerFactory',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a13f4e387e7b5419193b74e1ae3cd0fb5',1,'Tgstation.Server.Host.Components.Chat.ChatManager.providerFactory()'],['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager_factory.html#aed9aa464cbd392d024e4247355aa0cb8',1,'Tgstation.Server.Host.Components.Chat.ChatManagerFactory.providerFactory()']]], + ['providers_3927',['providers',['../class_tgstation_1_1_server_1_1_host_1_1_components_1_1_chat_1_1_chat_manager.html#a38995278392e0456fe18f7605959099a',1,'Tgstation::Server::Host::Components::Chat::ChatManager']]] ]; diff --git a/src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html b/src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html index dec1aad386..3e114449aa 100644 --- a/src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html +++ b/src_2_d_m_a_p_i_2tgs_2_r_e_a_d_m_e_8md.html @@ -3,7 +3,7 @@ - + tgstation-server: src/DMAPI/tgs/README.md File Reference @@ -23,7 +23,7 @@ Logo
    tgstation-server -  4.4.2 +  4.5.0
    The /tg/station 13 server suite
    @@ -32,7 +32,7 @@ - +