-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigurationToolPcSoftware.xml
5819 lines (5805 loc) · 357 KB
/
ConfigurationToolPcSoftware.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ConfigurationTool</name>
</assembly>
<members>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.App">
<summary>
Interaktionslogik für "App.xaml"
</summary>
<summary>
App
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.App.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.App"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.App.OnStartup(System.Windows.StartupEventArgs)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.App.OnExit(System.Windows.ExitEventArgs)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.App.Application_DispatcherUnhandledException(System.Object,System.Windows.Threading.DispatcherUnhandledExceptionEventArgs)">
<summary>
Handles the DispatcherUnhandledException event of the Application control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Threading.DispatcherUnhandledExceptionEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.App.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.App.Main">
<summary>
Application Entry Point.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand">
<summary>
Base class for async executed <see cref="T:System.Windows.Input.ICommand"/>.
</summary>
<seealso cref="T:System.Windows.Input.ICommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand"/> class.
</summary>
</member>
<member name="E:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.CanExecuteChanged">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.CanExecute(System.Object)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.OnCanExecuteChanged">
<summary>
Called when the possible execution of the command changes.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.ExecuteAsync(System.Object)">
<summary>
Executes the command async.
</summary>
<param name="parameter">The parameter for the command execution.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand.AsyncExecution(System.Object)">
<summary>
Gets the method to execute async.
</summary>
<param name="parameter">The parameter of the execution.</param>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand">
<summary>
Base class for <see cref="T:System.Windows.Input.ICommand" /> implementation.
</summary>
<seealso cref="T:System.Windows.Input.ICommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand"/> class.
</summary>
</member>
<member name="E:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand.CanExecuteChanged">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand.CanExecute(System.Object)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand.OnCanExecuteChanged">
<summary>
Called when the possible execution of the command changes.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.CloseWindowCommand">
<summary>
Command to close a window.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.CloseWindowCommand.viewModel">
<summary>
The view model as data context of the window to close.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.CloseWindowCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.CloseWindowCommand" /> class.
</summary>
<param name="viewModel">The view model as data context of the window to close.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.CloseWindowCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenDirectoryInWindowsExplorerCommand">
<summary>
Command to open a directory in the Windows Explorer.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenDirectoryInWindowsExplorerCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenDirectoryInWindowsExplorerCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenDirectoryInWindowsExplorerCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommand">
<summary>
Command to open a file in the Windows Explorer.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommand.GetFileIsNotExistingTranslationString">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommand.GetCannotOpenFileErrorString">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommandBase">
<summary>
Base command to open a file in the Windows Explorer.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommandBase.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommandBase.Execute(System.Object)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommandBase.GetFileIsNotExistingTranslationString">
<summary>
Gets translation <see cref="T:System.String"/> for a not existing file.
</summary>
<returns>The translation <see cref="T:System.String"/>.</returns>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenFileInWindowsExplorerCommandBase.GetCannotOpenFileErrorString">
<summary>
Gets translation <see cref="T:System.String"/> for cannot open the file.
</summary>
<returns>The translation <see cref="T:System.String"/>.</returns>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenInfoWindowCommand">
<summary>
Command to open the info window.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenInfoWindowCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenInfoWindowCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenInfoWindowCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenLogFilesDirectoryCommand">
<summary>
Command to open the directory with the log files of the application.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenLogFilesDirectoryCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenLogFilesDirectoryCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenLogFilesDirectoryCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenUriCommand">
<summary>
Command for opening an uri passed as command parameter.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenUriCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenUriCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.OpenUriCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.ShowInformationDialogCommand">
<summary>
Command for showing an information in a dialog.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.ShowInformationDialogCommand.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.ShowInformationDialogCommand"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.ShowInformationDialogCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ExecutorCommand">
<summary>
Class for executing actions.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ExecutorCommand.#ctor(System.Action)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ExecutorCommand"/> class.
</summary>
<param name="actionToExecute">The double click action.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ExecutorCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.DeployTimemasterWebCommand">
<summary>
Command for deploying Timemaster Web.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.DeployTimemasterWebCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel,EQ3.TMWeb.ConfigurationTool.TimeMasterWebConfiguration.Configuration.FullConfiguration)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.DeployTimemasterWebCommand" /> class.
</summary>
<param name="deployTmWebViewModel">The deploy tm web view model.</param>
<param name="fullConfiguration">The full configuration.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.DeployTimemasterWebCommand.AsyncExecution(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.OpenAddCertificateWindowCommand">
<summary>
A Command for opening the window for adding certificates.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.OpenAddCertificateWindowCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.OpenAddCertificateWindowCommand"/> class.
</summary>
<param name="deployTmWebViewModel">The deploy tm web view model.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.OpenAddCertificateWindowCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ReadIisConfigurationCommand">
<summary>
Command for reading the configuration of the IIS.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ReadIisConfigurationCommand.FullConfiguration">
<summary>
Gets the full configuration.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ReadIisConfigurationCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel,EQ3.TMWeb.ConfigurationTool.TimeMasterWebConfiguration.Configuration.FullConfiguration)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ReadIisConfigurationCommand" /> class.
</summary>
<param name="deployTmWebViewModel">The deploy tm web view model.</param>
<param name="fullConfiguration">The full configuration.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Commands.ReadIisConfigurationCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel">
<summary>
Representation of Certificates as ViewModel
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.#ctor(EQ3.TMWeb.ConfigurationTool.IisConfiguration.Configuration.Certificate)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel" /> class.
</summary>
<param name="certificate">The certificate.</param>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.Issuer">
<summary>
Gets the issuer.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.Subjects">
<summary>
Gets or sets the subjects.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.AreMultipleSubjectsAvailable">
<summary>
Gets a value indicating whether multiple subjects are available (<b>true</b>) or
not (<b>false</b>).
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.IsSelectedSubjectWildcard">
<summary>
Gets a value indicating whether the certificate is a wildcard or not
not (<b>false</b>).
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.SubdomainForWildcard">
<summary>
Gets or sets the subdomain for a wildcard certificate
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.SelectedSubject">
<summary>
Gets or sets the selected subject.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.CertificateHash">
<summary>
Gets the certificate hash.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.ExpiryDate">
<summary>
Gets the expiry date.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.Name">
<summary>
Gets the name.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.CertificateStore">
<summary>
Gets the certificate store.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.CertificateViewModel.AlternateNames">
<summary>
Gets or sets the alternate names to issue.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.EnumToStringValueConverter">
<summary>
Converts a enum to the string value.
</summary>
<seealso cref="T:System.Windows.Data.IValueConverter" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.EnumToStringValueConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.EnumToStringValueConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SelectedCertificateToVisibilityConverter">
<summary>
Converter for converting the selected certificate to a visibility for showing the url preview.
</summary>
<seealso cref="T:System.Windows.Data.IValueConverter" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SelectedCertificateToVisibilityConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SelectedCertificateToVisibilityConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteDeploymentModeTypeToRadioButtonBoolConverter">
<summary>
Converter for converting a <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteDeploymentModeType"/> to a <see cref="T:System.Boolean"/> for the checked state
of a radio button.
</summary>
<seealso cref="T:System.Windows.Data.IValueConverter" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteDeploymentModeTypeToRadioButtonBoolConverter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteDeploymentModeTypeToRadioButtonBoolConverter"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteDeploymentModeTypeToRadioButtonBoolConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteDeploymentModeTypeToRadioButtonBoolConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToBrushConverter">
<summary>
Converter for converting a <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteStateType"/> to a <see cref="T:System.Windows.Media.Brush"/>.
</summary>
<seealso cref="T:System.Windows.Data.IValueConverter" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToBrushConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToBrushConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToStringConverter">
<summary>
Converter for converting a <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteStateType"/> to a <see cref="T:System.String"/>.
</summary>
<seealso cref="T:System.Windows.Data.IValueConverter" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToStringConverter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToStringConverter"/> class.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToStringConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.Converter.SiteStateTypeToStringConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel">
<summary>
View model for deploying Timemaster Web.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.#ctor(EQ3.TMWeb.ConfigurationTool.TimeMasterWebConfiguration.Configuration.FullConfiguration)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel" /> class.
</summary>
<param name="fullConfiguration">The full configuration.</param>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.Item(System.String)">
<inheritdoc />
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.DeployTimemasterWebCommand">
<summary>
Gets or sets the command to deploy Timemaster Web.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.ReadIisConfigurationCommand">
<summary>
Gets or sets the command for reading the IIS configuration.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.CloseWindowCommand">
<summary>
Gets or sets the close last opened window command.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.OpenAddCertificateWindowCommand">
<summary>
Gets or sets the open add certificate window command.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.SiteDeploymentMode">
<summary>
Gets or sets the site deployment mode.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.ExistingSites">
<summary>
Gets or sets the existing sites.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.HasExistingSitesElements">
<summary>
Gets a value indicating whether existing sites has at least one element.
</summary>
<value>
<c>true</c> if this instance has existing sites elements; otherwise, <c>false</c>.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.SelectedSite">
<summary>
Gets or sets the selected site.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.NewWebsitePort">
<summary>
Gets or sets the port of the new website.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.WasDeploymentSuccessful">
<summary>
Gets or sets a value indicating whether the deployment was successful (<b>true</b>) or
not (<b>false</b>).
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.Error">
<inheritdoc />
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.NewWebsiteProtocol">
<summary>
Gets or sets the new website protocol.
</summary>
<value>
The new website protocol.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.AvailableProtocols">
<summary>
Gets the available protocols.
</summary>
<value>
The available protocols.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.Certificates">
<summary>
Gets or sets the certificates.
</summary>
<value>
The certificates.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.SelectedCertificate">
<summary>
Gets or sets the selected certificate.
</summary>
<value>
The selected certificate.
</value>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.DeployTmWebViewModel.ImportCertificates(System.Collections.Generic.IEnumerable{EQ3.TMWeb.ConfigurationTool.IisConfiguration.Configuration.Certificate})">
<summary>
Imports certificates.
</summary>
<param name="certificates">The certificates to import.</param>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.PortConfiguration">
<summary>
Port configuration class for a new tm web site.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.PortConfiguration.Port">
<summary>
Gets or sets the port.
</summary>
<value>
The port.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.PortConfiguration.ForbiddenPorts">
<summary>
Gets or sets the forbidden ports.
</summary>
<value>
The forbidden ports.
</value>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteApplicationViewModel">
<summary>
View model for a application of a site.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteApplicationViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteApplicationViewModel"/> class.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteApplicationViewModel.Path">
<summary>
Gets or sets the path of the application.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel">
<summary>
View model for a binding of a website.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel"/> class.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel.Protocol">
<summary>
Gets or sets the protocol of the binding (e.g. "http").
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel.BindingInformation">
<summary>
Gets or sets the general information about the binding.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel.Port">
<summary>
Gets the port based on the binding information.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteBindingViewModel.ToString">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteDeploymentModeType">
<summary>
Enumeration of site deployment modes.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteDeploymentModeType.None">
<summary>
The deployment mode is not chosen.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteDeploymentModeType.NewSite">
<summary>
A new site should be created during deployment.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteDeploymentModeType.ExistingSite">
<summary>
A existing site should be edited during deployment.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteStateType">
<summary>
Enumeration of states of a site.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteStateType.Started">
<summary>
The website is started.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteStateType.Stopped">
<summary>
The website is stopped.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel">
<summary>
View model for a website of a IIS.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel"/> class.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.Name">
<summary>
Gets or sets the name.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.Bindings">
<summary>
Gets or sets the website bindings.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.BindingsAsString">
<summary>
Gets the bindings as <see cref="T:System.String"/>.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.State">
<summary>
Gets or sets the state of the website.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.SiteApplications">
<summary>
Gets or sets the website applications.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.SiteApplicationsAmount">
<summary>
Gets the amount of applications of the site.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.ApplicationsInfo">
<summary>
Gets an information about the applications of the .
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.IsValid">
<summary>
Returns true if site is valid.
</summary>
<value>
<c>true</c> if this instance is valid; otherwise, <c>false</c>.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.DeployTmWeb.SiteViewModel.ValidityInformation">
<summary>
Gets the validity information.
</summary>
<value>
The validity information.
</value>
<exception cref="T:System.NotImplementedException"></exception>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel">
<summary>
View model for the activation of the Windows features related to the IIS.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel"/> class.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel.CloseWindowCommand">
<summary>
Gets or sets the close last opened window command.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel.ActivateIisFeaturesCommand">
<summary>
Gets or sets the activate IIS features command.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel.IsClosingAllowed">
<summary>
Gets or sets a value indicating whether closing the view is allowed (<b>true</b>)
or not (<b>false</b>).
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel.IsIndeterminateProgress">
<summary>
Gets or sets a value indicating whether the progress is shown as indeterminate
progress (<b>true</b>) or in percent (<b>false</b>).
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel.Progress">
<summary>
Gets or sets the progress.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.Commands.ActivateIisFeaturesCommand">
<summary>
Command to activate the IIS features.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.Commands.ActivateIisFeaturesCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.ActivateIisFeaturesViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.Commands.ActivateIisFeaturesCommand" /> class.
</summary>
<param name="viewModel">The view model.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ActivateIisFeatures.Commands.ActivateIisFeaturesCommand.AsyncExecution(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateType">
<summary>
Type of adding a certificate.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateType.Generate">
<summary>
Represents generating a certificate.
</summary>
</member>
<member name="F:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateType.Import">
<summary>
Represents importing a certificate.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel">
<summary>
View model of adding a certificate.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
<seealso cref="T:System.ComponentModel.IDataErrorInfo" />
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.CertificatePasswordForImport">
<summary>
Gets the certificate password for import.
</summary>
<value>
The certificate password for import.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.WasAddingCertificateSuccessful">
<summary>
Gets or sets a value indicating whether [was adding certificate successful].
</summary>
<value>
<c>true</c> if [was adding certificate successful]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.AddCertificateType">
<summary>
Gets or sets the type of adding a certificate.
</summary>
<value>
The type of adding a certificate.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.CertificateFileNameForImport">
<summary>
Gets or sets the certificate file name for import.
</summary>
<value>
The certificate file name for import.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.SelectCertificateFileNameCommand">
<summary>
Gets the select certificate file name command.
</summary>
<value>
The select certificate file name command.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.CloseWindowCommand">
<summary>
Gets or sets the close window command.
</summary>
<value>
The close window command.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.AddCertificateCommand">
<summary>
Gets or sets the add certificate command.
</summary>
<value>
The add certificate command.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.Error">
<inheritdoc />
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.Item(System.String)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel"/> class.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.AddCertificateCommand">
<summary>
Command for adding a certificate.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.AddCertificateCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.AddCertificateCommand"/> class.
</summary>
<param name="addCertificateViewModel">The add certificate view model.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.AddCertificateCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.SelectCertificateFileNameCommand">
<summary>
Command for selecting a file name of a certificate inclusive full path.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.SelectCertificateFileNameCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.AddCertificateViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.SelectCertificateFileNameCommand"/> class.
</summary>
<param name="addCertificateViewModel">The add certificate view model.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Commands.SelectCertificateFileNameCommand.Execute(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Converter.AddCertificateTypeToRadioButtonBoolConverter">
<summary>
Converter for converting a add certificate type to a radio button bool.
</summary>
<seealso cref="T:System.Windows.Data.IValueConverter" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Converter.AddCertificateTypeToRadioButtonBoolConverter.Convert(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.AddCertificate.Converter.AddCertificateTypeToRadioButtonBoolConverter.ConvertBack(System.Object,System.Type,System.Object,System.Globalization.CultureInfo)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel">
<summary>
Base class for view model classes.
</summary>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel"/> class.
</summary>
</member>
<member name="E:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel.PropertyChanged">
<inheritdoc />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel.OnPropertyChanged(System.String)">
<summary>
Called when a property changed.
</summary>
<param name="propertyName">The property name.</param>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel">
<summary>
View model for the view for changing the password of the predefined administrative user.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.BaseViewModel" />
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.LoadConfigurationFromDatabaseCommand">
<summary>
Gets or sets the load configuration from database command.
</summary>
<value>
The load configuration from database command.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.CloseWindowCommand">
<summary>
Gets or sets the close last opened window command.
</summary>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.RecoverPredefinedAdministrativeUserCommand">
<summary>
Gets or sets the recover predefined administrative user command.
</summary>
<value>
The recover predefined administrative user command.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.IsPredefinedAdministrativeUserExisting">
<summary>
Gets or sets a value indicating whether this instance is predefined administrative user existing.
</summary>
<value>
<c>true</c> if this instance is predefined administrative user existing; otherwise, <c>false</c>.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.PredefinedAdministrativeUserName">
<summary>
Gets or sets the name of the predefined administrative user.
</summary>
<value>
The name of the predefined administrative user.
</value>
</member>
<member name="P:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.PredefinedAdministrativeUserPassword">
<summary>
Gets or sets the predefined administrative user password.
</summary>
<value>
The predefined administrative user password.
</value>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel.#ctor">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel"/> class.
</summary>
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.LoadConfigurationFromDatabaseCommand">
<summary>
The command for loading configuration from database.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.LoadConfigurationFromDatabaseCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.LoadConfigurationFromDatabaseCommand"/> class.
</summary>
<param name="changePredefinedAdministrativeUserPasswordViewModel">The change predefined administrative user password view model.</param>
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.LoadConfigurationFromDatabaseCommand.AsyncExecution(System.Object)">
<inheritdoc />
</member>
<member name="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.RecoverPredefinedAdministrativeUserCommand">
<summary>
The command for recovering the predefined administrative user.
</summary>
<seealso cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.Commands.BaseAsyncCommand" />
</member>
<member name="M:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.RecoverPredefinedAdministrativeUserCommand.#ctor(EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.ChangePredefinedAdministrativeUserPasswordViewModel)">
<summary>
Initializes a new instance of the <see cref="T:EQ3.TMWeb.ConfigurationTool.PcSoftware.ViewModel.ChangePredefinedAdministrativeUserPassword.Commands.RecoverPredefinedAdministrativeUserCommand"/> class.
</summary>