-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathTaskBuilderTestTask.cs
More file actions
1739 lines (1561 loc) · 46.3 KB
/
Copy pathTaskBuilderTestTask.cs
File metadata and controls
1739 lines (1561 loc) · 46.3 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Reflection;
using Microsoft.Build.Framework;
#nullable disable
namespace Microsoft.Build.UnitTests.BackEnd
{
/// <summary>
/// A task used for testing the TaskExecutionHost, which reports what the TaskExecutionHost does to it.
/// </summary>
public class TaskBuilderTestTask : IGeneratedTask
{
/// <summary>
/// A custom <see cref="IConvertible"/> value type.
/// </summary>
/// <remarks>
/// Types like this one can be used only as Output parameter types because they can be converted to string
/// but not from string.
/// </remarks>
[Serializable]
public struct CustomStruct : IConvertible
{
private readonly object _value;
/// <summary>
/// Using <see cref="IConvertible"/> as the type of the <see cref="_value"/> field triggers a BinaryFormatter bug.
/// </summary>
private IConvertible Value => (IConvertible)_value;
public CustomStruct(IConvertible value)
{
_value = value;
}
public TypeCode GetTypeCode() => Value.GetTypeCode();
public bool ToBoolean(IFormatProvider provider) => Value.ToBoolean(provider);
public byte ToByte(IFormatProvider provider) => Value.ToByte(provider);
public char ToChar(IFormatProvider provider) => Value.ToChar(provider);
public DateTime ToDateTime(IFormatProvider provider) => Value.ToDateTime(provider);
public decimal ToDecimal(IFormatProvider provider) => Value.ToDecimal(provider);
public double ToDouble(IFormatProvider provider) => Value.ToDouble(provider);
public short ToInt16(IFormatProvider provider) => Value.ToInt16(provider);
public int ToInt32(IFormatProvider provider) => Value.ToInt32(provider);
public long ToInt64(IFormatProvider provider) => Value.ToInt64(provider);
public sbyte ToSByte(IFormatProvider provider) => Value.ToSByte(provider);
public float ToSingle(IFormatProvider provider) => Value.ToSingle(provider);
public string ToString(IFormatProvider provider) => Value.ToString(provider);
public object ToType(Type conversionType, IFormatProvider provider) => Value.ToType(conversionType, provider);
public ushort ToUInt16(IFormatProvider provider) => Value.ToUInt16(provider);
public uint ToUInt32(IFormatProvider provider) => Value.ToUInt32(provider);
public ulong ToUInt64(IFormatProvider provider) => Value.ToUInt64(provider);
}
/// <summary>
/// The <see cref="CustomStruct"/> value returned from <see cref="CustomStructOutput"/>.
/// </summary>
internal static readonly CustomStruct s_customStruct = new CustomStruct(42);
/// <summary>
/// The <see cref="CustomStruct[]"/> value returned from <see cref="CustomStructArrayOutput"/>.
/// </summary>
internal static readonly CustomStruct[] s_customStructArray = new CustomStruct[] { new CustomStruct(43), new CustomStruct(44) };
/// <summary>
/// An enum used to validate engine-level binding of string values to enum task parameters.
/// </summary>
public enum TestTaskEnum
{
None,
First,
Second,
}
/// <summary>
/// The task host.
/// </summary>
private ITestTaskHost _testTaskHost;
/// <summary>
/// The value to return from Execute.
/// </summary>
private bool _executeReturnValue;
/// <summary>
/// The value for the BoolOutput.
/// </summary>
private bool _boolOutput;
/// <summary>
/// The value for the BoolArrayOutput.
/// </summary>
private bool[] _boolArrayOutput;
/// <summary>
/// The value for the ByteOutput.
/// </summary>
private byte _byteOutput;
/// <summary>
/// The value for the ByteArrayOutput.
/// </summary>
private byte[] _byteArrayOutput;
/// <summary>
/// The value for the SByteOutput.
/// </summary>
private sbyte _sbyteOutput;
/// <summary>
/// The value for the SByteArrayOutput.
/// </summary>
private sbyte[] _sbyteArrayOutput;
/// <summary>
/// The value for the DoubleOutput.
/// </summary>
private double _doubleOutput;
/// <summary>
/// The value for the DoubleArrayOutput.
/// </summary>
private double[] _doubleArrayOutput;
/// <summary>
/// The value for the FloatOutput.
/// </summary>
private float _floatOutput;
/// <summary>
/// The value for the FloatArrayOutput.
/// </summary>
private float[] _floatArrayOutput;
/// <summary>
/// The value for the ShortOutput.
/// </summary>
private short _shortOutput;
/// <summary>
/// The value for the ShortArrayOutput.
/// </summary>
private short[] _shortArrayOutput;
/// <summary>
/// The value for the UShortOutput.
/// </summary>
private ushort _ushortOutput;
/// <summary>
/// The value for the UShortArrayOutput.
/// </summary>
private ushort[] _ushortArrayOutput;
/// <summary>
/// The value for the IntOutput.
/// </summary>
private int _intOutput;
/// <summary>
/// The value for the IntArrayOutput.
/// </summary>
private int[] _intArrayOutput;
/// <summary>
/// The value for the UIntOutput.
/// </summary>
private uint _uintOutput;
/// <summary>
/// The value for the UIntArrayOutput.
/// </summary>
private uint[] _uintArrayOutput;
/// <summary>
/// The value for the LongOutput.
/// </summary>
private long _longOutput;
/// <summary>
/// The value for the LongArrayOutput.
/// </summary>
private long[] _longArrayOutput;
/// <summary>
/// The value for the ULongOutput.
/// </summary>
private ulong _ulongOutput;
/// <summary>
/// The value for the ULongArrayOutput.
/// </summary>
private ulong[] _ulongArrayOutput;
/// <summary>
/// The value for the DecimalOutput.
/// </summary>
private decimal _decimalOutput;
/// <summary>
/// The value for the DecimalArrayOutput.
/// </summary>
private decimal[] _decimalArrayOutput;
/// <summary>
/// The value for the CharOutput.
/// </summary>
private char _charOutput;
/// <summary>
/// The value for the CharArrayOutput.
/// </summary>
private char[] _charArrayOutput;
/// <summary>
/// The value for the StringOutput.
/// </summary>
private string _stringOutput;
/// <summary>
/// The value for the StringArrayOutput.
/// </summary>
private string[] _stringArrayOutput;
/// <summary>
/// The value for the DateTimeOutput.
/// </summary>
private DateTime _dateTimeOutput;
/// <summary>
/// The value for the DateTimeArrayOutput.
/// </summary>
private DateTime[] _dateTimeArrayOutput;
/// <summary>
/// The value for the ItemOutput.
/// </summary>
private ITaskItem _itemOutput;
/// <summary>
/// The value for the ItemArrayOutput.
/// </summary>
private ITaskItem[] _itemArrayOutput;
/// <summary>
/// The value for the AbsolutePathOutput.
/// </summary>
private AbsolutePath _absolutePathOutput;
/// <summary>
/// The value for the AbsolutePathArrayOutput.
/// </summary>
private AbsolutePath[] _absolutePathArrayOutput;
/// <summary>
/// The value for the FileInfoOutput.
/// </summary>
private System.IO.FileInfo _fileInfoOutput;
/// <summary>
/// The value for the TaskItemIntOutput.
/// </summary>
private ITaskItem<int> _taskItemIntOutput;
/// <summary>
/// The value for the TaskItemIntArrayOutput.
/// </summary>
private ITaskItem<int>[] _taskItemIntArrayOutput;
/// <summary>
/// The value for the FileInfoArrayOutput.
/// </summary>
private System.IO.FileInfo[] _fileInfoArrayOutput;
/// <summary>
/// The value for the DirectoryInfoOutput.
/// </summary>
private System.IO.DirectoryInfo _directoryInfoOutput;
/// <summary>
/// The value for the DirectoryInfoArrayOutput.
/// </summary>
private System.IO.DirectoryInfo[] _directoryInfoArrayOutput;
/// <summary>
/// The value for the TaskItemFileInfoOutput.
/// </summary>
private ITaskItem<System.IO.FileInfo> _taskItemFileInfoOutput;
/// <summary>
/// The value for the TaskItemFileInfoArrayOutput.
/// </summary>
private ITaskItem<System.IO.FileInfo>[] _taskItemFileInfoArrayOutput;
/// <summary>
/// The value for the TaskItemDirectoryInfoOutput.
/// </summary>
private ITaskItem<System.IO.DirectoryInfo> _taskItemDirectoryInfoOutput;
/// <summary>
/// The value for the TaskItemDirectoryInfoArrayOutput.
/// </summary>
private ITaskItem<System.IO.DirectoryInfo>[] _taskItemDirectoryInfoArrayOutput;
/// <summary>
/// Property determining if Execute() should throw or not.
/// </summary>
public bool ThrowOnExecute
{
internal get;
set;
}
/// <summary>
/// A boolean parameter.
/// </summary>
public bool BoolParam
{
set
{
_boolOutput = value;
_testTaskHost?.ParameterSet("BoolParam", value);
}
}
/// <summary>
/// A boolean array parameter.
/// </summary>
public bool[] BoolArrayParam
{
set
{
_boolArrayOutput = value;
_testTaskHost?.ParameterSet("BoolArrayParam", value);
}
}
/// <summary>
/// A byte parameter.
/// </summary>
public byte ByteParam
{
set
{
_byteOutput = value;
_testTaskHost?.ParameterSet("ByteParam", value);
}
}
/// <summary>
/// A byte array parameter.
/// </summary>
public byte[] ByteArrayParam
{
set
{
_byteArrayOutput = value;
_testTaskHost?.ParameterSet("ByteArrayParam", value);
}
}
/// <summary>
/// An sbyte parameter.
/// </summary>
public sbyte SByteParam
{
set
{
_sbyteOutput = value;
_testTaskHost?.ParameterSet("SByteParam", value);
}
}
/// <summary>
/// An sbyte array parameter.
/// </summary>
public sbyte[] SByteArrayParam
{
set
{
_sbyteArrayOutput = value;
_testTaskHost?.ParameterSet("SByteArrayParam", value);
}
}
/// <summary>
/// A double parameter.
/// </summary>
public double DoubleParam
{
set
{
_doubleOutput = value;
_testTaskHost?.ParameterSet("DoubleParam", value);
}
}
/// <summary>
/// A double array parameter.
/// </summary>
public double[] DoubleArrayParam
{
set
{
_doubleArrayOutput = value;
_testTaskHost?.ParameterSet("DoubleArrayParam", value);
}
}
/// <summary>
/// A float parameter.
/// </summary>
public float FloatParam
{
set
{
_floatOutput = value;
_testTaskHost?.ParameterSet("FloatParam", value);
}
}
/// <summary>
/// A float array parameter.
/// </summary>
public float[] FloatArrayParam
{
set
{
_floatArrayOutput = value;
_testTaskHost?.ParameterSet("FloatArrayParam", value);
}
}
/// <summary>
/// A short parameter.
/// </summary>
public short ShortParam
{
set
{
_shortOutput = value;
_testTaskHost?.ParameterSet("ShortParam", value);
}
}
/// <summary>
/// A short array parameter.
/// </summary>
public short[] ShortArrayParam
{
set
{
_shortArrayOutput = value;
_testTaskHost?.ParameterSet("ShortArrayParam", value);
}
}
/// <summary>
/// A ushort parameter.
/// </summary>
public ushort UShortParam
{
set
{
_ushortOutput = value;
_testTaskHost?.ParameterSet("UShortParam", value);
}
}
/// <summary>
/// A ushort array parameter.
/// </summary>
public ushort[] UShortArrayParam
{
set
{
_ushortArrayOutput = value;
_testTaskHost?.ParameterSet("UShortArrayParam", value);
}
}
/// <summary>
/// An integer parameter.
/// </summary>
public int IntParam
{
set
{
_intOutput = value;
_testTaskHost?.ParameterSet("IntParam", value);
}
}
/// <summary>
/// An integer array parameter.
/// </summary>
public int[] IntArrayParam
{
set
{
_intArrayOutput = value;
_testTaskHost?.ParameterSet("IntArrayParam", value);
}
}
/// <summary>
/// A uint parameter.
/// </summary>
public uint UIntParam
{
set
{
_uintOutput = value;
_testTaskHost?.ParameterSet("UIntParam", value);
}
}
/// <summary>
/// A uint array parameter.
/// </summary>
public uint[] UIntArrayParam
{
set
{
_uintArrayOutput = value;
_testTaskHost?.ParameterSet("UIntArrayParam", value);
}
}
/// <summary>
/// A long parameter.
/// </summary>
public long LongParam
{
set
{
_longOutput = value;
_testTaskHost?.ParameterSet("LongParam", value);
}
}
/// <summary>
/// A long array parameter.
/// </summary>
public long[] LongArrayParam
{
set
{
_longArrayOutput = value;
_testTaskHost?.ParameterSet("LongArrayParam", value);
}
}
/// <summary>
/// A ulong parameter.
/// </summary>
public ulong ULongParam
{
set
{
_ulongOutput = value;
_testTaskHost?.ParameterSet("ULongParam", value);
}
}
/// <summary>
/// A ulong array parameter.
/// </summary>
public ulong[] ULongArrayParam
{
set
{
_ulongArrayOutput = value;
_testTaskHost?.ParameterSet("ULongArrayParam", value);
}
}
/// <summary>
/// A decimal parameter.
/// </summary>
public decimal DecimalParam
{
set
{
_decimalOutput = value;
_testTaskHost?.ParameterSet("DecimalParam", value);
}
}
/// <summary>
/// A decimal array parameter.
/// </summary>
public decimal[] DecimalArrayParam
{
set
{
_decimalArrayOutput = value;
_testTaskHost?.ParameterSet("DecimalArrayParam", value);
}
}
/// <summary>
/// A char parameter.
/// </summary>
public char CharParam
{
set
{
_charOutput = value;
_testTaskHost?.ParameterSet("CharParam", value);
}
}
/// <summary>
/// A char array parameter.
/// </summary>
public char[] CharArrayParam
{
set
{
_charArrayOutput = value;
_testTaskHost?.ParameterSet("CharArrayParam", value);
}
}
/// <summary>
/// A string parameter.
/// </summary>
public string StringParam
{
set
{
_stringOutput = value;
_testTaskHost?.ParameterSet("StringParam", value);
}
}
/// <summary>
/// A string array parameter.
/// </summary>
public string[] StringArrayParam
{
set
{
_stringArrayOutput = value;
_testTaskHost?.ParameterSet("StringArrayParam", value);
}
}
/// <summary>
/// A DateTime parameter.
/// </summary>
public DateTime DateTimeParam
{
set
{
_dateTimeOutput = value;
_testTaskHost?.ParameterSet("DateTimeParam", value);
}
}
/// <summary>
/// A DateTime array parameter.
/// </summary>
public DateTime[] DateTimeArrayParam
{
set
{
_dateTimeArrayOutput = value;
_testTaskHost?.ParameterSet("DateTimeArrayParam", value);
}
}
/// <summary>
/// An item parameter.
/// </summary>
public ITaskItem ItemParam
{
set
{
_itemOutput = value;
_testTaskHost?.ParameterSet("ItemParam", value);
}
}
/// <summary>
/// An item array parameter.
/// </summary>
public ITaskItem[] ItemArrayParam
{
set
{
_itemArrayOutput = value;
_testTaskHost?.ParameterSet("ItemArrayParam", value);
}
}
/// <summary>
/// An AbsolutePath parameter.
/// </summary>
public AbsolutePath AbsolutePathParam
{
set
{
_absolutePathOutput = value;
_testTaskHost?.ParameterSet("AbsolutePathParam", value);
}
}
/// <summary>
/// An enum parameter, used to validate engine-level binding of string values to enum task parameters.
/// </summary>
public TestTaskEnum EnumParam
{
set
{
_testTaskHost?.ParameterSet("EnumParam", value);
}
}
/// <summary>
/// An AbsolutePath array parameter.
/// </summary>
public AbsolutePath[] AbsolutePathArrayParam
{
set
{
_absolutePathArrayOutput = value;
_testTaskHost?.ParameterSet("AbsolutePathArrayParam", value);
}
}
/// <summary>
/// A TaskItem<int> parameter.
/// </summary>
public ITaskItem<int> TaskItemIntParam
{
set
{
_taskItemIntOutput = value;
_testTaskHost?.ParameterSet("TaskItemIntParam", value);
}
}
/// <summary>
/// A TaskItem<string> parameter.
/// </summary>
public ITaskItem<string> TaskItemStringParam
{
set
{
_testTaskHost?.ParameterSet("TaskItemStringParam", value);
}
}
/// <summary>
/// A TaskItem<bool> parameter.
/// </summary>
public ITaskItem<bool> TaskItemBoolParam
{
set
{
_testTaskHost?.ParameterSet("TaskItemBoolParam", value);
}
}
/// <summary>
/// A TaskItem<int> array parameter.
/// </summary>
public ITaskItem<int>[] TaskItemIntArrayParam
{
set
{
_taskItemIntArrayOutput = value;
_testTaskHost?.ParameterSet("TaskItemIntArrayParam", value);
}
}
/// <summary>
/// A FileInfo parameter.
/// </summary>
public System.IO.FileInfo FileInfoParam
{
set
{
_fileInfoOutput = value;
_testTaskHost?.ParameterSet("FileInfoParam", value);
}
}
/// <summary>
/// A FileInfo array parameter.
/// </summary>
public System.IO.FileInfo[] FileInfoArrayParam
{
set
{
_fileInfoArrayOutput = value;
_testTaskHost?.ParameterSet("FileInfoArrayParam", value);
}
}
/// <summary>
/// A DirectoryInfo parameter.
/// </summary>
public System.IO.DirectoryInfo DirectoryInfoParam
{
set
{
_directoryInfoOutput = value;
_testTaskHost?.ParameterSet("DirectoryInfoParam", value);
}
}
/// <summary>
/// A DirectoryInfo array parameter.
/// </summary>
public System.IO.DirectoryInfo[] DirectoryInfoArrayParam
{
set
{
_directoryInfoArrayOutput = value;
_testTaskHost?.ParameterSet("DirectoryInfoArrayParam", value);
}
}
/// <summary>
/// An ITaskItem<FileInfo> parameter.
/// </summary>
public ITaskItem<System.IO.FileInfo> TaskItemFileInfoParam
{
set
{
_taskItemFileInfoOutput = value;
_testTaskHost?.ParameterSet("TaskItemFileInfoParam", value);
}
}
/// <summary>
/// An ITaskItem<FileInfo> array parameter.
/// </summary>
public ITaskItem<System.IO.FileInfo>[] TaskItemFileInfoArrayParam
{
set
{
_taskItemFileInfoArrayOutput = value;
_testTaskHost?.ParameterSet("TaskItemFileInfoArrayParam", value);
}
}
/// <summary>
/// An ITaskItem<DirectoryInfo> parameter.
/// </summary>
public ITaskItem<System.IO.DirectoryInfo> TaskItemDirectoryInfoParam
{
set
{
_taskItemDirectoryInfoOutput = value;
_testTaskHost?.ParameterSet("TaskItemDirectoryInfoParam", value);
}
}
/// <summary>
/// An ITaskItem<DirectoryInfo> array parameter.
/// </summary>
public ITaskItem<System.IO.DirectoryInfo>[] TaskItemDirectoryInfoArrayParam
{
set
{
_taskItemDirectoryInfoArrayOutput = value;
_testTaskHost?.ParameterSet("TaskItemDirectoryInfoArrayParam", value);
}
}
/// <summary>
/// The Execute return value parameter.
/// </summary>
[Required]
public bool ExecuteReturnParam
{
set
{
_executeReturnValue = value;
_testTaskHost?.ParameterSet("ExecuteReturnParam", value);
}
}
/// <summary>
/// A boolean output.
/// </summary>
[Output]
public bool BoolOutput
{
get
{
_testTaskHost?.OutputRead("BoolOutput", _boolOutput);
return _boolOutput;
}
}
/// <summary>
/// A boolean array output.
/// </summary>
[Output]
public bool[] BoolArrayOutput
{
get
{
_testTaskHost?.OutputRead("BoolArrayOutput", _boolArrayOutput);
return _boolArrayOutput;
}
}
/// <summary>
/// A byte output.
/// </summary>
[Output]
public byte ByteOutput
{
get
{
_testTaskHost?.OutputRead("ByteOutput", _byteOutput);
return _byteOutput;
}
}
/// <summary>
/// A byte array output.
/// </summary>
[Output]
public byte[] ByteArrayOutput
{
get
{
_testTaskHost?.OutputRead("ByteArrayOutput", _byteArrayOutput);
return _byteArrayOutput;
}
}
/// <summary>
/// An sbyte output.
/// </summary>
[Output]
public sbyte SByteOutput
{
get
{
_testTaskHost?.OutputRead("SByteOutput", _sbyteOutput);
return _sbyteOutput;
}
}
/// <summary>
/// An sbyte array output.
/// </summary>
[Output]
public sbyte[] SByteArrayOutput
{
get
{
_testTaskHost?.OutputRead("SByteArrayOutput", _sbyteArrayOutput);
return _sbyteArrayOutput;
}
}
/// <summary>
/// A double output.
/// </summary>
[Output]
public double DoubleOutput
{
get
{
_testTaskHost?.OutputRead("DoubleOutput", _doubleOutput);
return _doubleOutput;
}
}
/// <summary>
/// A double array output.
/// </summary>
[Output]
public double[] DoubleArrayOutput
{
get
{
_testTaskHost?.OutputRead("DoubleArrayOutput", _doubleArrayOutput);
return _doubleArrayOutput;
}
}
/// <summary>
/// A float output.
/// </summary>
[Output]
public float FloatOutput