forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNativeActivityUpdateContext.xml
2866 lines (2858 loc) · 219 KB
/
NativeActivityUpdateContext.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
<Type Name="NativeActivityUpdateContext" FullName="System.Activities.DynamicUpdate.NativeActivityUpdateContext">
<TypeSignature Language="C#" Value="public class NativeActivityUpdateContext" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit NativeActivityUpdateContext extends System.Object" />
<TypeSignature Language="DocId" Value="T:System.Activities.DynamicUpdate.NativeActivityUpdateContext" />
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Represents a native activity update context.</summary>
<remarks>
<format type="text/markdown"><] workflow versioning, workflow identity, and dynamic update, see the following topics.
[Workflow Versioning](http://go.microsoft.com/fwlink/?LinkID=271561)
Describes the workflow versioning functionality introduced in [!INCLUDE[net_v45](~/includes/net-v45-md.md)].
[Dynamic Update](http://go.microsoft.com/fwlink/?LinkId=271563)
Describes how to update the workflow definition of a persisted workflow instance by using dynamic update.
[Using WorkflowApplication Identity and Versioning](http://go.microsoft.com/fwlink/?LinkId=271564)
Describes how to use <xref:System.Activities.WorkflowIdentity> to host multiple versions of a workflow side-by-side.
[Side by Side Versioning in WorkflowServiceHost](http://go.microsoft.com/fwlink/?LinkId=271565)
Describes how to host multiple versions of a workflow on a single endpoint.
[How to: Host Multiple Versions of a Workflow Side-by-Side](http://go.microsoft.com/fwlink/?LinkId=271566)
This step in the [Getting Started Tutorial](http://go.microsoft.com/fwlink/?LinkId=271570) demonstrates updating a workflow definition, and hosting workflows using both the old and new definition at the same time.
[How to: Update the Definition of a Running Workflow Instance](http://go.microsoft.com/fwlink/?LinkId=271567)
This step in the [Getting Started Tutorial](http://go.microsoft.com/fwlink/?LinkId=271570) demonstrates updating persisted workflow instances to use a new workflow definition.
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName="ActivityInstanceId">
<MemberSignature Language="C#" Value="public string ActivityInstanceId { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string ActivityInstanceId" />
<MemberSignature Language="DocId" Value="P:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ActivityInstanceId" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the unique identifier of the currently executing activity instance.</summary>
<value>The unique identifier of the currently executing activity instance.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Creates a point at which a NativeActivity can passively wait to be resumed.</summary>
<returns>A bookmark.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (System.Activities.BookmarkCallback callback);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(class System.Activities.BookmarkCallback callback) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.Activities.BookmarkCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.Activities.BookmarkCallback" />
</Parameters>
<Docs>
<param name="callback">The method to be called when a notification signals resumption of the NativeActivity.</param>
<summary>Creates the point at which a NativeActivity can passively wait to be resumed and schedules the specified method to execute when notification of the resume operation completes.</summary>
<returns>The callback method</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (string name);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(string name) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<summary>Creates the point, with the specified name, at which NativeActivity can passively wait to be resumed.</summary>
<returns>A bookmark that includes the name of the bookmark.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (System.Activities.BookmarkCallback callback, System.Activities.BookmarkOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(class System.Activities.BookmarkCallback callback, valuetype System.Activities.BookmarkOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.Activities.BookmarkCallback,System.Activities.BookmarkOptions)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.Activities.BookmarkCallback" />
<Parameter Name="options" Type="System.Activities.BookmarkOptions" />
</Parameters>
<Docs>
<param name="callback">The method to be called when a notification signals resumption of the NativeActivity.</param>
<param name="options">An enumerated setting that governs how the bookmark operates in relation to other threads during the execution of the current NativeActivity.</param>
<summary>Creates the point at which a NativeActivity can passively wait to be resumed, with the specified method to execute when notification of the resume operation completes and with the specified option that governs how the bookmark is used during the execution of the current NativeActivity.</summary>
<returns>A bookmark that includes the callback method and the bookmark execution option.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(string name, class System.Activities.BookmarkCallback callback) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.String,System.Activities.BookmarkCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="callback" Type="System.Activities.BookmarkCallback" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<param name="callback">The method to be called when a notification signals resumption of the NativeActivity.</param>
<summary>Creates the point at which a NativeActivity can passively wait to be resumed with the specified name and with the specified method to execute when notification of the resume operation completes.</summary>
<returns>A bookmark that includes the name of the bookmark and the callback method.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback, System.Activities.BookmarkOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(string name, class System.Activities.BookmarkCallback callback, valuetype System.Activities.BookmarkOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.String,System.Activities.BookmarkCallback,System.Activities.BookmarkOptions)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="callback" Type="System.Activities.BookmarkCallback" />
<Parameter Name="options" Type="System.Activities.BookmarkOptions" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<param name="callback">The method to be called when a notification signals resumption of the NativeActivity.</param>
<param name="options">The bookmark options that govern how the bookmark is used during the execution of the current NativeActivity.</param>
<summary>Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.</summary>
<returns>A bookmark that includes the name of the bookmark, the callback method, and the bookmark execution option.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback, System.Activities.BookmarkScope scope);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(string name, class System.Activities.BookmarkCallback callback, class System.Activities.BookmarkScope scope) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.String,System.Activities.BookmarkCallback,System.Activities.BookmarkScope)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="callback" Type="System.Activities.BookmarkCallback" />
<Parameter Name="scope" Type="System.Activities.BookmarkScope" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<param name="callback">The method to be called when a notification signals resumption of the NativeActivity.</param>
<param name="scope">An identifier applied to a group of bookmarks that operate under the same protocol during a workflow runtime.</param>
<summary>Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes and the specified scope of the bookmark.</summary>
<returns>A bookmark that includes the name of the bookmark, the callback method, and the scope of the bookmark.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateBookmark">
<MemberSignature Language="C#" Value="public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback, System.Activities.BookmarkScope scope, System.Activities.BookmarkOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Bookmark CreateBookmark(string name, class System.Activities.BookmarkCallback callback, class System.Activities.BookmarkScope scope, valuetype System.Activities.BookmarkOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.CreateBookmark(System.String,System.Activities.BookmarkCallback,System.Activities.BookmarkScope,System.Activities.BookmarkOptions)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Bookmark</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="callback" Type="System.Activities.BookmarkCallback" />
<Parameter Name="scope" Type="System.Activities.BookmarkScope" />
<Parameter Name="options" Type="System.Activities.BookmarkOptions" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<param name="callback">The method to be called when a notification signals resumption of the NativeActivity.</param>
<param name="scope">An identifier applied to a group of bookmarks that operate under the same protocol during a workflow runtime.</param>
<param name="options">The bookmark options that govern how the bookmark is used during the execution of the current NativeActivity.</param>
<summary>Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes and the specified scope of the bookmark and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.</summary>
<returns>A bookmark that includes the name of the bookmark, the callback method, the scope of the bookmark and the bookmark execution option.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DefaultBookmarkScope">
<MemberSignature Language="C#" Value="public System.Activities.BookmarkScope DefaultBookmarkScope { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Activities.BookmarkScope DefaultBookmarkScope" />
<MemberSignature Language="DocId" Value="P:System.Activities.DynamicUpdate.NativeActivityUpdateContext.DefaultBookmarkScope" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.BookmarkScope</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the bookmark scope associated with the root of the workflow.</summary>
<value>The bookmark scope associated with the root of the workflow.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DisallowUpdate">
<MemberSignature Language="C#" Value="public void DisallowUpdate (string reason);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void DisallowUpdate(string reason) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.DisallowUpdate(System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="reason" Type="System.String" />
</Parameters>
<Docs>
<param name="reason">The reason of disallowing the context.</param>
<summary>Disallows the updating of the <see cref="T:System.Activities.DynamicUpdate.NativeActivityUpdateContext" />.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FindExecutionProperty">
<MemberSignature Language="C#" Value="public object FindExecutionProperty (string name);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance object FindExecutionProperty(string name) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.FindExecutionProperty(System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">The name of the workflow execution property.</param>
<summary>Finds the workflow execution property with the specified name.</summary>
<returns>The workflow execution property with the specified name.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetLocation<T>">
<MemberSignature Language="C#" Value="public System.Activities.Location<T> GetLocation<T> (System.Activities.Variable variable);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Activities.Location`1<!!T> GetLocation<T>(class System.Activities.Variable variable) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetLocation``1(System.Activities.Variable)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Activities.Location<T></ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="variable" Type="System.Activities.Variable" />
</Parameters>
<Docs>
<typeparam name="T">The type of the location to return.</typeparam>
<param name="variable">The variable from the location.</param>
<summary>Returns the typed location for the specified referenced location.</summary>
<returns>The typed location for the specified referenced location.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetSavedOriginalValue">
<MemberSignature Language="C#" Value="public object GetSavedOriginalValue (System.Activities.Activity childActivity);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance object GetSavedOriginalValue(class System.Activities.Activity childActivity) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetSavedOriginalValue(System.Activities.Activity)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="childActivity" Type="System.Activities.Activity" />
</Parameters>
<Docs>
<param name="childActivity">The child activity.</param>
<summary>Indicates the object to save the original value for the current activity.</summary>
<returns>The object to save the original value for the current activity.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetSavedOriginalValue">
<MemberSignature Language="C#" Value="public object GetSavedOriginalValue (string propertyName);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance object GetSavedOriginalValue(string propertyName) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetSavedOriginalValue(System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="propertyName" Type="System.String" />
</Parameters>
<Docs>
<param name="propertyName">The name of the property.</param>
<summary>Indicates the object to save the original value for the current activity.</summary>
<returns>The object to save the original value for the current activity.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetValue">
<MemberSignature Language="C#" Value="public object GetValue (System.Activities.Argument argument);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance object GetValue(class System.Activities.Argument argument) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetValue(System.Activities.Argument)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="argument" Type="System.Activities.Argument" />
</Parameters>
<Docs>
<param name="argument">The argument to inspect.</param>
<summary>Gets the value of the specified Argument.</summary>
<returns>The value of the specified Argument.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetValue">
<MemberSignature Language="C#" Value="public object GetValue (System.Activities.RuntimeArgument runtimeArgument);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance object GetValue(class System.Activities.RuntimeArgument runtimeArgument) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetValue(System.Activities.RuntimeArgument)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="runtimeArgument" Type="System.Activities.RuntimeArgument" />
</Parameters>
<Docs>
<param name="runtimeArgument">The argument to inspect.</param>
<summary>Gets the value of the specified RuntimeArgument.</summary>
<returns>the value of the specified RuntimeArgument.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetValue">
<MemberSignature Language="C#" Value="public object GetValue (System.Activities.Variable variable);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance object GetValue(class System.Activities.Variable variable) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetValue(System.Activities.Variable)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="variable" Type="System.Activities.Variable" />
</Parameters>
<Docs>
<param name="variable">The variable whose value is being retrieved during execution of the current NativeActivity instance.</param>
<summary>Gets the value of the specified variable in the current NativeActivity instance.</summary>
<returns>The value of the specified variable in the current NativeActivity instance.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetValue<T>">
<MemberSignature Language="C#" Value="public T GetValue<T> (System.Activities.Variable<T> variable);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance !!T GetValue<T>(class System.Activities.Variable`1<!!T> variable) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.GetValue``1(System.Activities.Variable{``0})" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>T</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="variable" Type="System.Activities.Variable<T>" />
</Parameters>
<Docs>
<typeparam name="T">The type of the variable whose value is being retrieved.</typeparam>
<param name="variable">The generic variable whose value is being retrieved during execution of the current NativeActivity instance.</param>
<summary>Returns the value of the specified generic variable in the current NativeActivity instance.</summary>
<returns>The value of the specified generic variable in the current NativeActivity instance.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsCancellationRequested">
<MemberSignature Language="C#" Value="public bool IsCancellationRequested { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsCancellationRequested" />
<MemberSignature Language="DocId" Value="P:System.Activities.DynamicUpdate.NativeActivityUpdateContext.IsCancellationRequested" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value that indicates whether the currently executing NativeActivity instance is to be canceled.</summary>
<value>
<see langword="True" /> if the currently executing NativeActivity instance is to be canceled; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsNewlyAdded">
<MemberSignature Language="C#" Value="public bool IsNewlyAdded (System.Activities.Activity childActivity);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool IsNewlyAdded(class System.Activities.Activity childActivity) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.IsNewlyAdded(System.Activities.Activity)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="childActivity" Type="System.Activities.Activity" />
</Parameters>
<Docs>
<param name="childActivity">The child activity.</param>
<summary>Initializes whether the <see cref="T:System.Activities.DynamicUpdate.NativeActivityUpdateContext" /> is newly added.</summary>
<returns>
<see langword="True" /> if the <see cref="T:System.Activities.DynamicUpdate.NativeActivityUpdateContext" /> is newly added; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RemoveAllBookmarks">
<MemberSignature Language="C#" Value="public void RemoveAllBookmarks ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void RemoveAllBookmarks() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.RemoveAllBookmarks" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Removes all the bookmarks associated with the currently executing NativeActivity instance.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RemoveBookmark">
<MemberSignature Language="C#" Value="public bool RemoveBookmark (System.Activities.Bookmark bookmark);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool RemoveBookmark(class System.Activities.Bookmark bookmark) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.RemoveBookmark(System.Activities.Bookmark)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="bookmark" Type="System.Activities.Bookmark" />
</Parameters>
<Docs>
<param name="bookmark">A point at which a NativeActivity instance can passively wait to be resumed.</param>
<summary>Removes the specified bookmark from the currently executing NativeActivity instance.</summary>
<returns>
<see langword="True" /> if the specified bookmark from the currently executing NativeActivity instance was removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RemoveBookmark">
<MemberSignature Language="C#" Value="public bool RemoveBookmark (string name);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool RemoveBookmark(string name) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.RemoveBookmark(System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<summary>Removes the bookmark with the specified name.</summary>
<returns>
<see langword="True" /> if the bookmark with the specified name was removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RemoveBookmark">
<MemberSignature Language="C#" Value="public bool RemoveBookmark (string name, System.Activities.BookmarkScope scope);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance bool RemoveBookmark(string name, class System.Activities.BookmarkScope scope) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.RemoveBookmark(System.String,System.Activities.BookmarkScope)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="name" Type="System.String" />
<Parameter Name="scope" Type="System.Activities.BookmarkScope" />
</Parameters>
<Docs>
<param name="name">The name of the bookmark.</param>
<param name="scope">The unique GUID identifier for a group of Bookmark objects that are categorized as operating under the same protocol.</param>
<summary>Removes the bookmark with the specified name and the specified bookmark scope.</summary>
<returns>
<see langword="True" /> if the bookmark with the specified name and the specified bookmark scope were removed; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction">
<MemberSignature Language="C#" Value="public void ScheduleAction (System.Activities.ActivityAction activityAction, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction(class System.Activities.ActivityAction activityAction, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction(System.Activities.ActivityAction,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction.</param>
<summary>Schedules for execution a specified ActivityAction that has no parameters, and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T> (System.Activities.ActivityAction<T> activityAction, T argument, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T>(class System.Activities.ActivityAction`1<!!T> activityAction, !!T argument, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``1(System.Activities.ActivityAction{``0},``0,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T>" />
<Parameter Name="argument" Type="T" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T>.</param>
<summary>Schedules for execution a specified ActivityAction<T> that has one parameter for an in argument and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2> (System.Activities.ActivityAction<T1,T2> activityAction, T1 argument1, T2 argument2, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2>(class System.Activities.ActivityAction`2<!!T1, !!T2> activityAction, !!T1 argument1, !!T2 argument2, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``2(System.Activities.ActivityAction{``0,``1},``0,``1,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2> that has two parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3> (System.Activities.ActivityAction<T1,T2,T3> activityAction, T1 argument1, T2 argument2, T3 argument3, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3>(class System.Activities.ActivityAction`3<!!T1, !!T2, !!T3> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``3(System.Activities.ActivityAction{``0,``1,``2},``0,``1,``2,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
<TypeParameter Name="T3" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2,T3>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="argument3" Type="T3" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<typeparam name="T3">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="argument3">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2, T3>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2, T3>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2, T3> that has three parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2, T3>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3,T4>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3,T4> (System.Activities.ActivityAction<T1,T2,T3,T4> activityAction, T1 argument1, T2 argument2, T3 argument3, T4 argument4, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3, T4>(class System.Activities.ActivityAction`4<!!T1, !!T2, !!T3, !!T4> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, !!T4 argument4, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``4(System.Activities.ActivityAction{``0,``1,``2,``3},``0,``1,``2,``3,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
<TypeParameter Name="T3" />
<TypeParameter Name="T4" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2,T3,T4>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="argument3" Type="T3" />
<Parameter Name="argument4" Type="T4" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<typeparam name="T3">The data that is carried into an activity.</typeparam>
<typeparam name="T4">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="argument3">An argument that carries data into an activity.</param>
<param name="argument4">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2, T3, T4>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2, T3, T4>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2, T3, T4> that has four parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2, T3, T4>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3,T4,T5>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3,T4,T5> (System.Activities.ActivityAction<T1,T2,T3,T4,T5> activityAction, T1 argument1, T2 argument2, T3 argument3, T4 argument4, T5 argument5, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3, T4, T5>(class System.Activities.ActivityAction`5<!!T1, !!T2, !!T3, !!T4, !!T5> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, !!T4 argument4, !!T5 argument5, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``5(System.Activities.ActivityAction{``0,``1,``2,``3,``4},``0,``1,``2,``3,``4,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
<TypeParameter Name="T3" />
<TypeParameter Name="T4" />
<TypeParameter Name="T5" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2,T3,T4,T5>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="argument3" Type="T3" />
<Parameter Name="argument4" Type="T4" />
<Parameter Name="argument5" Type="T5" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<typeparam name="T3">The data that is carried into an activity.</typeparam>
<typeparam name="T4">The data that is carried into an activity.</typeparam>
<typeparam name="T5">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="argument3">An argument that carries data into an activity.</param>
<param name="argument4">An argument that carries data into an activity.</param>
<param name="argument5">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2, T3, T4, T5>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2, T3, T4, T5> that has five parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3,T4,T5,T6>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3,T4,T5,T6> (System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6> activityAction, T1 argument1, T2 argument2, T3 argument3, T4 argument4, T5 argument5, T6 argument6, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3, T4, T5, T6>(class System.Activities.ActivityAction`6<!!T1, !!T2, !!T3, !!T4, !!T5, !!T6> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, !!T4 argument4, !!T5 argument5, !!T6 argument6, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``6(System.Activities.ActivityAction{``0,``1,``2,``3,``4,``5},``0,``1,``2,``3,``4,``5,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
<TypeParameter Name="T3" />
<TypeParameter Name="T4" />
<TypeParameter Name="T5" />
<TypeParameter Name="T6" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="argument3" Type="T3" />
<Parameter Name="argument4" Type="T4" />
<Parameter Name="argument5" Type="T5" />
<Parameter Name="argument6" Type="T6" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<typeparam name="T3">The data that is carried into an activity.</typeparam>
<typeparam name="T4">The data that is carried into an activity.</typeparam>
<typeparam name="T5">The data that is carried into an activity.</typeparam>
<typeparam name="T6">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="argument3">An argument that carries data into an activity.</param>
<param name="argument4">An argument that carries data into an activity.</param>
<param name="argument5">An argument that carries data into an activity.</param>
<param name="argument6">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5, T6>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2, T3, T4, T5, T6>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2, T3, T4, T5, T6> that has six parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5, T6>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3,T4,T5,T6,T7>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3,T4,T5,T6,T7> (System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6,T7> activityAction, T1 argument1, T2 argument2, T3 argument3, T4 argument4, T5 argument5, T6 argument6, T7 argument7, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3, T4, T5, T6, T7>(class System.Activities.ActivityAction`7<!!T1, !!T2, !!T3, !!T4, !!T5, !!T6, !!T7> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, !!T4 argument4, !!T5 argument5, !!T6 argument6, !!T7 argument7, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``7(System.Activities.ActivityAction{``0,``1,``2,``3,``4,``5,``6},``0,``1,``2,``3,``4,``5,``6,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
<TypeParameter Name="T3" />
<TypeParameter Name="T4" />
<TypeParameter Name="T5" />
<TypeParameter Name="T6" />
<TypeParameter Name="T7" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6,T7>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="argument3" Type="T3" />
<Parameter Name="argument4" Type="T4" />
<Parameter Name="argument5" Type="T5" />
<Parameter Name="argument6" Type="T6" />
<Parameter Name="argument7" Type="T7" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<typeparam name="T3">The data that is carried into an activity.</typeparam>
<typeparam name="T4">The data that is carried into an activity.</typeparam>
<typeparam name="T5">The data that is carried into an activity.</typeparam>
<typeparam name="T6">The data that is carried into an activity.</typeparam>
<typeparam name="T7">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="argument3">An argument that carries data into an activity.</param>
<param name="argument4">An argument that carries data into an activity.</param>
<param name="argument5">An argument that carries data into an activity.</param>
<param name="argument6">An argument that carries data into an activity.</param>
<param name="argument7">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5, T6, T7>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2, T3, T4, T5, T6, T7>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2, T3, T4, T5, T6, T7> that has seven parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5, T6, T7>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8> (System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8> activityAction, T1 argument1, T2 argument2, T3 argument3, T4 argument4, T5 argument5, T6 argument6, T7 argument7, T8 argument8, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3, T4, T5, T6, T7, T8>(class System.Activities.ActivityAction`8<!!T1, !!T2, !!T3, !!T4, !!T5, !!T6, !!T7, !!T8> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, !!T4 argument4, !!T5 argument5, !!T6 argument6, !!T7 argument7, !!T8 argument8, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``8(System.Activities.ActivityAction{``0,``1,``2,``3,``4,``5,``6,``7},``0,``1,``2,``3,``4,``5,``6,``7,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T1" />
<TypeParameter Name="T2" />
<TypeParameter Name="T3" />
<TypeParameter Name="T4" />
<TypeParameter Name="T5" />
<TypeParameter Name="T6" />
<TypeParameter Name="T7" />
<TypeParameter Name="T8" />
</TypeParameters>
<Parameters>
<Parameter Name="activityAction" Type="System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8>" />
<Parameter Name="argument1" Type="T1" />
<Parameter Name="argument2" Type="T2" />
<Parameter Name="argument3" Type="T3" />
<Parameter Name="argument4" Type="T4" />
<Parameter Name="argument5" Type="T5" />
<Parameter Name="argument6" Type="T6" />
<Parameter Name="argument7" Type="T7" />
<Parameter Name="argument8" Type="T8" />
<Parameter Name="onCompleted" Type="System.Activities.CompletionCallback" />
<Parameter Name="onFaulted" Type="System.Activities.FaultCallback" />
</Parameters>
<Docs>
<typeparam name="T1">The data that is carried into an activity.</typeparam>
<typeparam name="T2">The data that is carried into an activity.</typeparam>
<typeparam name="T3">The data that is carried into an activity.</typeparam>
<typeparam name="T4">The data that is carried into an activity.</typeparam>
<typeparam name="T5">The data that is carried into an activity.</typeparam>
<typeparam name="T6">The data that is carried into an activity.</typeparam>
<typeparam name="T7">The data that is carried into an activity.</typeparam>
<typeparam name="T8">The data that is carried into an activity.</typeparam>
<param name="activityAction">An action that executes when a specific event occurs in the parent activity.</param>
<param name="argument1">An argument that carries data into an activity.</param>
<param name="argument2">An argument that carries data into an activity.</param>
<param name="argument3">An argument that carries data into an activity.</param>
<param name="argument4">An argument that carries data into an activity.</param>
<param name="argument5">An argument that carries data into an activity.</param>
<param name="argument6">An argument that carries data into an activity.</param>
<param name="argument7">An argument that carries data into an activity.</param>
<param name="argument8">An argument that carries data into an activity.</param>
<param name="onCompleted">A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5, T6, T7, T8>.</param>
<param name="onFaulted">A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityAction<T1, T2, T3, T4, T5, T6, T7, T8>.</param>
<summary>Schedules for execution a specified ActivityAction<T1, T2, T3, T4, T5, T6, T7, T8> that has eight parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1, T2, T3, T4, T5, T6, T7, T8>.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9>">
<MemberSignature Language="C#" Value="public void ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9> (System.Activities.ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9> activityAction, T1 argument1, T2 argument2, T3 argument3, T4 argument4, T5 argument5, T6 argument6, T7 argument7, T8 argument8, T9 argument9, System.Activities.CompletionCallback onCompleted = null, System.Activities.FaultCallback onFaulted = null);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ScheduleAction<T1, T2, T3, T4, T5, T6, T7, T8, T9>(class System.Activities.ActivityAction`9<!!T1, !!T2, !!T3, !!T4, !!T5, !!T6, !!T7, !!T8, !!T9> activityAction, !!T1 argument1, !!T2 argument2, !!T3 argument3, !!T4 argument4, !!T5 argument5, !!T6 argument6, !!T7 argument7, !!T8 argument8, !!T9 argument9, class System.Activities.CompletionCallback onCompleted, class System.Activities.FaultCallback onFaulted) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.DynamicUpdate.NativeActivityUpdateContext.ScheduleAction``9(System.Activities.ActivityAction{``0,``1,``2,``3,``4,``5,``6,``7,``8},``0,``1,``2,``3,``4,``5,``6,``7,``8,System.Activities.CompletionCallback,System.Activities.FaultCallback)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>