forked from RWS/studio-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.yml
More file actions
958 lines (952 loc) · 45.1 KB
/
Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.yml
File metadata and controls
958 lines (952 loc) · 45.1 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
### YamlMime:ManagedReference
items:
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
commentId: T:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
id: AbstractFileContentProcessingAutomaticTask
parent: Sdl.ProjectAutomation.AutomaticTasks
children:
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.#ctor
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel(System.Boolean)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(System.String,System.String,System.String,Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(System.String,System.String,System.String,System.String)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting``1
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter(Sdl.ProjectAutomation.Core.ProjectFile)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile(Sdl.ProjectAutomation.Core.ProjectFile)
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles
- Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId
langs:
- csharp
- vb
name: AbstractFileContentProcessingAutomaticTask
nameWithType: AbstractFileContentProcessingAutomaticTask
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
type: Class
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Base class for file content processing automatic task.
example: []
syntax:
content: public abstract class AbstractFileContentProcessingAutomaticTask
content.vb: Public MustInherit Class AbstractFileContentProcessingAutomaticTask
inheritance:
- System.Object
inheritedMembers:
- System.Object.ToString
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting``1
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting``1
id: GetSetting``1
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: GetSetting<TSettings>()
nameWithType: AbstractFileContentProcessingAutomaticTask.GetSetting<TSettings>()
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting<TSettings>()
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Gets the task settings of the project.
example: []
syntax:
content: 'protected TSettings GetSetting<TSettings>() where TSettings : ISettingsGroup, new()'
typeParameters:
- id: TSettings
description: ''
return:
type: '{TSettings}'
description: ''
content.vb: Protected Function GetSetting(Of TSettings As {ISettingsGroup, New})() As TSettings
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting*
nameWithType.vb: AbstractFileContentProcessingAutomaticTask.GetSetting(Of TSettings)()
fullName.vb: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting(Of TSettings)()
name.vb: GetSetting(Of TSettings)()
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask
id: OnInitializeTask
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: OnInitializeTask()
nameWithType: AbstractFileContentProcessingAutomaticTask.OnInitializeTask()
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask()
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Called when the task is initialized. At this moment the Project and TaskFiles are available.
example: []
syntax:
content: protected virtual void OnInitializeTask()
content.vb: Protected Overridable Sub OnInitializeTask()
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete
id: TaskComplete
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: TaskComplete()
nameWithType: AbstractFileContentProcessingAutomaticTask.TaskComplete()
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete()
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Called when the task is complete.
example: []
syntax:
content: public virtual void TaskComplete()
content.vb: Public Overridable Sub TaskComplete()
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel(System.Boolean)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel(System.Boolean)
id: Cancel(System.Boolean)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: Cancel(bool)
nameWithType: AbstractFileContentProcessingAutomaticTask.Cancel(bool)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel(bool)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Called when user request cancel manually.
example: []
syntax:
content: public virtual void Cancel(bool doRollback)
parameters:
- id: doRollback
type: System.Boolean
description: ''
content.vb: Public Overridable Sub Cancel(doRollback As Boolean)
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel*
nameWithType.vb: AbstractFileContentProcessingAutomaticTask.Cancel(Boolean)
fullName.vb: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel(Boolean)
name.vb: Cancel(Boolean)
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile(Sdl.ProjectAutomation.Core.ProjectFile)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile(Sdl.ProjectAutomation.Core.ProjectFile)
id: ShouldProcessFile(Sdl.ProjectAutomation.Core.ProjectFile)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: ShouldProcessFile(ProjectFile)
nameWithType: AbstractFileContentProcessingAutomaticTask.ShouldProcessFile(ProjectFile)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile(Sdl.ProjectAutomation.Core.ProjectFile)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Check if the task should process the file.
example: []
syntax:
content: public virtual bool ShouldProcessFile(ProjectFile projectFile)
parameters:
- id: projectFile
type: Sdl.ProjectAutomation.Core.ProjectFile
description: The project file.
return:
type: System.Boolean
description: ''
content.vb: Public Overridable Function ShouldProcessFile(projectFile As ProjectFile) As Boolean
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
id: ConfigureConverter(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: ConfigureConverter(ProjectFile, IMultiFileConverter)
nameWithType: AbstractFileContentProcessingAutomaticTask.ConfigureConverter(ProjectFile, IMultiFileConverter)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter(Sdl.ProjectAutomation.Core.ProjectFile, Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Configures the converter to add your content handler.
example: []
syntax:
content: protected abstract void ConfigureConverter(ProjectFile projectFile, IMultiFileConverter multiFileConverter)
parameters:
- id: projectFile
type: Sdl.ProjectAutomation.Core.ProjectFile
description: The file to processed in this task.
- id: multiFileConverter
type: Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter
description: The converter.
content.vb: Protected MustOverride Sub ConfigureConverter(projectFile As ProjectFile, multiFileConverter As IMultiFileConverter)
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
id: OnFileComplete(Sdl.ProjectAutomation.Core.ProjectFile,Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: OnFileComplete(ProjectFile, IMultiFileConverter)
nameWithType: AbstractFileContentProcessingAutomaticTask.OnFileComplete(ProjectFile, IMultiFileConverter)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete(Sdl.ProjectAutomation.Core.ProjectFile, Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: >-
Called when a file processing is finished. Derived class should implement this method to return information to indicate if the
resulted file content should be uploaded.
example: []
syntax:
content: public virtual bool OnFileComplete(ProjectFile projectFile, IMultiFileConverter multiFileConverter)
parameters:
- id: projectFile
type: Sdl.ProjectAutomation.Core.ProjectFile
description: ''
- id: multiFileConverter
type: Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter
description: ''
return:
type: System.Boolean
description: Returns true to indicate the file is updated. By default it returns false.
content.vb: Public Overridable Function OnFileComplete(projectFile As ProjectFile, multiFileConverter As IMultiFileConverter) As Boolean
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(System.String,System.String,System.String,System.String)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(System.String,System.String,System.String,System.String)
id: CreateReport(System.String,System.String,System.String,System.String)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: CreateReport(string, string, string, string)
nameWithType: AbstractFileContentProcessingAutomaticTask.CreateReport(string, string, string, string)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(string, string, string, string)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: >-
Creates a report for this task. Generally the report data is created in xml format. The xml data will be provided to function as the data parameter.
When a report is created the xml data will be stored as a xml file residing normally under the project/Reports folder. To render the report properly
in the report view, a xslt file should be present in the task implementation project as embeded resource. The xlst file must have extension .xsl.
example: []
syntax:
content: public void CreateReport(string name, string description, string data, string automaticTaskId = "")
parameters:
- id: name
type: System.String
description: The name of the report.
- id: description
type: System.String
description: The description of this Report.
- id: data
type: System.String
description: The xml data of this report.
- id: automaticTaskId
type: System.String
description: >-
(Optional) The ID of the task template to use.
If not provided or not found, the first available task template is used.
content.vb: Public Sub CreateReport(name As String, description As String, data As String, automaticTaskId As String = "")
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport*
nameWithType.vb: AbstractFileContentProcessingAutomaticTask.CreateReport(String, String, String, String)
fullName.vb: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(String, String, String, String)
name.vb: CreateReport(String, String, String, String)
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(System.String,System.String,System.String,Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(System.String,System.String,System.String,Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection)
id: CreateReport(System.String,System.String,System.String,Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: CreateReport(string, string, string, LanguageDirection)
nameWithType: AbstractFileContentProcessingAutomaticTask.CreateReport(string, string, string, LanguageDirection)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(string, string, string, Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: >-
Creates a report with a specified language for this task. Generally the report data is created in xml format. The xml data will be provided to function as the data parameter.
When a report is created the xml data will be stored as a xml file residing normally under the project/Reports folder. To render the report properly
in the report view, a xslt file should be present in the task implementation project as embeded resource. The xlst file must have extension .xsl.
example: []
syntax:
content: public void CreateReport(string name, string description, string data, LanguageDirection languageDirection)
parameters:
- id: name
type: System.String
description: The name of the report.
- id: description
type: System.String
description: The description of this Report.
- id: data
type: System.String
description: The xml data of this report.
- id: languageDirection
type: Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection
description: The language direction of this report.
content.vb: Public Sub CreateReport(name As String, description As String, data As String, languageDirection As LanguageDirection)
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport*
nameWithType.vb: AbstractFileContentProcessingAutomaticTask.CreateReport(String, String, String, LanguageDirection)
fullName.vb: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport(String, String, String, Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection)
name.vb: CreateReport(String, String, String, LanguageDirection)
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter(Sdl.ProjectAutomation.Core.ProjectFile)
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter(Sdl.ProjectAutomation.Core.ProjectFile)
id: GetWordCounter(Sdl.ProjectAutomation.Core.ProjectFile)
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: GetWordCounter(ProjectFile)
nameWithType: AbstractFileContentProcessingAutomaticTask.GetWordCounter(ProjectFile)
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter(Sdl.ProjectAutomation.Core.ProjectFile)
type: Method
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Gets the WordCounter for a file.
example: []
syntax:
content: public WordCounter GetWordCounter(ProjectFile projectFile)
parameters:
- id: projectFile
type: Sdl.ProjectAutomation.Core.ProjectFile
description: The input file.
return:
type: Sdl.ProjectAutomation.AutomaticTasks.WordCounter
description: The WordCounter object
content.vb: Public Function GetWordCounter(projectFile As ProjectFile) As WordCounter
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.#ctor
commentId: M:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.#ctor
id: '#ctor'
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: AbstractFileContentProcessingAutomaticTask()
nameWithType: AbstractFileContentProcessingAutomaticTask.AbstractFileContentProcessingAutomaticTask()
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.AbstractFileContentProcessingAutomaticTask()
type: Constructor
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
syntax:
content: protected AbstractFileContentProcessingAutomaticTask()
content.vb: Protected Sub New()
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.#ctor*
nameWithType.vb: AbstractFileContentProcessingAutomaticTask.New()
fullName.vb: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.New()
name.vb: New()
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project
commentId: P:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project
id: Project
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: Project
nameWithType: AbstractFileContentProcessingAutomaticTask.Project
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project
type: Property
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Gets the project associated with this task.
example: []
syntax:
content: public IProject Project { get; }
parameters: []
return:
type: Sdl.ProjectAutomation.Core.IProject
content.vb: Public ReadOnly Property Project As IProject
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles
commentId: P:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles
id: TaskFiles
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: TaskFiles
nameWithType: AbstractFileContentProcessingAutomaticTask.TaskFiles
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles
type: Property
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Gets the task files associated with this task.
example: []
syntax:
content: public ProjectFile[] TaskFiles { get; }
parameters: []
return:
type: Sdl.ProjectAutomation.Core.ProjectFile[]
content.vb: Public ReadOnly Property TaskFiles As ProjectFile()
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles*
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId
commentId: P:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId
id: TaskId
parent: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask
langs:
- csharp
- vb
name: TaskId
nameWithType: AbstractFileContentProcessingAutomaticTask.TaskId
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId
type: Property
assemblies:
- Sdl.ProjectAutomation.AutomaticTasks
namespace: Sdl.ProjectAutomation.AutomaticTasks
summary: Gets the id of the task.
example: []
syntax:
content: public string TaskId { get; }
parameters: []
return:
type: System.String
content.vb: Public ReadOnly Property TaskId As String
overload: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId*
references:
- uid: Sdl.ProjectAutomation.AutomaticTasks
commentId: N:Sdl.ProjectAutomation.AutomaticTasks
isExternal: true
href: Sdl.html
name: Sdl.ProjectAutomation.AutomaticTasks
nameWithType: Sdl.ProjectAutomation.AutomaticTasks
fullName: Sdl.ProjectAutomation.AutomaticTasks
spec.csharp:
- uid: Sdl
name: Sdl
isExternal: true
href: Sdl.html
- name: .
- uid: Sdl.ProjectAutomation
name: ProjectAutomation
isExternal: true
href: Sdl.ProjectAutomation.html
- name: .
- uid: Sdl.ProjectAutomation.AutomaticTasks
name: AutomaticTasks
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.html
spec.vb:
- uid: Sdl
name: Sdl
isExternal: true
href: Sdl.html
- name: .
- uid: Sdl.ProjectAutomation
name: ProjectAutomation
isExternal: true
href: Sdl.ProjectAutomation.html
- name: .
- uid: Sdl.ProjectAutomation.AutomaticTasks
name: AutomaticTasks
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_GetSetting__1
name: GetSetting
nameWithType: AbstractFileContentProcessingAutomaticTask.GetSetting
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetSetting
- uid: '{TSettings}'
commentId: '!:TSettings'
definition: TSettings
name: TSettings
nameWithType: TSettings
fullName: TSettings
- uid: TSettings
commentId: '!:TSettings'
name: TSettings
nameWithType: TSettings
fullName: TSettings
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_OnInitializeTask
name: OnInitializeTask
nameWithType: AbstractFileContentProcessingAutomaticTask.OnInitializeTask
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnInitializeTask
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_TaskComplete
name: TaskComplete
nameWithType: AbstractFileContentProcessingAutomaticTask.TaskComplete
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskComplete
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_Cancel_System_Boolean_
name: Cancel
nameWithType: AbstractFileContentProcessingAutomaticTask.Cancel
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Cancel
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_ShouldProcessFile_Sdl_ProjectAutomation_Core_ProjectFile_
name: ShouldProcessFile
nameWithType: AbstractFileContentProcessingAutomaticTask.ShouldProcessFile
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ShouldProcessFile
- uid: Sdl.ProjectAutomation.Core.ProjectFile
commentId: T:Sdl.ProjectAutomation.Core.ProjectFile
parent: Sdl.ProjectAutomation.Core
isExternal: true
name: ProjectFile
nameWithType: ProjectFile
fullName: Sdl.ProjectAutomation.Core.ProjectFile
- uid: Sdl.ProjectAutomation.Core
commentId: N:Sdl.ProjectAutomation.Core
isExternal: true
name: Sdl.ProjectAutomation.Core
nameWithType: Sdl.ProjectAutomation.Core
fullName: Sdl.ProjectAutomation.Core
spec.csharp:
- uid: Sdl
name: Sdl
isExternal: true
- name: .
- uid: Sdl.ProjectAutomation
name: ProjectAutomation
isExternal: true
- name: .
- uid: Sdl.ProjectAutomation.Core
name: Core
isExternal: true
spec.vb:
- uid: Sdl
name: Sdl
isExternal: true
- name: .
- uid: Sdl.ProjectAutomation
name: ProjectAutomation
isExternal: true
- name: .
- uid: Sdl.ProjectAutomation.Core
name: Core
isExternal: true
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_ConfigureConverter_Sdl_ProjectAutomation_Core_ProjectFile_Sdl_FileTypeSupport_Framework_IntegrationApi_IMultiFileConverter_
name: ConfigureConverter
nameWithType: AbstractFileContentProcessingAutomaticTask.ConfigureConverter
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.ConfigureConverter
- uid: Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter
commentId: T:Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter
parent: Sdl.FileTypeSupport.Framework.IntegrationApi
isExternal: true
name: IMultiFileConverter
nameWithType: IMultiFileConverter
fullName: Sdl.FileTypeSupport.Framework.IntegrationApi.IMultiFileConverter
- uid: Sdl.FileTypeSupport.Framework.IntegrationApi
commentId: N:Sdl.FileTypeSupport.Framework.IntegrationApi
isExternal: true
name: Sdl.FileTypeSupport.Framework.IntegrationApi
nameWithType: Sdl.FileTypeSupport.Framework.IntegrationApi
fullName: Sdl.FileTypeSupport.Framework.IntegrationApi
spec.csharp:
- uid: Sdl
name: Sdl
isExternal: true
- name: .
- uid: Sdl.FileTypeSupport
name: FileTypeSupport
isExternal: true
- name: .
- uid: Sdl.FileTypeSupport.Framework
name: Framework
isExternal: true
- name: .
- uid: Sdl.FileTypeSupport.Framework.IntegrationApi
name: IntegrationApi
isExternal: true
spec.vb:
- uid: Sdl
name: Sdl
isExternal: true
- name: .
- uid: Sdl.FileTypeSupport
name: FileTypeSupport
isExternal: true
- name: .
- uid: Sdl.FileTypeSupport.Framework
name: Framework
isExternal: true
- name: .
- uid: Sdl.FileTypeSupport.Framework.IntegrationApi
name: IntegrationApi
isExternal: true
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_OnFileComplete_Sdl_ProjectAutomation_Core_ProjectFile_Sdl_FileTypeSupport_Framework_IntegrationApi_IMultiFileConverter_
name: OnFileComplete
nameWithType: AbstractFileContentProcessingAutomaticTask.OnFileComplete
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.OnFileComplete
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_CreateReport_System_String_System_String_System_String_System_String_
name: CreateReport
nameWithType: AbstractFileContentProcessingAutomaticTask.CreateReport
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.CreateReport
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection
commentId: T:Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection
parent: Sdl.ProjectAutomation.AutomaticTasks
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection.html
name: LanguageDirection
nameWithType: LanguageDirection
fullName: Sdl.ProjectAutomation.AutomaticTasks.LanguageDirection
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_GetWordCounter_Sdl_ProjectAutomation_Core_ProjectFile_
name: GetWordCounter
nameWithType: AbstractFileContentProcessingAutomaticTask.GetWordCounter
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.GetWordCounter
- uid: Sdl.ProjectAutomation.AutomaticTasks.WordCounter
commentId: T:Sdl.ProjectAutomation.AutomaticTasks.WordCounter
parent: Sdl.ProjectAutomation.AutomaticTasks
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.WordCounter.html
name: WordCounter
nameWithType: WordCounter
fullName: Sdl.ProjectAutomation.AutomaticTasks.WordCounter
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.#ctor*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.#ctor
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask__ctor
name: AbstractFileContentProcessingAutomaticTask
nameWithType: AbstractFileContentProcessingAutomaticTask.AbstractFileContentProcessingAutomaticTask
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.AbstractFileContentProcessingAutomaticTask
nameWithType.vb: AbstractFileContentProcessingAutomaticTask.New
fullName.vb: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.New
name.vb: New
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_Project
name: Project
nameWithType: AbstractFileContentProcessingAutomaticTask.Project
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.Project
- uid: Sdl.ProjectAutomation.Core.IProject
commentId: T:Sdl.ProjectAutomation.Core.IProject
parent: Sdl.ProjectAutomation.Core
isExternal: true
name: IProject
nameWithType: IProject
fullName: Sdl.ProjectAutomation.Core.IProject
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_TaskFiles
name: TaskFiles
nameWithType: AbstractFileContentProcessingAutomaticTask.TaskFiles
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskFiles
- uid: Sdl.ProjectAutomation.Core.ProjectFile[]
isExternal: true
name: ProjectFile[]
nameWithType: ProjectFile[]
fullName: Sdl.ProjectAutomation.Core.ProjectFile[]
nameWithType.vb: ProjectFile()
fullName.vb: Sdl.ProjectAutomation.Core.ProjectFile()
name.vb: ProjectFile()
spec.csharp:
- uid: Sdl.ProjectAutomation.Core.ProjectFile
name: ProjectFile
isExternal: true
- name: '['
- name: ']'
spec.vb:
- uid: Sdl.ProjectAutomation.Core.ProjectFile
name: ProjectFile
isExternal: true
- name: (
- name: )
- uid: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId*
commentId: Overload:Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId
isExternal: true
href: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.html#Sdl_ProjectAutomation_AutomaticTasks_AbstractFileContentProcessingAutomaticTask_TaskId
name: TaskId
nameWithType: AbstractFileContentProcessingAutomaticTask.TaskId
fullName: Sdl.ProjectAutomation.AutomaticTasks.AbstractFileContentProcessingAutomaticTask.TaskId